Skip to content

Instantly share code, notes, and snippets.

@johan
Forked from johan/README.md
Created November 6, 2011 21:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save johan/1343564 to your computer and use it in GitHub Desktop.
Save johan/1343564 to your computer and use it in GitHub Desktop.
California 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, USA</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">
#states path {
fill: none;
stroke: #fff;
stroke-width: 1.5px;
}
</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(1.9) translate(-100 -198)")
;
var zipcodes = svg.append("svg:g")
.attr("id", "ca-zipcodes");
var states = svg.append("svg:g")
.attr("id", "states");
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-ca.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;
return d.id + ": " + no + " responses";
});
});
}
d3.json("us-ca.json", function(json) {
states.selectAll("path")
.data(json.features)
.enter().append("svg:path")
.attr("d", path);
});
d3.select("select").on("change", function() {
d3.selectAll("svg").attr("class", this.value);
});
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
// 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":{},"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":{},"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":{},"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":{},"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":{},"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":{},"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":{},"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":95601,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-120.827983,38.438416],[-120.827199,38.438259],[-120.825631,38.438572],[-120.822964,38.438416],[-120.821396,38.438259],[-120.820612,38.437945],[-120.819514,38.438259],[-120.819514,38.437474],[-120.819200,38.435906],[-120.818102,38.434338],[-120.816220,38.432612],[-120.815436,38.430103],[-120.813868,38.426966],[-120.813868,38.426182],[-120.813711,38.425398],[-120.814024,38.424927],[-120.814652,38.424457],[-120.814652,38.422888],[-120.814965,38.422104],[-120.814965,38.421790],[-120.814338,38.421790],[-120.814181,38.421163],[-120.813240,38.420536],[-120.812456,38.419438],[-120.809319,38.418026],[-120.808378,38.416928],[-120.808378,38.415360],[-120.808692,38.413321],[-120.809006,38.412694],[-120.809162,38.410968],[-120.809319,38.411596],[-120.809633,38.412066],[-120.809476,38.412851],[-120.810260,38.413478],[-120.810260,38.414105],[-120.811515,38.414733],[-120.812456,38.414733],[-120.812927,38.414889],[-120.813083,38.415517],[-120.813240,38.415831],[-120.814024,38.415831],[-120.814809,38.415987],[-120.815436,38.415674],[-120.816063,38.415831],[-120.816534,38.416144],[-120.817318,38.416144],[-120.818416,38.416772],[-120.820925,38.414733],[-120.821239,38.414889],[-120.821710,38.414733],[-120.821396,38.414262],[-120.822023,38.413948],[-120.825474,38.414889],[-120.826258,38.415517],[-120.825631,38.415674],[-120.825474,38.415831],[-120.826728,38.418026],[-120.825160,38.418183],[-120.824219,38.418497],[-120.824533,38.419124],[-120.826415,38.419281],[-120.827983,38.419281],[-120.829081,38.419908],[-120.829708,38.420065],[-120.832061,38.419281],[-120.835512,38.418497],[-120.836766,38.418497],[-120.838335,38.418654],[-120.840217,38.419438],[-120.842413,38.421477],[-120.844765,38.422731],[-120.845392,38.423359],[-120.846490,38.424927],[-120.845706,38.424614],[-120.845236,38.424300],[-120.845079,38.424300],[-120.843510,38.423673],[-120.842883,38.423829],[-120.842726,38.423359],[-120.841315,38.422731],[-120.839119,38.422888],[-120.839276,38.423045],[-120.833002,38.425711],[-120.834257,38.426653],[-120.835198,38.427123],[-120.835825,38.427594],[-120.836296,38.434651],[-120.835982,38.434495],[-120.835512,38.434651],[-120.835041,38.434181],[-120.834884,38.434338],[-120.834884,38.435122],[-120.834570,38.435436],[-120.834100,38.435592],[-120.833629,38.435592],[-120.832688,38.435592],[-120.832845,38.436533],[-120.833002,38.436847],[-120.832532,38.437004],[-120.832688,38.437161],[-120.831120,38.437631],[-120.829708,38.437631],[-120.828924,38.438259],[-120.827983,38.438416]]]}}
,{"id":95669,"type":"Feature","properties":{},"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":95901,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-121.440445,39.352011],[-121.441386,39.352325],[-121.442641,39.352325],[-121.443896,39.352795],[-121.444837,39.353893],[-121.445464,39.354207],[-121.447660,39.354364],[-121.444209,39.361421],[-121.445621,39.363147],[-121.445934,39.363931],[-121.446562,39.364245],[-121.446562,39.364558],[-121.447346,39.365029],[-121.447346,39.365342],[-121.447503,39.365656],[-121.447503,39.366440],[-121.447973,39.366754],[-121.448444,39.368479],[-121.449542,39.369420],[-121.447346,39.370204],[-121.444209,39.370361],[-121.443425,39.370832],[-121.442013,39.370832],[-121.441229,39.371459],[-121.439975,39.371616],[-121.439661,39.371930],[-121.438563,39.372087],[-121.437151,39.372557],[-121.436838,39.372871],[-121.435897,39.373028],[-121.435112,39.373812],[-121.433701,39.374282],[-121.434171,39.374910],[-121.436524,39.382281],[-121.436524,39.382752],[-121.434956,39.382595],[-121.434171,39.383693],[-121.433544,39.383850],[-121.432917,39.384320],[-121.431662,39.384634],[-121.430564,39.385889],[-121.430250,39.386045],[-121.429466,39.385575],[-121.428682,39.385575],[-121.428368,39.385575],[-121.427898,39.386202],[-121.426486,39.386516],[-121.425545,39.387143],[-121.425075,39.387614],[-121.423349,39.388241],[-121.422252,39.389025],[-121.421467,39.390123],[-121.420840,39.390437],[-121.420369,39.390437],[-121.419115,39.389653],[-121.417389,39.389496],[-121.416135,39.388868],[-121.415664,39.388712],[-121.412684,39.389339],[-121.411273,39.389339],[-121.408763,39.390751],[-121.410018,39.392319],[-121.410018,39.392789],[-121.410645,39.393103],[-121.413155,39.396083],[-121.414880,39.399690],[-121.414410,39.399847],[-121.413155,39.397024],[-121.409234,39.392005],[-121.408450,39.391221],[-121.404999,39.389025],[-121.405313,39.388712],[-121.407979,39.386045],[-121.412998,39.378517],[-121.414096,39.372871],[-121.414410,39.372243],[-121.415037,39.371459],[-121.415351,39.370989],[-121.415351,39.370361],[-121.415037,39.369420],[-121.415037,39.368950],[-121.415664,39.367695],[-121.416135,39.366440],[-121.416605,39.365656],[-121.418801,39.363931],[-121.424134,39.362049],[-121.426486,39.360794],[-121.429466,39.359696],[-121.430094,39.359539],[-121.430721,39.359539],[-121.432917,39.360480],[-121.434015,39.360167],[-121.437936,39.355305],[-121.439190,39.353266],[-121.440445,39.352011]]],[[[-121.440445,39.352011],[-121.438720,39.350129],[-121.438092,39.349972],[-121.434956,39.350913],[-121.432917,39.348717],[-121.432289,39.348404],[-121.431191,39.347306],[-121.431035,39.346522],[-121.430094,39.344639],[-121.428996,39.343228],[-121.428839,39.342444],[-121.428211,39.341816],[-121.428055,39.341346],[-121.428055,39.340875],[-121.427584,39.339150],[-121.426643,39.338366],[-121.426016,39.337268],[-121.425545,39.335072],[-121.423663,39.336170],[-121.422252,39.336641],[-121.420840,39.338052],[-121.419272,39.338993],[-121.417233,39.339307],[-121.415664,39.340091],[-121.414096,39.340248],[-121.411273,39.339621],[-121.410645,39.339934],[-121.407509,39.339777],[-121.407195,39.339934],[-121.407038,39.340248],[-121.405940,39.340562],[-121.405783,39.341503],[-121.406097,39.342130],[-121.407038,39.343071],[-121.407195,39.343542],[-121.407038,39.344483],[-121.406724,39.344639],[-121.406097,39.344796],[-121.404529,39.344639],[-121.404058,39.344796],[-121.403274,39.345424],[-121.402646,39.346365],[-121.402646,39.347463],[-121.403431,39.348560],[-121.403431,39.349031],[-121.403274,39.349502],[-121.402490,39.349972],[-121.401549,39.349815],[-121.400451,39.349972],[-121.399667,39.350286],[-121.396216,39.352011],[-121.395118,39.352638],[-121.393393,39.353266],[-121.392609,39.354207],[-121.391354,39.355148],[-121.390570,39.355305],[-121.389942,39.354991],[-121.389315,39.355148],[-121.387903,39.355932],[-121.386962,39.357030],[-121.386335,39.358285],[-121.386178,39.359069],[-121.384453,39.360637],[-121.382728,39.361735],[-121.382885,39.362519],[-121.382257,39.362990],[-121.381316,39.362990],[-121.379748,39.362519],[-121.378023,39.362990],[-121.377238,39.363147],[-121.376611,39.363617],[-121.376611,39.363931],[-121.375670,39.364401],[-121.373945,39.364401],[-121.372847,39.364558],[-121.372376,39.364872],[-121.372376,39.365342],[-121.372847,39.366127],[-121.373004,39.366911],[-121.372690,39.367224],[-121.372063,39.367695],[-121.371592,39.366597],[-121.371278,39.366754],[-121.370808,39.367538],[-121.369239,39.367695],[-121.368769,39.368009],[-121.369083,39.369420],[-121.368455,39.369734],[-121.363750,39.365499],[-121.359359,39.363617],[-121.357633,39.364088],[-121.356379,39.364872],[-121.355908,39.365656],[-121.355908,39.366283],[-121.354183,39.365813],[-121.351987,39.365499],[-121.351360,39.365186],[-121.350262,39.364715],[-121.347439,39.363460],[-121.346811,39.362676],[-121.344929,39.361421],[-121.343988,39.360324],[-121.343988,39.359226],[-121.343831,39.358441],[-121.343674,39.358128],[-121.342106,39.357187],[-121.341165,39.355775],[-121.339440,39.354677],[-121.339283,39.354520],[-121.339126,39.353893],[-121.337087,39.352795],[-121.336617,39.352325],[-121.336303,39.351697],[-121.335676,39.351227],[-121.334578,39.349658],[-121.334107,39.349502],[-121.334107,39.350286],[-121.333637,39.351227],[-121.333323,39.351384],[-121.332068,39.351854],[-121.332853,39.352638],[-121.327990,39.351227],[-121.329716,39.349815],[-121.330500,39.348404],[-121.332696,39.345267],[-121.336303,39.342444],[-121.337087,39.341660],[-121.340067,39.331622],[-121.341792,39.328642],[-121.343361,39.329112],[-121.346341,39.329583],[-121.349007,39.330210],[-121.351046,39.330994],[-121.352144,39.330681],[-121.354653,39.330838],[-121.358104,39.330524],[-121.358104,39.327230],[-121.357320,39.324721],[-121.357633,39.324564],[-121.359045,39.320957],[-121.358888,39.317036],[-121.358574,39.316565],[-121.360927,39.316251],[-121.364377,39.316251],[-121.366573,39.315624],[-121.367828,39.314683],[-121.368612,39.313899],[-121.369083,39.312958],[-121.369710,39.310919],[-121.369867,39.311076],[-121.370337,39.312330],[-121.370651,39.312174],[-121.370965,39.311076],[-121.370808,39.310605],[-121.370337,39.310291],[-121.369867,39.310135],[-121.372376,39.301508],[-121.376925,39.300567],[-121.382885,39.301038],[-121.390883,39.297431],[-121.392766,39.296803],[-121.391825,39.296176],[-121.387903,39.295862],[-121.388217,39.294137],[-121.388217,39.293823],[-121.388060,39.293353],[-121.387433,39.293196],[-121.385865,39.292882],[-121.384453,39.292098],[-121.390256,39.285824],[-121.391040,39.284726],[-121.391825,39.283158],[-121.392138,39.283001],[-121.392766,39.282374],[-121.394648,39.281119],[-121.395902,39.280021],[-121.396373,39.279080],[-121.397000,39.277041],[-121.396687,39.276571],[-121.398725,39.275630],[-121.401549,39.275159],[-121.406724,39.271866],[-121.408293,39.270768],[-121.409391,39.269513],[-121.412998,39.266690],[-121.414566,39.264965],[-121.417076,39.262926],[-121.418174,39.261357],[-121.419585,39.260573],[-121.422722,39.259005],[-121.424290,39.257750],[-121.424918,39.256181],[-121.426016,39.255397],[-121.426643,39.255084],[-121.427427,39.254927],[-121.428996,39.255554],[-121.429309,39.255554],[-121.429937,39.254299],[-121.431191,39.253672],[-121.432289,39.252260],[-121.434328,39.251319],[-121.436367,39.249908],[-121.438720,39.248496],[-121.445621,39.242693],[-121.446875,39.240968],[-121.454404,39.234694],[-121.454561,39.234224],[-121.455031,39.232655],[-121.452365,39.224500],[-121.450953,39.221677],[-121.450797,39.221206],[-121.448130,39.221206],[-121.445307,39.221677],[-121.431976,39.225284],[-121.416448,39.227323],[-121.414096,39.227793],[-121.407352,39.229989],[-121.406724,39.229675],[-121.405940,39.228734],[-121.405156,39.228578],[-121.405156,39.228421],[-121.405470,39.228107],[-121.405940,39.228107],[-121.406568,39.227323],[-121.407038,39.225284],[-121.406881,39.224186],[-121.407822,39.221990],[-121.408450,39.221049],[-121.407509,39.220892],[-121.408293,39.220422],[-121.407979,39.220422],[-121.407509,39.220579],[-121.406881,39.221206],[-121.403274,39.221520],[-121.403274,39.221677],[-121.401705,39.221677],[-121.400921,39.221833],[-121.400764,39.221677],[-121.399823,39.221990],[-121.398882,39.222304],[-121.397471,39.223716],[-121.396843,39.224186],[-121.395432,39.224500],[-121.394334,39.224500],[-121.393550,39.224029],[-121.392609,39.222931],[-121.391511,39.222147],[-121.390570,39.221833],[-121.389629,39.221363],[-121.388688,39.221049],[-121.388060,39.221206],[-121.385551,39.220579],[-121.384924,39.220579],[-121.383982,39.220579],[-121.383041,39.220892],[-121.379748,39.220579],[-121.378650,39.221049],[-121.373945,39.219951],[-121.370965,39.219638],[-121.369239,39.218697],[-121.375670,39.220265],[-121.372847,39.219324],[-121.371906,39.218540],[-121.370494,39.218069],[-121.363750,39.217599],[-121.362966,39.217285],[-121.362652,39.217128],[-121.362495,39.214932],[-121.360927,39.214619],[-121.360613,39.214462],[-121.360613,39.213678],[-121.360456,39.213521],[-121.360456,39.212580],[-121.359829,39.211482],[-121.359672,39.210541],[-121.358417,39.209129],[-121.358417,39.208973],[-121.356849,39.208973],[-121.355751,39.208188],[-121.354653,39.208031],[-121.351673,39.211011],[-121.351673,39.211639],[-121.352144,39.212423],[-121.352144,39.215560],[-121.350889,39.215403],[-121.350105,39.214932],[-121.349478,39.214776],[-121.346811,39.214619],[-121.346341,39.213991],[-121.345243,39.213207],[-121.345086,39.212737],[-121.343988,39.212266],[-121.343361,39.212423],[-121.342890,39.212109],[-121.344929,39.210227],[-121.346498,39.209129],[-121.346811,39.208659],[-121.348380,39.208188],[-121.349007,39.207404],[-121.349164,39.206620],[-121.349321,39.206306],[-121.351517,39.206306],[-121.351987,39.206149],[-121.351673,39.204110],[-121.349948,39.202072],[-121.349634,39.201287],[-121.348537,39.200346],[-121.348380,39.199092],[-121.347596,39.196425],[-121.347909,39.195641],[-121.348066,39.195484],[-121.347596,39.192818],[-121.349164,39.191720],[-121.350105,39.191250],[-121.350105,39.190465],[-121.349948,39.188583],[-121.349634,39.188113],[-121.348380,39.188270],[-121.347909,39.188113],[-121.346654,39.188426],[-121.346027,39.188113],[-121.345557,39.187642],[-121.345243,39.186387],[-121.344459,39.185917],[-121.341792,39.185446],[-121.339753,39.185917],[-121.339440,39.186544],[-121.338812,39.186701],[-121.337087,39.186544],[-121.336460,39.186701],[-121.335048,39.187329],[-121.333637,39.187172],[-121.332068,39.187485],[-121.331911,39.186544],[-121.332225,39.184819],[-121.332225,39.184192],[-121.331441,39.183094],[-121.331441,39.182623],[-121.331284,39.182466],[-121.330657,39.182310],[-121.330186,39.181525],[-121.329716,39.181212],[-121.329245,39.180428],[-121.328931,39.179173],[-121.328304,39.178232],[-121.328618,39.177761],[-121.328461,39.177448],[-121.327049,39.174154],[-121.326108,39.173840],[-121.325795,39.173527],[-121.325010,39.171801],[-121.323285,39.170076],[-121.321246,39.167567],[-121.321246,39.166626],[-121.320462,39.165528],[-121.320776,39.164273],[-121.320619,39.163175],[-121.319835,39.162548],[-121.319521,39.162548],[-121.321717,39.158940],[-121.321874,39.153137],[-121.365789,39.152980],[-121.376768,39.153294],[-121.376768,39.159254],[-121.395589,39.159254],[-121.395589,39.173683],[-121.411586,39.173683],[-121.415821,39.172115],[-121.419742,39.171174],[-121.433701,39.170547],[-121.443896,39.167723],[-121.451738,39.165371],[-121.453306,39.164430],[-121.456443,39.162077],[-121.457697,39.161293],[-121.467578,39.157843],[-121.467735,39.143884],[-121.477146,39.143727],[-121.477303,39.128984],[-121.445464,39.129298],[-121.437779,39.129611],[-121.437622,39.127259],[-121.437779,39.112202],[-121.437151,39.100753],[-121.431976,39.100753],[-121.431976,39.093852],[-121.432446,39.093695],[-121.431976,39.093067],[-121.432289,39.091813],[-121.432289,39.089146],[-121.434485,39.088990],[-121.434485,39.071737],[-121.452208,39.071580],[-121.452208,39.076129],[-121.459893,39.078638],[-121.459580,39.077697],[-121.459580,39.076913],[-121.460207,39.076129],[-121.460364,39.075501],[-121.460677,39.074874],[-121.461305,39.074560],[-121.461462,39.074403],[-121.462716,39.074090],[-121.463344,39.074247],[-121.463657,39.075501],[-121.463657,39.076129],[-121.463030,39.077070],[-121.463030,39.077697],[-121.462716,39.078168],[-121.462560,39.078481],[-121.461932,39.078638],[-121.462089,39.083343],[-121.468833,39.083186],[-121.468833,39.082245],[-121.473382,39.082402],[-121.476675,39.085539],[-121.484674,39.085382],[-121.484517,39.076286],[-121.484831,39.070953],[-121.477303,39.071110],[-121.477146,39.063738],[-121.484674,39.063581],[-121.484674,39.049936],[-121.475891,39.043820],[-121.475577,39.043349],[-121.475577,39.042879],[-121.475577,39.042565],[-121.479185,39.042722],[-121.480596,39.042879],[-121.482635,39.043663],[-121.484674,39.045074],[-121.514003,39.065150],[-121.519649,39.069228],[-121.521375,39.070639],[-121.522943,39.072208],[-121.530315,39.080834],[-121.534549,39.085539],[-121.543019,39.095420],[-121.543332,39.095577],[-121.545528,39.098243],[-121.545214,39.098714],[-121.549606,39.104046],[-121.550547,39.102478],[-121.551645,39.103262],[-121.552586,39.104360],[-121.558232,39.111888],[-121.559330,39.113143],[-121.563408,39.113143],[-121.566074,39.115809],[-121.570466,39.118946],[-121.569525,39.119730],[-121.580347,39.126318],[-121.584738,39.128984],[-121.586463,39.130395],[-121.588346,39.132278],[-121.589600,39.134473],[-121.591639,39.134473],[-121.593051,39.134003],[-121.593521,39.133846],[-121.595717,39.131493],[-121.596344,39.129925],[-121.597285,39.128670],[-121.597599,39.127729],[-121.602304,39.135571],[-121.605755,39.138551],[-121.607637,39.140904],[-121.607951,39.143413],[-121.607794,39.145138],[-121.605598,39.147962],[-121.605441,39.148432],[-121.607480,39.150785],[-121.607637,39.152510],[-121.607794,39.152980],[-121.607637,39.153922],[-121.609833,39.158784],[-121.612656,39.163646],[-121.615322,39.167410],[-121.615636,39.168194],[-121.615322,39.168665],[-121.614381,39.169449],[-121.613126,39.170233],[-121.612185,39.171331],[-121.611401,39.172899],[-121.611087,39.174311],[-121.611087,39.175722],[-121.611558,39.176350],[-121.613597,39.176977],[-121.615793,39.178075],[-121.616420,39.178702],[-121.616891,39.179173],[-121.617204,39.179957],[-121.617204,39.180584],[-121.618145,39.182310],[-121.618459,39.182780],[-121.618145,39.183721],[-121.615793,39.185760],[-121.615008,39.186701],[-121.614381,39.187485],[-121.612969,39.190152],[-121.612969,39.190465],[-121.614538,39.191877],[-121.614695,39.192818],[-121.615165,39.193288],[-121.616106,39.193445],[-121.617988,39.193445],[-121.619243,39.193916],[-121.622694,39.195484],[-121.623635,39.195798],[-121.624105,39.196425],[-121.623948,39.196896],[-121.623635,39.197366],[-121.623635,39.197837],[-121.623948,39.198778],[-121.624419,39.199405],[-121.626771,39.201758],[-121.629124,39.204738],[-121.628026,39.205052],[-121.626928,39.205993],[-121.625203,39.206777],[-121.624262,39.206934],[-121.623635,39.206777],[-121.622694,39.205993],[-121.621596,39.205993],[-121.621125,39.206149],[-121.620655,39.207718],[-121.620655,39.208188],[-121.620184,39.208973],[-121.620027,39.209600],[-121.619400,39.210227],[-121.619714,39.210855],[-121.620184,39.211325],[-121.620968,39.212580],[-121.620341,39.213521],[-121.619243,39.213364],[-121.618302,39.212894],[-121.616891,39.212580],[-121.615793,39.212580],[-121.614224,39.213050],[-121.613597,39.214148],[-121.613754,39.214462],[-121.616263,39.217285],[-121.617047,39.218383],[-121.617518,39.219481],[-121.617988,39.220265],[-121.618145,39.220579],[-121.617675,39.222461],[-121.616734,39.223402],[-121.616106,39.225284],[-121.614695,39.227166],[-121.614381,39.228891],[-121.615322,39.229362],[-121.616891,39.229832],[-121.617832,39.229832],[-121.618302,39.229832],[-121.620184,39.228891],[-121.620812,39.228734],[-121.622223,39.228264],[-121.623791,39.228107],[-121.624733,39.227637],[-121.626928,39.228264],[-121.627712,39.228578],[-121.628183,39.229048],[-121.628810,39.230460],[-121.628810,39.231401],[-121.628340,39.232812],[-121.627712,39.233910],[-121.627556,39.234537],[-121.627712,39.235479],[-121.628497,39.236106],[-121.628810,39.236890],[-121.632888,39.238929],[-121.634457,39.239870],[-121.634927,39.240497],[-121.635398,39.241438],[-121.635241,39.242223],[-121.635241,39.242850],[-121.636339,39.246144],[-121.636182,39.247555],[-121.636339,39.249437],[-121.635241,39.251319],[-121.635084,39.252104],[-121.635555,39.256181],[-121.635868,39.256966],[-121.635711,39.257750],[-121.635868,39.259475],[-121.635711,39.260416],[-121.635868,39.261044],[-121.635711,39.261985],[-121.634927,39.262298],[-121.633986,39.262298],[-121.631163,39.260730],[-121.629595,39.260416],[-121.628654,39.259789],[-121.628026,39.259789],[-121.627242,39.259318],[-121.625203,39.260102],[-121.623478,39.261044],[-121.622850,39.261828],[-121.621753,39.262769],[-121.621439,39.263710],[-121.621596,39.264337],[-121.622066,39.264651],[-121.623948,39.264965],[-121.625203,39.265592],[-121.627085,39.265906],[-121.628497,39.266533],[-121.630222,39.268101],[-121.632261,39.270454],[-121.632575,39.270924],[-121.632418,39.271395],[-121.631947,39.272493],[-121.631006,39.273434],[-121.630222,39.273748],[-121.629595,39.273748],[-121.629281,39.273591],[-121.628340,39.272493],[-121.627556,39.272022],[-121.625046,39.271709],[-121.623791,39.271866],[-121.623478,39.272650],[-121.621909,39.273591],[-121.622223,39.274061],[-121.621909,39.274375],[-121.622223,39.275630],[-121.623007,39.276414],[-121.623948,39.276728],[-121.625360,39.277825],[-121.626144,39.278296],[-121.627242,39.279708],[-121.627399,39.280178],[-121.627712,39.282217],[-121.628340,39.283315],[-121.628183,39.284256],[-121.628497,39.285667],[-121.629124,39.286295],[-121.629595,39.287706],[-121.629751,39.288334],[-121.630379,39.288804],[-121.630692,39.289275],[-121.631477,39.290843],[-121.631634,39.291471],[-121.631634,39.291784],[-121.631320,39.291941],[-121.628340,39.291784],[-121.625517,39.292412],[-121.624105,39.293353],[-121.624105,39.293823],[-121.624262,39.294451],[-121.623635,39.294921],[-121.623635,39.295392],[-121.623791,39.295548],[-121.623164,39.296489],[-121.620812,39.298058],[-121.619557,39.300097],[-121.619086,39.300410],[-121.618616,39.300724],[-121.618145,39.301038],[-121.618145,39.301508],[-121.618773,39.301979],[-121.620655,39.302763],[-121.620812,39.302920],[-121.620812,39.303234],[-121.619714,39.303704],[-121.618773,39.305743],[-121.618145,39.308880],[-121.617832,39.309664],[-121.617675,39.309664],[-121.617047,39.311703],[-121.616734,39.312330],[-121.612185,39.316251],[-121.612028,39.316565],[-121.612028,39.316879],[-121.612499,39.317506],[-121.612499,39.317977],[-121.611872,39.318918],[-121.611244,39.319231],[-121.609048,39.319545],[-121.608107,39.319231],[-121.607480,39.318604],[-121.606382,39.318447],[-121.605755,39.318290],[-121.605598,39.317977],[-121.604814,39.317977],[-121.604186,39.317977],[-121.603402,39.316879],[-121.603089,39.316095],[-121.603089,39.315310],[-121.603245,39.314526],[-121.603559,39.314212],[-121.603402,39.313271],[-121.603245,39.312801],[-121.602304,39.311389],[-121.600893,39.310448],[-121.594149,39.307782],[-121.592423,39.307625],[-121.590384,39.308096],[-121.589130,39.308409],[-121.588346,39.308880],[-121.587561,39.309507],[-121.586777,39.310762],[-121.586150,39.311232],[-121.584581,39.311546],[-121.584268,39.311546],[-121.583640,39.310762],[-121.580817,39.309821],[-121.578465,39.310919],[-121.575641,39.310762],[-121.574700,39.310605],[-121.573603,39.310135],[-121.571407,39.308566],[-121.570466,39.308723],[-121.569368,39.308409],[-121.567643,39.307939],[-121.566702,39.306998],[-121.565604,39.306684],[-121.565133,39.306214],[-121.564506,39.305273],[-121.564035,39.304959],[-121.563094,39.304959],[-121.562781,39.305273],[-121.562624,39.305900],[-121.562310,39.306057],[-121.561996,39.306214],[-121.560742,39.306057],[-121.559330,39.306214],[-121.557291,39.307311],[-121.556350,39.307468],[-121.551174,39.307782],[-121.548665,39.308723],[-121.547097,39.310919],[-121.547410,39.311546],[-121.547253,39.312017],[-121.547097,39.312174],[-121.545842,39.312174],[-121.543646,39.313271],[-121.543176,39.313585],[-121.540509,39.314526],[-121.539568,39.314526],[-121.538157,39.314056],[-121.536431,39.314212],[-121.535647,39.314683],[-121.535333,39.315310],[-121.533451,39.316095],[-121.531569,39.317820],[-121.530471,39.318290],[-121.529217,39.318290],[-121.527805,39.317977],[-121.526550,39.317977],[-121.525139,39.318604],[-121.524041,39.318604],[-121.523570,39.318918],[-121.522943,39.318918],[-121.520904,39.319545],[-121.519806,39.319231],[-121.518238,39.318447],[-121.517140,39.317349],[-121.515885,39.317192],[-121.514631,39.317349],[-121.513062,39.317349],[-121.511964,39.317036],[-121.509768,39.317036],[-121.507102,39.319388],[-121.506789,39.320016],[-121.506004,39.320329],[-121.502083,39.323780],[-121.496594,39.328955],[-121.492673,39.334445],[-121.491575,39.335229],[-121.489222,39.336013],[-121.486713,39.337425],[-121.485615,39.337738],[-121.484360,39.337738],[-121.478714,39.336484],[-121.475734,39.335386],[-121.476518,39.334915],[-121.476518,39.334445],[-121.476989,39.334131],[-121.474950,39.333347],[-121.474479,39.333504],[-121.473382,39.333661],[-121.472127,39.333347],[-121.471499,39.333033],[-121.470558,39.332876],[-121.469461,39.333504],[-121.470245,39.334445],[-121.471343,39.336170],[-121.465853,39.338052],[-121.453149,39.341816],[-121.445307,39.346522],[-121.444052,39.347776],[-121.442641,39.349972],[-121.440445,39.352011]]]]}}
,{"id":95974,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-121.875207,39.503832],[-121.857327,39.503989],[-121.857484,39.493167],[-121.801021,39.493167],[-121.801021,39.485482],[-121.800707,39.485482],[-121.800707,39.481561],[-121.799766,39.479365],[-121.799139,39.464622],[-121.802590,39.463995],[-121.861405,39.464152],[-121.870188,39.463995],[-121.870031,39.464152],[-121.870031,39.465407],[-121.869874,39.465720],[-121.869404,39.466191],[-121.869247,39.466661],[-121.869404,39.466661],[-121.870501,39.466504],[-121.870972,39.466818],[-121.871286,39.467132],[-121.871129,39.469171],[-121.871599,39.470425],[-121.871913,39.471053],[-121.871913,39.471367],[-121.871599,39.471523],[-121.871756,39.472151],[-121.872070,39.472308],[-121.872227,39.472778],[-121.872070,39.476072],[-121.872227,39.476856],[-121.873325,39.478111],[-121.873481,39.478581],[-121.872854,39.480306],[-121.873168,39.482032],[-121.873011,39.482189],[-121.871599,39.482816],[-121.871286,39.482973],[-121.871443,39.483757],[-121.870815,39.484855],[-121.870815,39.485168],[-121.871756,39.485796],[-121.871599,39.488148],[-121.872540,39.490031],[-121.871756,39.490815],[-121.872540,39.492854],[-121.873795,39.494579],[-121.874266,39.496932],[-121.875364,39.498970],[-121.876148,39.500068],[-121.877089,39.501794],[-121.876148,39.502421],[-121.875207,39.503362],[-121.875207,39.503832]]]}}
,{"id":95914,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-121.366103,39.382124],[-121.366103,39.381340],[-121.366103,39.380870],[-121.367357,39.379458],[-121.367201,39.378203],[-121.368298,39.376478],[-121.370494,39.376164],[-121.371122,39.375694],[-121.371906,39.374910],[-121.372533,39.373655],[-121.372533,39.372871],[-121.371906,39.371773],[-121.371592,39.370518],[-121.371435,39.368322],[-121.372063,39.367695],[-121.372690,39.367224],[-121.373004,39.366911],[-121.372847,39.366127],[-121.372376,39.365342],[-121.372376,39.364872],[-121.372847,39.364558],[-121.373945,39.364401],[-121.375670,39.364401],[-121.376611,39.363931],[-121.376611,39.363617],[-121.377238,39.363147],[-121.378023,39.362990],[-121.379748,39.362519],[-121.381316,39.362990],[-121.382257,39.362990],[-121.382885,39.362519],[-121.382728,39.361735],[-121.384453,39.360637],[-121.386178,39.359069],[-121.386335,39.358285],[-121.386962,39.357030],[-121.387903,39.355932],[-121.389315,39.355148],[-121.389942,39.354991],[-121.390570,39.355305],[-121.391354,39.355148],[-121.392609,39.354207],[-121.393393,39.353266],[-121.395118,39.352638],[-121.396216,39.352011],[-121.399667,39.350286],[-121.400451,39.349972],[-121.401549,39.349815],[-121.402490,39.349972],[-121.403274,39.349502],[-121.403431,39.349031],[-121.403431,39.348560],[-121.402646,39.347463],[-121.402646,39.346365],[-121.403274,39.345424],[-121.404058,39.344796],[-121.404529,39.344639],[-121.406097,39.344796],[-121.406724,39.344639],[-121.407038,39.344483],[-121.407195,39.343542],[-121.407038,39.343071],[-121.406097,39.342130],[-121.405783,39.341503],[-121.405940,39.340562],[-121.407038,39.340248],[-121.407195,39.339934],[-121.407509,39.339777],[-121.410645,39.339934],[-121.411273,39.339621],[-121.414096,39.340248],[-121.415664,39.340091],[-121.417233,39.339307],[-121.419272,39.338993],[-121.420840,39.338052],[-121.422252,39.336641],[-121.423663,39.336170],[-121.425545,39.335072],[-121.426016,39.337268],[-121.426643,39.338366],[-121.427584,39.339150],[-121.428055,39.340875],[-121.428055,39.341346],[-121.428211,39.341816],[-121.428839,39.342444],[-121.428996,39.343228],[-121.430094,39.344639],[-121.431035,39.346522],[-121.431191,39.347306],[-121.432289,39.348404],[-121.432917,39.348717],[-121.434956,39.350913],[-121.438092,39.349972],[-121.438720,39.350129],[-121.440445,39.352011],[-121.439190,39.353266],[-121.437936,39.355305],[-121.434015,39.360167],[-121.432917,39.360480],[-121.430721,39.359539],[-121.430094,39.359539],[-121.429466,39.359696],[-121.426486,39.360794],[-121.424134,39.362049],[-121.418801,39.363931],[-121.416605,39.365656],[-121.416135,39.366440],[-121.415664,39.367695],[-121.415037,39.368950],[-121.415037,39.369420],[-121.415351,39.370361],[-121.415351,39.370989],[-121.415037,39.371459],[-121.414410,39.372243],[-121.414096,39.372871],[-121.412998,39.378517],[-121.407979,39.386045],[-121.405313,39.388712],[-121.402019,39.386673],[-121.399667,39.384477],[-121.395746,39.382438],[-121.394177,39.381340],[-121.390256,39.380085],[-121.388531,39.379301],[-121.386335,39.379301],[-121.379748,39.378674],[-121.378964,39.378360],[-121.376140,39.375537],[-121.374729,39.375851],[-121.372847,39.375694],[-121.371906,39.376321],[-121.370965,39.376478],[-121.370965,39.377105],[-121.370808,39.378046],[-121.371122,39.378360],[-121.370181,39.380085],[-121.369710,39.380556],[-121.369083,39.381340],[-121.368769,39.381497],[-121.367044,39.381183],[-121.366103,39.382124]]],[[[-121.293799,39.474817],[-121.294113,39.473876],[-121.294583,39.472935],[-121.294897,39.472778],[-121.295838,39.472621],[-121.296309,39.472308],[-121.296622,39.471680],[-121.296152,39.470425],[-121.296936,39.468857],[-121.297407,39.468230],[-121.298348,39.465877],[-121.298818,39.465563],[-121.299445,39.464779],[-121.299602,39.463368],[-121.300073,39.462427],[-121.300073,39.462113],[-121.300857,39.460388],[-121.301171,39.459917],[-121.301328,39.459133],[-121.301798,39.458506],[-121.302739,39.455996],[-121.303367,39.455055],[-121.303523,39.454741],[-121.303053,39.454428],[-121.302896,39.453800],[-121.303053,39.453330],[-121.303680,39.452389],[-121.303994,39.450977],[-121.303837,39.450036],[-121.303523,39.449879],[-121.303680,39.449252],[-121.304621,39.448782],[-121.305092,39.447684],[-121.309326,39.444233],[-121.310895,39.442822],[-121.311836,39.442194],[-121.311836,39.442037],[-121.312463,39.441724],[-121.314188,39.440469],[-121.315443,39.439998],[-121.318580,39.435607],[-121.319521,39.433882],[-121.319678,39.433725],[-121.319835,39.433882],[-121.320305,39.435136],[-121.320933,39.434980],[-121.321717,39.434666],[-121.322972,39.433097],[-121.324226,39.432470],[-121.325638,39.432000],[-121.326893,39.430902],[-121.327363,39.430274],[-121.328775,39.429804],[-121.329559,39.428706],[-121.330970,39.428549],[-121.332853,39.427608],[-121.333323,39.426981],[-121.333480,39.425883],[-121.333794,39.425412],[-121.335048,39.424628],[-121.334891,39.424314],[-121.334421,39.423687],[-121.334891,39.422432],[-121.335362,39.422275],[-121.335362,39.421962],[-121.335676,39.421648],[-121.336617,39.421178],[-121.339126,39.418511],[-121.340851,39.418041],[-121.341479,39.417727],[-121.342577,39.418198],[-121.344145,39.417884],[-121.344459,39.417100],[-121.345870,39.416316],[-121.346654,39.415688],[-121.347596,39.415375],[-121.347752,39.414590],[-121.348380,39.413649],[-121.349634,39.413336],[-121.350889,39.413492],[-121.351673,39.413336],[-121.352771,39.412865],[-121.353712,39.411610],[-121.355438,39.410669],[-121.355908,39.409885],[-121.356535,39.409571],[-121.357320,39.408003],[-121.357006,39.405807],[-121.356692,39.405494],[-121.356692,39.405023],[-121.357163,39.404396],[-121.358731,39.403768],[-121.361711,39.403611],[-121.363436,39.403298],[-121.363750,39.403455],[-121.363750,39.403768],[-121.363280,39.405337],[-121.363280,39.405807],[-121.364064,39.407219],[-121.364221,39.408003],[-121.364064,39.408630],[-121.362495,39.411140],[-121.362182,39.412238],[-121.362339,39.413336],[-121.363593,39.415845],[-121.364221,39.416472],[-121.366573,39.418198],[-121.367357,39.418668],[-121.365789,39.419766],[-121.366416,39.421334],[-121.365318,39.423060],[-121.363750,39.426510],[-121.362809,39.428235],[-121.362182,39.428549],[-121.362809,39.428863],[-121.362809,39.429020],[-121.361868,39.431372],[-121.363280,39.431059],[-121.363750,39.430588],[-121.364221,39.430588],[-121.364221,39.431215],[-121.364377,39.432000],[-121.365005,39.432784],[-121.365789,39.432941],[-121.363280,39.435764],[-121.367044,39.439528],[-121.368298,39.443763],[-121.370337,39.445174],[-121.370494,39.446899],[-121.367201,39.446743],[-121.365946,39.447056],[-121.365475,39.446899],[-121.362339,39.445645],[-121.362025,39.445488],[-121.361868,39.444704],[-121.360456,39.443919],[-121.359202,39.442978],[-121.357476,39.443135],[-121.356692,39.443292],[-121.354810,39.443135],[-121.353399,39.444076],[-121.352458,39.443449],[-121.350732,39.443449],[-121.350262,39.442508],[-121.350889,39.441253],[-121.351517,39.437960],[-121.347752,39.436391],[-121.347909,39.437803],[-121.347125,39.440783],[-121.346654,39.441096],[-121.345400,39.441096],[-121.344616,39.441881],[-121.343988,39.442194],[-121.346184,39.444233],[-121.346654,39.445174],[-121.346498,39.445802],[-121.346184,39.446586],[-121.345400,39.447213],[-121.345243,39.448938],[-121.345086,39.449723],[-121.345086,39.452546],[-121.344145,39.453330],[-121.342733,39.453800],[-121.342106,39.454271],[-121.338342,39.454428],[-121.338342,39.465093],[-121.333480,39.465093],[-121.333480,39.468700],[-121.324069,39.468543],[-121.324069,39.475758],[-121.314816,39.475915],[-121.314973,39.486894],[-121.314659,39.486266],[-121.313718,39.485639],[-121.314032,39.485168],[-121.314816,39.485012],[-121.314816,39.484541],[-121.313875,39.483130],[-121.313404,39.482973],[-121.313247,39.482502],[-121.312934,39.482345],[-121.311365,39.482659],[-121.310895,39.482189],[-121.310738,39.480934],[-121.310895,39.480306],[-121.310424,39.479365],[-121.310424,39.478268],[-121.309797,39.477640],[-121.308542,39.477013],[-121.307601,39.475444],[-121.307131,39.474974],[-121.306974,39.474503],[-121.307288,39.473876],[-121.306974,39.472778],[-121.306660,39.472464],[-121.305876,39.472151],[-121.305249,39.472151],[-121.304151,39.473405],[-121.303210,39.472778],[-121.302582,39.472464],[-121.301641,39.472621],[-121.301014,39.472935],[-121.299602,39.472778],[-121.298975,39.473092],[-121.298504,39.473876],[-121.297093,39.474033],[-121.295524,39.473562],[-121.294897,39.473719],[-121.293799,39.474817]]]]}}
,{"id":95246,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-120.633344,38.259304],[-120.632246,38.258676],[-120.627855,38.257579],[-120.626286,38.256951],[-120.624247,38.256951],[-120.620954,38.256167],[-120.619856,38.255696],[-120.618444,38.254442],[-120.616405,38.253971],[-120.614367,38.253030],[-120.615308,38.253814],[-120.615308,38.253971],[-120.615151,38.254128],[-120.614523,38.254442],[-120.613896,38.254285],[-120.612328,38.254912],[-120.612014,38.254912],[-120.611700,38.254442],[-120.610916,38.254285],[-120.610132,38.253501],[-120.609348,38.253030],[-120.609348,38.253187],[-120.609661,38.253501],[-120.610446,38.255069],[-120.610132,38.256481],[-120.610289,38.256951],[-120.609975,38.257422],[-120.609504,38.257265],[-120.609348,38.256794],[-120.608563,38.256167],[-120.608093,38.256167],[-120.607779,38.256637],[-120.605583,38.257108],[-120.604799,38.257265],[-120.604642,38.257579],[-120.605113,38.258049],[-120.604799,38.258520],[-120.604329,38.258676],[-120.602290,38.258206],[-120.600094,38.257422],[-120.602760,38.260558],[-120.604015,38.262441],[-120.604642,38.263538],[-120.604799,38.264166],[-120.602290,38.264323],[-120.600878,38.264793],[-120.600094,38.264636],[-120.597741,38.265107],[-120.596330,38.264950],[-120.593664,38.265577],[-120.593350,38.265891],[-120.592879,38.266675],[-120.592723,38.267146],[-120.593350,38.267773],[-120.593507,38.270283],[-120.593977,38.271067],[-120.590684,38.273576],[-120.589586,38.272635],[-120.588017,38.271851],[-120.587547,38.271067],[-120.585822,38.269185],[-120.585508,38.268401],[-120.585508,38.267303],[-120.584724,38.266675],[-120.584253,38.265734],[-120.584096,38.264636],[-120.582842,38.263225],[-120.582371,38.262441],[-120.582528,38.261656],[-120.582528,38.261029],[-120.582371,38.260715],[-120.581587,38.260402],[-120.581744,38.259931],[-120.581430,38.259304],[-120.579077,38.258520],[-120.579077,38.258206],[-120.579548,38.257892],[-120.578136,38.257422],[-120.576568,38.257265],[-120.575000,38.257579],[-120.573745,38.258520],[-120.572020,38.259147],[-120.570451,38.259931],[-120.568726,38.259461],[-120.567314,38.259617],[-120.566373,38.259461],[-120.565432,38.259617],[-120.564805,38.260558],[-120.564491,38.260872],[-120.563864,38.260872],[-120.563080,38.260402],[-120.560257,38.260558],[-120.559002,38.261343],[-120.557904,38.261500],[-120.556649,38.262284],[-120.556179,38.262284],[-120.555081,38.261813],[-120.551474,38.261343],[-120.549748,38.260872],[-120.547553,38.259774],[-120.546611,38.260088],[-120.539867,38.260715],[-120.537515,38.261970],[-120.533594,38.262284],[-120.532339,38.262754],[-120.531398,38.263695],[-120.530771,38.263852],[-120.527477,38.263695],[-120.525752,38.263382],[-120.525281,38.263538],[-120.524497,38.264009],[-120.523713,38.264323],[-120.520576,38.265107],[-120.519792,38.265421],[-120.518694,38.266205],[-120.516812,38.265891],[-120.514930,38.265891],[-120.512263,38.266832],[-120.511479,38.267459],[-120.509597,38.267146],[-120.506460,38.267146],[-120.505362,38.267146],[-120.504421,38.266832],[-120.503324,38.266832],[-120.503167,38.267303],[-120.504108,38.267459],[-120.505206,38.267930],[-120.506617,38.267930],[-120.507872,38.267459],[-120.508499,38.267459],[-120.508813,38.267773],[-120.508970,38.268087],[-120.508656,38.270126],[-120.509127,38.270126],[-120.510068,38.269655],[-120.511479,38.270439],[-120.511636,38.270283],[-120.511166,38.269185],[-120.511479,38.268871],[-120.511950,38.268871],[-120.512577,38.268714],[-120.513048,38.268244],[-120.515400,38.269028],[-120.516498,38.268871],[-120.517439,38.269185],[-120.519478,38.268401],[-120.519949,38.268401],[-120.520262,38.268557],[-120.520576,38.269342],[-120.521360,38.270126],[-120.521674,38.270283],[-120.521831,38.270126],[-120.522301,38.269028],[-120.522458,38.269028],[-120.522929,38.269342],[-120.523713,38.269028],[-120.524654,38.269028],[-120.524811,38.268557],[-120.525595,38.268557],[-120.526065,38.268087],[-120.526379,38.268401],[-120.526536,38.269185],[-120.527320,38.269498],[-120.527320,38.269655],[-120.527320,38.269969],[-120.526536,38.270910],[-120.526379,38.271380],[-120.526693,38.272165],[-120.526850,38.272792],[-120.527163,38.273263],[-120.527477,38.274204],[-120.527006,38.274517],[-120.526693,38.274360],[-120.526222,38.274517],[-120.525438,38.274360],[-120.524811,38.275772],[-120.524497,38.276086],[-120.524183,38.276086],[-120.524026,38.276086],[-120.523242,38.274988],[-120.522615,38.274988],[-120.522301,38.274831],[-120.521517,38.273263],[-120.520733,38.272322],[-120.519792,38.271694],[-120.518851,38.271694],[-120.518223,38.271224],[-120.517282,38.271067],[-120.516498,38.271694],[-120.515871,38.271380],[-120.514930,38.271851],[-120.514459,38.270910],[-120.514146,38.270596],[-120.513832,38.270753],[-120.513204,38.272008],[-120.512891,38.272322],[-120.511636,38.271694],[-120.510538,38.271694],[-120.509440,38.272635],[-120.508186,38.272792],[-120.507872,38.272949],[-120.506931,38.275615],[-120.506617,38.275615],[-120.505990,38.275301],[-120.506931,38.277027],[-120.506931,38.278752],[-120.506617,38.279223],[-120.505519,38.279693],[-120.504735,38.280320],[-120.504735,38.281105],[-120.505362,38.282516],[-120.504578,38.283300],[-120.503951,38.284712],[-120.503010,38.285182],[-120.500030,38.285967],[-120.498618,38.286751],[-120.497207,38.286908],[-120.495482,38.287535],[-120.494070,38.288633],[-120.493599,38.289260],[-120.489208,38.289260],[-120.488894,38.288947],[-120.488737,38.288319],[-120.486385,38.286751],[-120.485130,38.286908],[-120.485444,38.286751],[-120.486071,38.285653],[-120.486071,38.285182],[-120.485757,38.284085],[-120.484973,38.282987],[-120.484973,38.281732],[-120.484660,38.281575],[-120.484660,38.280791],[-120.484346,38.280164],[-120.484660,38.279536],[-120.483562,38.279223],[-120.483562,38.278281],[-120.483091,38.277654],[-120.483091,38.277340],[-120.483405,38.276243],[-120.484346,38.275615],[-120.483091,38.273576],[-120.481366,38.274831],[-120.480425,38.274988],[-120.476661,38.276399],[-120.475876,38.276086],[-120.475406,38.276243],[-120.474935,38.277027],[-120.473994,38.277340],[-120.470858,38.276870],[-120.469917,38.276556],[-120.469603,38.276243],[-120.467564,38.276243],[-120.466937,38.276399],[-120.465996,38.276243],[-120.465054,38.276713],[-120.462702,38.277184],[-120.462075,38.277340],[-120.460036,38.277340],[-120.458781,38.277184],[-120.457840,38.277340],[-120.456271,38.276870],[-120.454076,38.276870],[-120.453135,38.277027],[-120.453135,38.278125],[-120.452978,38.278595],[-120.452507,38.279066],[-120.451096,38.279536],[-120.448116,38.280164],[-120.446234,38.280791],[-120.445920,38.281105],[-120.445449,38.281889],[-120.444038,38.282673],[-120.443254,38.283614],[-120.441685,38.284241],[-120.440744,38.285026],[-120.439176,38.285967],[-120.435725,38.287221],[-120.433059,38.286594],[-120.432118,38.286908],[-120.430550,38.287849],[-120.427883,38.289417],[-120.427413,38.290358],[-120.427256,38.291770],[-120.426001,38.292711],[-120.424119,38.293181],[-120.422864,38.293966],[-120.420041,38.295063],[-120.417846,38.296318],[-120.416434,38.296318],[-120.413924,38.296161],[-120.413454,38.296318],[-120.412199,38.297259],[-120.411101,38.297730],[-120.409847,38.298671],[-120.409533,38.299298],[-120.409376,38.300866],[-120.408435,38.301494],[-120.406396,38.303376],[-120.406396,38.303690],[-120.405926,38.304474],[-120.406082,38.304944],[-120.405141,38.306042],[-120.404985,38.306042],[-120.404828,38.305572],[-120.404200,38.305258],[-120.402005,38.305101],[-120.400750,38.304631],[-120.399966,38.303219],[-120.399809,38.302905],[-120.399966,38.302592],[-120.399652,38.301808],[-120.399338,38.301494],[-120.399809,38.301180],[-120.399652,38.300553],[-120.400436,38.300396],[-120.400750,38.299925],[-120.401064,38.299455],[-120.400907,38.298984],[-120.399966,38.298514],[-120.399025,38.298671],[-120.398554,38.298200],[-120.398084,38.298200],[-120.397299,38.298514],[-120.396358,38.298984],[-120.396202,38.298984],[-120.396202,38.298828],[-120.396515,38.298514],[-120.397299,38.297102],[-120.397456,38.295848],[-120.397299,38.295691],[-120.396045,38.294436],[-120.395417,38.294907],[-120.394790,38.295534],[-120.394633,38.295534],[-120.394319,38.295220],[-120.394633,38.294436],[-120.394319,38.294122],[-120.392908,38.294279],[-120.392751,38.294122],[-120.392908,38.293966],[-120.393535,38.293495],[-120.394947,38.293181],[-120.395417,38.292711],[-120.395417,38.292397],[-120.394006,38.291927],[-120.394006,38.291613],[-120.394163,38.291456],[-120.395574,38.291299],[-120.396045,38.290672],[-120.396515,38.277811],[-120.395888,38.277184],[-120.395888,38.276399],[-120.396672,38.275458],[-120.396829,38.271224],[-120.397927,38.271067],[-120.399025,38.271694],[-120.399966,38.271694],[-120.402789,38.272322],[-120.404514,38.271224],[-120.404828,38.271380],[-120.407180,38.269655],[-120.408435,38.269342],[-120.408906,38.268714],[-120.409219,38.270283],[-120.408906,38.270753],[-120.408749,38.271851],[-120.408278,38.273263],[-120.408121,38.273890],[-120.407651,38.274517],[-120.406867,38.274831],[-120.405769,38.274674],[-120.405612,38.275772],[-120.404828,38.276713],[-120.404828,38.277027],[-120.405298,38.277027],[-120.405141,38.277968],[-120.404828,38.278909],[-120.405141,38.279223],[-120.404985,38.279693],[-120.405298,38.280164],[-120.406867,38.279850],[-120.407337,38.280007],[-120.408749,38.279850],[-120.409533,38.279536],[-120.409533,38.279379],[-120.409847,38.279223],[-120.412199,38.278752],[-120.412983,38.278281],[-120.413924,38.277027],[-120.414709,38.276713],[-120.414709,38.276399],[-120.415179,38.275929],[-120.416904,38.275458],[-120.418316,38.275458],[-120.420041,38.274517],[-120.421296,38.273890],[-120.422394,38.273733],[-120.423178,38.273263],[-120.423492,38.272478],[-120.423492,38.271851],[-120.424433,38.271067],[-120.425531,38.270910],[-120.425844,38.270753],[-120.426158,38.270283],[-120.426158,38.269812],[-120.425060,38.269498],[-120.424746,38.268871],[-120.424433,38.268714],[-120.425531,38.268401],[-120.425688,38.268087],[-120.425531,38.267146],[-120.426001,38.266989],[-120.426001,38.266832],[-120.426315,38.266205],[-120.426158,38.265891],[-120.425060,38.265734],[-120.424746,38.265107],[-120.425531,38.264166],[-120.427413,38.263068],[-120.427413,38.262911],[-120.427099,38.262754],[-120.425688,38.262911],[-120.425531,38.262754],[-120.425844,38.262284],[-120.425531,38.262127],[-120.424276,38.262284],[-120.423021,38.262127],[-120.421923,38.262441],[-120.420512,38.262127],[-120.419728,38.261656],[-120.418787,38.262127],[-120.418630,38.261500],[-120.417846,38.260088],[-120.417532,38.259931],[-120.414866,38.259931],[-120.414081,38.259617],[-120.415022,38.259461],[-120.416434,38.259461],[-120.418002,38.258833],[-120.418473,38.258363],[-120.419884,38.258049],[-120.420669,38.256481],[-120.422237,38.255696],[-120.424746,38.255069],[-120.425217,38.254599],[-120.425844,38.254442],[-120.427413,38.254912],[-120.427726,38.254285],[-120.428667,38.253658],[-120.429609,38.252403],[-120.429922,38.252246],[-120.433059,38.251775],[-120.434941,38.252089],[-120.435412,38.251462],[-120.435882,38.251148],[-120.436353,38.251148],[-120.437137,38.251462],[-120.437764,38.251148],[-120.439019,38.251305],[-120.439646,38.250991],[-120.439960,38.249893],[-120.440901,38.249266],[-120.442469,38.249109],[-120.445293,38.247698],[-120.447018,38.247698],[-120.447802,38.247541],[-120.449057,38.245659],[-120.449370,38.244247],[-120.450311,38.242522],[-120.450782,38.241424],[-120.453291,38.239542],[-120.455801,38.237189],[-120.459408,38.235150],[-120.460036,38.233739],[-120.463957,38.230916],[-120.467250,38.227622],[-120.467407,38.227308],[-120.467407,38.225113],[-120.468034,38.223074],[-120.470073,38.220878],[-120.470387,38.220878],[-120.470230,38.220564],[-120.470230,38.219780],[-120.469917,38.219153],[-120.469446,38.218996],[-120.468348,38.218682],[-120.467093,38.217741],[-120.465211,38.216486],[-120.464270,38.215702],[-120.463800,38.214291],[-120.463957,38.212722],[-120.464270,38.212408],[-120.465211,38.212252],[-120.465368,38.211781],[-120.465211,38.211467],[-120.464113,38.210840],[-120.463486,38.210213],[-120.463643,38.209899],[-120.464427,38.209272],[-120.463643,38.209272],[-120.463016,38.207390],[-120.463172,38.206762],[-120.464270,38.205508],[-120.464427,38.203469],[-120.465054,38.203155],[-120.465682,38.202841],[-120.465996,38.202214],[-120.467250,38.200959],[-120.467721,38.200018],[-120.468191,38.198920],[-120.468662,38.198450],[-120.469132,38.198293],[-120.469917,38.198293],[-120.472896,38.198920],[-120.473838,38.198763],[-120.474779,38.199234],[-120.477445,38.200332],[-120.479327,38.200489],[-120.479797,38.200175],[-120.480582,38.200332],[-120.481680,38.200018],[-120.482464,38.199861],[-120.482934,38.199234],[-120.484346,38.198450],[-120.485130,38.198293],[-120.485601,38.198136],[-120.486855,38.198293],[-120.488110,38.197979],[-120.488737,38.197352],[-120.490306,38.197352],[-120.491404,38.196254],[-120.491717,38.195627],[-120.492188,38.195156],[-120.491874,38.194529],[-120.492031,38.193901],[-120.491247,38.193588],[-120.490463,38.192960],[-120.491717,38.192019],[-120.491717,38.191549],[-120.491404,38.190921],[-120.491090,38.190921],[-120.491090,38.190294],[-120.492188,38.188882],[-120.493599,38.189196],[-120.495011,38.189196],[-120.496109,38.188726],[-120.497207,38.187785],[-120.500030,38.187628],[-120.501755,38.187157],[-120.502539,38.186530],[-120.502696,38.186373],[-120.502696,38.185902],[-120.504578,38.185432],[-120.504578,38.184961],[-120.503794,38.184491],[-120.503637,38.183864],[-120.504892,38.183707],[-120.505362,38.183079],[-120.506303,38.182766],[-120.506774,38.182922],[-120.507245,38.183236],[-120.507872,38.183550],[-120.508186,38.182609],[-120.508813,38.182452],[-120.508970,38.182295],[-120.508499,38.181981],[-120.507872,38.181981],[-120.508029,38.181511],[-120.509283,38.181354],[-120.510381,38.181825],[-120.510852,38.181825],[-120.511009,38.181511],[-120.511322,38.180099],[-120.512107,38.179629],[-120.512734,38.179001],[-120.513361,38.178845],[-120.514146,38.178374],[-120.516969,38.179158],[-120.518537,38.178845],[-120.519478,38.179158],[-120.519949,38.179158],[-120.521360,38.178531],[-120.521831,38.177747],[-120.523556,38.177590],[-120.524654,38.176806],[-120.525909,38.175865],[-120.527791,38.175865],[-120.528418,38.175708],[-120.529045,38.175394],[-120.529830,38.175237],[-120.531555,38.173983],[-120.532182,38.173826],[-120.532496,38.173355],[-120.533907,38.173198],[-120.534535,38.173512],[-120.535476,38.173512],[-120.536731,38.173826],[-120.537515,38.173826],[-120.538613,38.173198],[-120.538926,38.172728],[-120.539554,38.172257],[-120.540338,38.171159],[-120.542063,38.170218],[-120.542063,38.169748],[-120.542534,38.168807],[-120.542534,38.167709],[-120.543318,38.166925],[-120.543632,38.166297],[-120.544729,38.165827],[-120.546611,38.164415],[-120.547709,38.164258],[-120.548964,38.163788],[-120.550846,38.163474],[-120.552728,38.164102],[-120.556336,38.164729],[-120.556806,38.164572],[-120.557277,38.163945],[-120.559159,38.163945],[-120.559629,38.163631],[-120.559943,38.163161],[-120.560570,38.163945],[-120.561511,38.164415],[-120.562766,38.165513],[-120.562923,38.165827],[-120.562923,38.166297],[-120.562609,38.166611],[-120.561198,38.167082],[-120.560570,38.167395],[-120.558845,38.167238],[-120.556336,38.167238],[-120.555865,38.167552],[-120.555395,38.168179],[-120.556022,38.169905],[-120.555238,38.170218],[-120.555238,38.170375],[-120.555708,38.170375],[-120.556179,38.170218],[-120.556492,38.169591],[-120.556336,38.168179],[-120.556963,38.167709],[-120.557590,38.167709],[-120.560257,38.168179],[-120.561668,38.168179],[-120.562296,38.167866],[-120.564334,38.166768],[-120.565432,38.166611],[-120.567471,38.166768],[-120.570765,38.165827],[-120.571863,38.165827],[-120.574215,38.166141],[-120.574686,38.165984],[-120.576411,38.164886],[-120.579548,38.164415],[-120.580175,38.164102],[-120.581430,38.163004],[-120.581901,38.162220],[-120.582057,38.161749],[-120.582842,38.160494],[-120.583469,38.160337],[-120.585194,38.160337],[-120.585508,38.160181],[-120.585037,38.158612],[-120.585037,38.158142],[-120.585665,38.157671],[-120.586292,38.157358],[-120.588174,38.157358],[-120.588331,38.157201],[-120.590370,38.157201],[-120.591468,38.157514],[-120.591938,38.157514],[-120.592095,38.157201],[-120.592252,38.156103],[-120.592879,38.155632],[-120.593507,38.155632],[-120.593977,38.155946],[-120.594605,38.157514],[-120.595075,38.157671],[-120.595703,38.157671],[-120.597271,38.157201],[-120.601819,38.157201],[-120.608250,38.156730],[-120.610132,38.156260],[-120.612328,38.157985],[-120.612484,38.159396],[-120.613112,38.161435],[-120.613112,38.162220],[-120.613426,38.162376],[-120.612955,38.162533],[-120.609975,38.162847],[-120.609034,38.163161],[-120.608093,38.163945],[-120.604329,38.163945],[-120.603231,38.164258],[-120.602760,38.164415],[-120.601819,38.165200],[-120.598996,38.165513],[-120.598055,38.166141],[-120.596644,38.166611],[-120.595389,38.168179],[-120.594448,38.168807],[-120.593664,38.169121],[-120.592252,38.170375],[-120.591938,38.171630],[-120.590840,38.172728],[-120.590527,38.174453],[-120.590213,38.174924],[-120.590213,38.175551],[-120.589586,38.176335],[-120.589272,38.177276],[-120.588645,38.177590],[-120.587704,38.177590],[-120.587390,38.177590],[-120.586292,38.178531],[-120.585665,38.178688],[-120.584253,38.180413],[-120.583155,38.180727],[-120.582214,38.181511],[-120.581273,38.181825],[-120.579862,38.182766],[-120.577352,38.183550],[-120.573274,38.186216],[-120.573118,38.186530],[-120.573118,38.189039],[-120.572804,38.189823],[-120.572333,38.190451],[-120.572490,38.191706],[-120.569981,38.195627],[-120.572804,38.195313],[-120.574372,38.194686],[-120.575313,38.194999],[-120.576254,38.195156],[-120.577666,38.194215],[-120.580332,38.193588],[-120.582214,38.194058],[-120.582998,38.194058],[-120.583312,38.193901],[-120.584410,38.193117],[-120.584881,38.193117],[-120.585194,38.193274],[-120.584410,38.194058],[-120.583783,38.195470],[-120.583783,38.197352],[-120.583469,38.197979],[-120.581116,38.201430],[-120.578450,38.203625],[-120.575000,38.204723],[-120.573431,38.205664],[-120.571863,38.206762],[-120.570138,38.207233],[-120.569040,38.208017],[-120.566844,38.208174],[-120.565432,38.208644],[-120.563237,38.210370],[-120.558688,38.213193],[-120.556963,38.214604],[-120.575627,38.237503],[-120.576097,38.237346],[-120.576882,38.237503],[-120.577352,38.237346],[-120.579234,38.236091],[-120.580332,38.234994],[-120.580960,38.234680],[-120.582057,38.234523],[-120.584096,38.233582],[-120.584724,38.233425],[-120.585037,38.233739],[-120.586606,38.234052],[-120.586606,38.233739],[-120.585665,38.232798],[-120.585978,38.231857],[-120.587233,38.231543],[-120.589743,38.229504],[-120.591154,38.229034],[-120.591782,38.228563],[-120.592879,38.228563],[-120.593507,38.229190],[-120.593664,38.229818],[-120.594605,38.229975],[-120.595389,38.230602],[-120.596644,38.230759],[-120.597741,38.231073],[-120.598055,38.231073],[-120.598683,38.230288],[-120.598996,38.230131],[-120.599624,38.230288],[-120.602290,38.230445],[-120.604642,38.229661],[-120.605740,38.229034],[-120.606681,38.228877],[-120.608093,38.228093],[-120.608877,38.228093],[-120.609504,38.227779],[-120.610602,38.228093],[-120.612484,38.228093],[-120.612328,38.227936],[-120.612484,38.227151],[-120.613426,38.227151],[-120.613582,38.226681],[-120.613896,38.226524],[-120.615621,38.226681],[-120.616562,38.226524],[-120.616876,38.226524],[-120.616876,38.226210],[-120.617190,38.247227],[-120.645735,38.247698],[-120.645421,38.248795],[-120.645421,38.249266],[-120.644794,38.250678],[-120.644009,38.250834],[-120.643225,38.251462],[-120.641500,38.252246],[-120.641029,38.252246],[-120.640559,38.252089],[-120.639775,38.252560],[-120.639461,38.252716],[-120.639147,38.253501],[-120.638677,38.253344],[-120.637893,38.253501],[-120.635383,38.256167],[-120.634756,38.256167],[-120.634128,38.256637],[-120.633501,38.256794],[-120.633344,38.257265],[-120.633344,38.258990],[-120.633344,38.259304]]]}}
,{"id":95979,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-122.649998,39.384791],[-122.594477,39.385575],[-122.523585,39.384791],[-122.507587,39.384006],[-122.496765,39.384163],[-122.468063,39.383850],[-122.431363,39.383850],[-122.417718,39.384006],[-122.402975,39.384163],[-122.376155,39.384163],[-122.360941,39.384634],[-122.262916,39.384634],[-122.256956,39.384791],[-122.257584,39.383065],[-122.257427,39.380870],[-122.256643,39.377576],[-122.255388,39.376321],[-122.254917,39.374910],[-122.255074,39.372400],[-122.254917,39.371459],[-122.255388,39.370204],[-122.255545,39.369420],[-122.254604,39.367224],[-122.254604,39.366754],[-122.254760,39.366440],[-122.256486,39.365342],[-122.256486,39.365029],[-122.255545,39.362990],[-122.250055,39.360324],[-122.249428,39.359853],[-122.248330,39.358285],[-122.248644,39.355148],[-122.247860,39.354364],[-122.247860,39.348717],[-122.248330,39.348874],[-122.248487,39.352952],[-122.248644,39.354364],[-122.262759,39.354364],[-122.262289,39.276100],[-122.279698,39.275943],[-122.281267,39.276257],[-122.284717,39.277512],[-122.286599,39.278610],[-122.307773,39.292882],[-122.309184,39.294294],[-122.309655,39.295862],[-122.310753,39.297274],[-122.311537,39.298685],[-122.312791,39.300254],[-122.313419,39.300567],[-122.314360,39.300724],[-122.316399,39.300254],[-122.317026,39.300097],[-122.318438,39.300410],[-122.319379,39.300881],[-122.320790,39.302136],[-122.321261,39.302763],[-122.321104,39.303547],[-122.320320,39.304959],[-122.320320,39.305429],[-122.320790,39.306057],[-122.324868,39.307625],[-122.326750,39.307311],[-122.331142,39.307468],[-122.334279,39.308723],[-122.336474,39.308723],[-122.336474,39.309507],[-122.338043,39.309507],[-122.338043,39.304331],[-122.339297,39.303077],[-122.342748,39.301508],[-122.343532,39.300410],[-122.344003,39.299156],[-122.345414,39.296176],[-122.345571,39.294451],[-122.346198,39.291627],[-122.346198,39.291000],[-122.346983,39.289432],[-122.347296,39.287079],[-122.347453,39.284413],[-122.347139,39.280962],[-122.347453,39.279551],[-122.348081,39.278610],[-122.349178,39.277355],[-122.349178,39.276257],[-122.351061,39.274689],[-122.351531,39.273904],[-122.355452,39.267788],[-122.355452,39.258064],[-122.357177,39.253672],[-122.357020,39.252731],[-122.357177,39.251790],[-122.357020,39.251163],[-122.356707,39.250692],[-122.356864,39.250065],[-122.356236,39.247712],[-122.357177,39.243007],[-122.357491,39.241909],[-122.359216,39.240027],[-122.359373,39.238929],[-122.358903,39.237674],[-122.359844,39.237047],[-122.359687,39.236106],[-122.360157,39.235635],[-122.360314,39.235165],[-122.361569,39.234067],[-122.363137,39.232499],[-122.363294,39.231714],[-122.363765,39.230930],[-122.363765,39.230460],[-122.363294,39.229832],[-122.363451,39.229205],[-122.364078,39.228578],[-122.365804,39.223716],[-122.366745,39.223559],[-122.368313,39.223872],[-122.371763,39.223245],[-122.372704,39.222618],[-122.375057,39.223088],[-122.376939,39.223245],[-122.379292,39.224186],[-122.380703,39.224343],[-122.382585,39.224343],[-122.385252,39.223559],[-122.386350,39.223088],[-122.387447,39.223088],[-122.388389,39.222774],[-122.389330,39.222618],[-122.391525,39.222931],[-122.393094,39.222461],[-122.394505,39.221049],[-122.395290,39.220736],[-122.396231,39.220265],[-122.396544,39.219167],[-122.397328,39.217285],[-122.398426,39.216344],[-122.399524,39.215717],[-122.399995,39.213991],[-122.399995,39.212580],[-122.400779,39.211639],[-122.400779,39.211011],[-122.401877,39.210855],[-122.402661,39.210227],[-122.403288,39.210384],[-122.403602,39.210227],[-122.403445,39.209600],[-122.403916,39.209129],[-122.403916,39.208345],[-122.403132,39.208816],[-122.402504,39.208816],[-122.401406,39.207875],[-122.402034,39.207090],[-122.402504,39.206777],[-122.403288,39.205993],[-122.404543,39.205522],[-122.405170,39.205679],[-122.405798,39.206306],[-122.406896,39.206149],[-122.406425,39.205522],[-122.406425,39.205052],[-122.406111,39.204581],[-122.406111,39.204267],[-122.407523,39.203483],[-122.408464,39.203169],[-122.407053,39.202699],[-122.406739,39.202542],[-122.406739,39.202072],[-122.406896,39.201758],[-122.407837,39.201444],[-122.408307,39.200817],[-122.406739,39.200346],[-122.406582,39.199876],[-122.406896,39.199562],[-122.407523,39.199405],[-122.408150,39.198935],[-122.407209,39.198151],[-122.406268,39.197837],[-122.406111,39.197523],[-122.407994,39.196739],[-122.408307,39.196268],[-122.409405,39.195641],[-122.410503,39.195798],[-122.410817,39.195641],[-122.410817,39.195327],[-122.410346,39.195171],[-122.408307,39.194073],[-122.409091,39.193602],[-122.409719,39.193445],[-122.410189,39.192975],[-122.411287,39.192975],[-122.412071,39.192818],[-122.412542,39.192191],[-122.412542,39.191720],[-122.412856,39.191250],[-122.412856,39.190779],[-122.413640,39.190152],[-122.414110,39.190309],[-122.414424,39.190152],[-122.414581,39.189681],[-122.414424,39.189211],[-122.414110,39.189211],[-122.413483,39.189367],[-122.413326,39.189211],[-122.413483,39.188897],[-122.413326,39.188270],[-122.414110,39.187956],[-122.414110,39.187485],[-122.414738,39.186701],[-122.414738,39.186387],[-122.414110,39.186074],[-122.414110,39.186074],[-122.414738,39.186231],[-122.415051,39.186387],[-122.415208,39.187642],[-122.415992,39.189367],[-122.416620,39.189524],[-122.421796,39.189681],[-122.423834,39.189367],[-122.426344,39.189524],[-122.431833,39.189524],[-122.432147,39.189681],[-122.433088,39.189054],[-122.433715,39.188426],[-122.434029,39.187799],[-122.435754,39.179330],[-122.436225,39.178859],[-122.437323,39.178232],[-122.438107,39.177448],[-122.438734,39.175409],[-122.439519,39.173840],[-122.439989,39.165528],[-122.440303,39.164587],[-122.440930,39.164430],[-122.455359,39.161450],[-122.457869,39.160352],[-122.463201,39.159725],[-122.463672,39.159881],[-122.464299,39.159411],[-122.465240,39.158940],[-122.465868,39.159097],[-122.466025,39.158313],[-122.466338,39.158784],[-122.466966,39.158784],[-122.468377,39.158313],[-122.469004,39.157686],[-122.469789,39.157529],[-122.470102,39.157372],[-122.470259,39.157372],[-122.470416,39.157999],[-122.470730,39.158313],[-122.471828,39.158784],[-122.471200,39.159568],[-122.471043,39.160352],[-122.471357,39.160823],[-122.471984,39.161136],[-122.472612,39.160823],[-122.472612,39.160352],[-122.472769,39.160195],[-122.473553,39.160352],[-122.474023,39.160823],[-122.473710,39.159881],[-122.474023,39.159254],[-122.474180,39.159097],[-122.474964,39.159254],[-122.476062,39.158470],[-122.476533,39.158470],[-122.477788,39.158784],[-122.478572,39.159411],[-122.479042,39.159411],[-122.479356,39.158940],[-122.479356,39.158156],[-122.479513,39.157999],[-122.480768,39.159097],[-122.481395,39.160038],[-122.481395,39.160352],[-122.482179,39.161450],[-122.482650,39.162861],[-122.482179,39.163802],[-122.481395,39.164273],[-122.480924,39.164587],[-122.479983,39.164587],[-122.478572,39.166782],[-122.477003,39.167096],[-122.475435,39.170076],[-122.476062,39.172586],[-122.477317,39.173997],[-122.484532,39.175095],[-122.485943,39.174938],[-122.488923,39.176350],[-122.490178,39.176193],[-122.490962,39.175409],[-122.491903,39.175252],[-122.493942,39.178075],[-122.494256,39.179016],[-122.493628,39.181212],[-122.493628,39.183564],[-122.494256,39.184505],[-122.495354,39.185603],[-122.495824,39.187015],[-122.496765,39.188740],[-122.497706,39.190309],[-122.498490,39.191093],[-122.499432,39.191250],[-122.500216,39.191093],[-122.500529,39.189995],[-122.500843,39.189681],[-122.503509,39.190622],[-122.508371,39.190309],[-122.509783,39.191877],[-122.510881,39.193288],[-122.511979,39.195641],[-122.513861,39.195955],[-122.514488,39.197209],[-122.515272,39.200189],[-122.515900,39.203640],[-122.515586,39.206934],[-122.515116,39.208502],[-122.515272,39.209286],[-122.516527,39.209286],[-122.517625,39.208973],[-122.519821,39.209600],[-122.521703,39.210384],[-122.527192,39.209443],[-122.528133,39.209914],[-122.528133,39.211011],[-122.528761,39.211482],[-122.531898,39.210384],[-122.533780,39.210070],[-122.534564,39.210855],[-122.535034,39.211639],[-122.536446,39.211011],[-122.538328,39.209757],[-122.540053,39.207718],[-122.541465,39.206934],[-122.543817,39.207247],[-122.545386,39.207247],[-122.547425,39.206620],[-122.550091,39.206463],[-122.552130,39.206777],[-122.553228,39.206777],[-122.555424,39.206149],[-122.556992,39.205993],[-122.558090,39.206149],[-122.559501,39.205836],[-122.563422,39.204267],[-122.564834,39.204110],[-122.565932,39.204267],[-122.566873,39.204110],[-122.567187,39.203640],[-122.572362,39.204110],[-122.573460,39.204267],[-122.573774,39.205522],[-122.574401,39.206777],[-122.575970,39.206934],[-122.577852,39.208659],[-122.578479,39.210227],[-122.578793,39.210541],[-122.580518,39.211168],[-122.582086,39.211952],[-122.583027,39.212266],[-122.587733,39.212894],[-122.589301,39.213521],[-122.591497,39.212423],[-122.592124,39.212737],[-122.593222,39.213678],[-122.593536,39.214305],[-122.595732,39.214462],[-122.596986,39.213835],[-122.600594,39.214462],[-122.601691,39.214148],[-122.606240,39.215873],[-122.608122,39.215717],[-122.609063,39.216501],[-122.610318,39.216187],[-122.610475,39.216344],[-122.611259,39.217285],[-122.612043,39.218069],[-122.612513,39.219010],[-122.613298,39.219324],[-122.613768,39.219010],[-122.614239,39.219167],[-122.614239,39.219795],[-122.615023,39.220108],[-122.615807,39.220108],[-122.616278,39.220422],[-122.616434,39.221049],[-122.619571,39.221206],[-122.621767,39.222618],[-122.622081,39.223088],[-122.622865,39.223245],[-122.626159,39.222931],[-122.627727,39.223088],[-122.629295,39.222461],[-122.631021,39.222618],[-122.631805,39.222304],[-122.633373,39.222461],[-122.634314,39.223245],[-122.634942,39.223245],[-122.636667,39.221520],[-122.638078,39.219951],[-122.640117,39.218540],[-122.644509,39.216344],[-122.645920,39.216501],[-122.647175,39.216187],[-122.648587,39.215403],[-122.648587,39.214148],[-122.648744,39.213991],[-122.650155,39.213991],[-122.651096,39.214148],[-122.653135,39.215089],[-122.654233,39.215403],[-122.656429,39.214619],[-122.657840,39.214932],[-122.659722,39.215717],[-122.661605,39.216344],[-122.661918,39.216815],[-122.662389,39.216658],[-122.665369,39.217599],[-122.665839,39.219010],[-122.667251,39.219795],[-122.667408,39.220422],[-122.667721,39.220892],[-122.669290,39.220892],[-122.670388,39.221363],[-122.670231,39.222304],[-122.671172,39.224186],[-122.673524,39.225754],[-122.673838,39.225284],[-122.679798,39.224500],[-122.679641,39.226852],[-122.676504,39.229048],[-122.675877,39.230146],[-122.676191,39.230773],[-122.677602,39.231244],[-122.680425,39.233753],[-122.681680,39.234537],[-122.680896,39.238772],[-122.681994,39.239400],[-122.685758,39.240654],[-122.686856,39.241125],[-122.687326,39.242223],[-122.687483,39.243321],[-122.691404,39.247398],[-122.694855,39.248967],[-122.697678,39.249908],[-122.698619,39.250849],[-122.699560,39.251006],[-122.704736,39.253672],[-122.705834,39.254770],[-122.708813,39.255554],[-122.709911,39.255711],[-122.711480,39.256652],[-122.712421,39.256966],[-122.712264,39.257593],[-122.713362,39.259475],[-122.715087,39.260416],[-122.716185,39.260259],[-122.716969,39.260416],[-122.716185,39.261671],[-122.716499,39.262926],[-122.717126,39.263553],[-122.719008,39.264494],[-122.721831,39.264651],[-122.723243,39.265278],[-122.722929,39.265749],[-122.722929,39.266847],[-122.723243,39.267474],[-122.726380,39.270924],[-122.726536,39.271395],[-122.728575,39.273277],[-122.729673,39.273434],[-122.732810,39.271866],[-122.735006,39.271866],[-122.735790,39.272493],[-122.736731,39.272650],[-122.738456,39.273591],[-122.738456,39.274375],[-122.738927,39.275002],[-122.740182,39.275787],[-122.745357,39.277982],[-122.748180,39.279080],[-122.751160,39.281746],[-122.752101,39.282217],[-122.753199,39.283001],[-122.757120,39.284256],[-122.758061,39.285354],[-122.757591,39.285824],[-122.756964,39.286922],[-122.756964,39.287863],[-122.757277,39.288647],[-122.757120,39.288647],[-122.757120,39.289432],[-122.757748,39.291471],[-122.758532,39.292568],[-122.758218,39.293980],[-122.760100,39.295862],[-122.761982,39.297117],[-122.762610,39.298215],[-122.763394,39.299156],[-122.763551,39.299626],[-122.764178,39.300254],[-122.765276,39.300567],[-122.766060,39.301038],[-122.766531,39.302606],[-122.766217,39.303547],[-122.767001,39.303704],[-122.767785,39.304331],[-122.768570,39.305743],[-122.769354,39.308096],[-122.770452,39.309978],[-122.772177,39.310291],[-122.773902,39.311389],[-122.775000,39.311703],[-122.775471,39.313899],[-122.775471,39.315153],[-122.773589,39.318133],[-122.772804,39.318918],[-122.772961,39.321584],[-122.772804,39.323152],[-122.772491,39.323937],[-122.771079,39.324721],[-122.768256,39.325505],[-122.769040,39.326917],[-122.769040,39.328014],[-122.768570,39.328642],[-122.768256,39.331151],[-122.767942,39.331935],[-122.767472,39.331935],[-122.766844,39.332563],[-122.766217,39.333504],[-122.764806,39.335072],[-122.764492,39.336484],[-122.764649,39.337268],[-122.765433,39.337895],[-122.765747,39.338366],[-122.765747,39.339150],[-122.765590,39.341973],[-122.765276,39.342757],[-122.762610,39.343385],[-122.761198,39.344639],[-122.759473,39.344326],[-122.756964,39.344796],[-122.756022,39.345581],[-122.754140,39.345581],[-122.752415,39.346051],[-122.752101,39.346365],[-122.751788,39.348090],[-122.751317,39.348717],[-122.751160,39.349188],[-122.749592,39.350129],[-122.748180,39.353266],[-122.745828,39.356246],[-122.743789,39.356716],[-122.742377,39.357500],[-122.741750,39.358912],[-122.741593,39.360010],[-122.741593,39.361735],[-122.742221,39.365342],[-122.742691,39.366597],[-122.743475,39.368166],[-122.746612,39.369420],[-122.748024,39.369734],[-122.749906,39.369420],[-122.752258,39.370518],[-122.752729,39.371459],[-122.753199,39.372557],[-122.754768,39.374910],[-122.755552,39.375694],[-122.756964,39.376321],[-122.758846,39.376949],[-122.759943,39.378203],[-122.761512,39.377733],[-122.763237,39.377733],[-122.764178,39.377419],[-122.765903,39.376321],[-122.768099,39.373969],[-122.768727,39.373812],[-122.769511,39.373969],[-122.769824,39.374439],[-122.770765,39.374753],[-122.771079,39.374596],[-122.772491,39.374439],[-122.774216,39.374753],[-122.774216,39.374910],[-122.775628,39.376478],[-122.776725,39.376949],[-122.778921,39.379301],[-122.780019,39.379301],[-122.781744,39.379458],[-122.784724,39.381967],[-122.785038,39.382909],[-122.751160,39.383222],[-122.720577,39.383222],[-122.700030,39.382909],[-122.693443,39.383222],[-122.689208,39.383850],[-122.674309,39.384634],[-122.649998,39.384791]]]}}
,{"id":94549,"type":"Feature","properties":{},"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":{},"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":{},"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":{},"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":{},"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":{},"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":{},"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":{},"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":{},"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":95567,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-124.031292,41.910862],[-124.031762,41.910706],[-124.032076,41.910235],[-124.033331,41.909451],[-124.033488,41.908667],[-124.033801,41.908196],[-124.034899,41.907726],[-124.035370,41.907882],[-124.036311,41.909608],[-124.036624,41.909921],[-124.036781,41.910392],[-124.037252,41.911019],[-124.038350,41.911333],[-124.039761,41.912431],[-124.038977,41.912744],[-124.038193,41.912744],[-124.038193,41.912901],[-124.038350,41.913842],[-124.038193,41.914156],[-124.037879,41.915097],[-124.038820,41.915881],[-124.038663,41.916352],[-124.038977,41.917136],[-124.040075,41.918391],[-124.040389,41.919018],[-124.042114,41.919489],[-124.043212,41.920273],[-124.044623,41.920116],[-124.045251,41.919959],[-124.046035,41.919332],[-124.047446,41.919018],[-124.048074,41.918391],[-124.048858,41.918391],[-124.049485,41.917763],[-124.050270,41.917763],[-124.050583,41.917293],[-124.051367,41.917136],[-124.051838,41.916666],[-124.052152,41.916822],[-124.052465,41.917450],[-124.052622,41.918391],[-124.052779,41.918861],[-124.052936,41.919175],[-124.052936,41.918704],[-124.053563,41.916666],[-124.053406,41.916352],[-124.052309,41.915724],[-124.050740,41.915254],[-124.048858,41.913999],[-124.049015,41.913058],[-124.048858,41.912117],[-124.049172,41.911647],[-124.049956,41.911019],[-124.052465,41.910235],[-124.053720,41.910078],[-124.056073,41.909294],[-124.057798,41.908823],[-124.059523,41.908823],[-124.059523,41.907882],[-124.060778,41.907098],[-124.063287,41.907569],[-124.064542,41.907569],[-124.065169,41.907255],[-124.065797,41.906941],[-124.066581,41.905844],[-124.067052,41.906000],[-124.067365,41.907255],[-124.067993,41.908196],[-124.067993,41.901609],[-124.107987,41.901923],[-124.109555,41.887336],[-124.107360,41.887336],[-124.107673,41.886552],[-124.107046,41.885141],[-124.107203,41.883572],[-124.108301,41.882631],[-124.110339,41.883102],[-124.112535,41.882788],[-124.113006,41.882631],[-124.112849,41.882161],[-124.113163,41.881847],[-124.114731,41.881376],[-124.115672,41.881376],[-124.117554,41.879651],[-124.117554,41.879651],[-124.116299,41.879808],[-124.115515,41.879651],[-124.115045,41.879024],[-124.115202,41.878083],[-124.115045,41.877612],[-124.113947,41.877612],[-124.113319,41.876828],[-124.110967,41.876828],[-124.110653,41.876828],[-124.110967,41.876201],[-124.112378,41.875887],[-124.113006,41.875416],[-124.113947,41.875260],[-124.114417,41.874789],[-124.115358,41.874946],[-124.116143,41.874632],[-124.118025,41.874789],[-124.120691,41.874789],[-124.123985,41.874162],[-124.124926,41.875887],[-124.125710,41.876985],[-124.127592,41.878710],[-124.128690,41.879337],[-124.136689,41.881533],[-124.137159,41.879024],[-124.140610,41.880279],[-124.145001,41.882317],[-124.145942,41.883729],[-124.145942,41.884043],[-124.146256,41.884827],[-124.146883,41.886709],[-124.146413,41.886866],[-124.146413,41.887493],[-124.146570,41.888277],[-124.151589,41.893296],[-124.154412,41.895492],[-124.156607,41.896747],[-124.158803,41.899413],[-124.159431,41.900668],[-124.159274,41.901609],[-124.158489,41.902707],[-124.158176,41.903961],[-124.158019,41.904589],[-124.158019,41.905844],[-124.158489,41.907255],[-124.159274,41.908196],[-124.160528,41.909294],[-124.165861,41.911019],[-124.168527,41.911960],[-124.172605,41.913215],[-124.176369,41.913842],[-124.180604,41.913999],[-124.183427,41.913529],[-124.188917,41.913058],[-124.192210,41.913215],[-124.194563,41.913529],[-124.196131,41.914470],[-124.197700,41.916038],[-124.198484,41.917607],[-124.198954,41.919175],[-124.198797,41.921528],[-124.199268,41.923096],[-124.200052,41.924351],[-124.201621,41.929840],[-124.202248,41.933604],[-124.202718,41.935173],[-124.203032,41.935957],[-124.203816,41.936584],[-124.230009,41.936584],[-124.222324,41.956346],[-124.219030,41.990067],[-124.217775,41.998379],[-124.211658,41.998536],[-124.141551,41.997281],[-124.121318,41.996968],[-124.104536,41.997125],[-124.102811,41.996968],[-124.102497,41.996811],[-124.102027,41.996654],[-124.101556,41.996811],[-124.100302,41.996654],[-124.087911,41.996811],[-124.087441,41.996654],[-124.057641,41.996340],[-124.001179,41.996184],[-123.967301,41.996184],[-123.964792,41.993517],[-123.965576,41.992106],[-123.965889,41.991008],[-123.965889,41.990067],[-123.965576,41.989283],[-123.965576,41.988812],[-123.966046,41.988185],[-123.967458,41.986930],[-123.967615,41.986459],[-123.966203,41.985832],[-123.964948,41.985675],[-123.962909,41.985205],[-123.962439,41.985048],[-123.961812,41.984107],[-123.960086,41.982852],[-123.959773,41.982382],[-123.959616,41.981911],[-123.960714,41.981441],[-123.961341,41.980656],[-123.961812,41.980970],[-123.961498,41.981441],[-123.961812,41.982068],[-123.962439,41.982538],[-123.963066,41.982695],[-123.964007,41.982695],[-123.965105,41.982225],[-123.965733,41.981754],[-123.965889,41.981127],[-123.966360,41.981284],[-123.966517,41.981441],[-123.965733,41.983166],[-123.965889,41.983480],[-123.967458,41.984107],[-123.968242,41.983793],[-123.967772,41.983480],[-123.967144,41.983636],[-123.967301,41.983009],[-123.967772,41.983166],[-123.969497,41.983323],[-123.970438,41.984107],[-123.970595,41.985205],[-123.971222,41.985518],[-123.971379,41.985205],[-123.971693,41.985205],[-123.972477,41.986303],[-123.972634,41.986146],[-123.972790,41.985518],[-123.972477,41.984421],[-123.972947,41.984577],[-123.973888,41.985832],[-123.974359,41.985832],[-123.973731,41.982538],[-123.974829,41.983009],[-123.977496,41.984421],[-123.977809,41.984264],[-123.977966,41.983793],[-123.977966,41.983166],[-123.978123,41.982695],[-123.978907,41.982382],[-123.979378,41.982538],[-123.980319,41.983323],[-123.980789,41.984577],[-123.981417,41.985048],[-123.983299,41.984891],[-123.983612,41.984421],[-123.984397,41.984264],[-123.987063,41.986146],[-123.989729,41.985989],[-123.992082,41.986459],[-123.992552,41.986773],[-123.992866,41.987087],[-123.994905,41.990537],[-123.997414,41.993831],[-123.997571,41.994302],[-123.998042,41.994615],[-123.999140,41.994458],[-123.999767,41.994615],[-124.002120,41.994772],[-124.003374,41.994302],[-124.004786,41.993047],[-124.005570,41.992106],[-124.007295,41.992263],[-124.008550,41.991792],[-124.010118,41.991635],[-124.010589,41.991165],[-124.010432,41.990694],[-124.010432,41.990537],[-124.011373,41.990537],[-124.012314,41.990067],[-124.013412,41.990067],[-124.016078,41.990067],[-124.016863,41.989596],[-124.017960,41.989439],[-124.017804,41.989283],[-124.017333,41.988812],[-124.017333,41.988185],[-124.017490,41.987871],[-124.018117,41.987557],[-124.018588,41.986303],[-124.018902,41.985989],[-124.020156,41.985518],[-124.020627,41.985048],[-124.021881,41.984891],[-124.024077,41.984421],[-124.025332,41.984577],[-124.027528,41.982695],[-124.029253,41.980813],[-124.029410,41.980500],[-124.029410,41.979715],[-124.028939,41.978774],[-124.027998,41.977833],[-124.027841,41.977206],[-124.027214,41.976579],[-124.026273,41.974383],[-124.026116,41.973755],[-124.026430,41.972658],[-124.026900,41.972030],[-124.027685,41.968423],[-124.029253,41.967011],[-124.030978,41.966854],[-124.031762,41.965129],[-124.032703,41.964816],[-124.033174,41.964345],[-124.033174,41.963404],[-124.032390,41.962933],[-124.031762,41.962306],[-124.031606,41.960110],[-124.030978,41.958699],[-124.030821,41.957601],[-124.030508,41.956660],[-124.030351,41.956189],[-124.028469,41.955248],[-124.027685,41.953366],[-124.026587,41.952425],[-124.025332,41.951641],[-124.024077,41.950386],[-124.022823,41.949602],[-124.022352,41.948347],[-124.021725,41.947720],[-124.021097,41.947406],[-124.020156,41.947249],[-124.019529,41.947877],[-124.018117,41.946622],[-124.016863,41.946151],[-124.015765,41.945054],[-124.014196,41.944740],[-124.013569,41.944583],[-124.013412,41.944269],[-124.013255,41.943642],[-124.013412,41.942701],[-124.014039,41.941133],[-124.015294,41.938937],[-124.015765,41.938466],[-124.016078,41.937682],[-124.016392,41.937368],[-124.016549,41.935486],[-124.016706,41.935016],[-124.017333,41.934388],[-124.017647,41.933918],[-124.018902,41.932977],[-124.019372,41.932193],[-124.019529,41.931722],[-124.019529,41.930154],[-124.019215,41.929370],[-124.019372,41.927958],[-124.019686,41.927174],[-124.020470,41.925605],[-124.021568,41.922312],[-124.021411,41.922155],[-124.020784,41.920587],[-124.019686,41.920116],[-124.019843,41.918704],[-124.020627,41.917607],[-124.022038,41.916509],[-124.023450,41.916352],[-124.024391,41.915881],[-124.025802,41.915568],[-124.025959,41.914783],[-124.027371,41.913999],[-124.026744,41.913372],[-124.026587,41.913058],[-124.026744,41.912901],[-124.027528,41.912588],[-124.028939,41.911647],[-124.031292,41.910862]]]}}
,{"id":93608,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-120.485287,36.531236],[-120.479013,36.531079],[-120.479013,36.560095],[-120.460820,36.559938],[-120.460820,36.563545],[-120.444195,36.555389],[-120.441842,36.554292],[-120.441215,36.553821],[-120.434000,36.550214],[-120.434000,36.558056],[-120.434000,36.559781],[-120.434157,36.559781],[-120.434000,36.574367],[-120.433843,36.581895],[-120.434157,36.581895],[-120.433843,36.588953],[-120.433843,36.592561],[-120.397927,36.592561],[-120.397770,36.603383],[-120.388516,36.603383],[-120.388673,36.592561],[-120.379733,36.592404],[-120.379733,36.588953],[-120.370166,36.588796],[-120.370166,36.581582],[-120.379890,36.581582],[-120.379890,36.566839],[-120.370323,36.566839],[-120.370323,36.552253],[-120.388987,36.552409],[-120.388987,36.537980],[-120.370323,36.537823],[-120.370323,36.530452],[-120.369852,36.530609],[-120.361226,36.530609],[-120.361226,36.545038],[-120.352129,36.544881],[-120.352129,36.552096],[-120.343189,36.552096],[-120.343033,36.559310],[-120.324839,36.559154],[-120.324839,36.552096],[-120.316056,36.552096],[-120.316056,36.544881],[-120.343189,36.544881],[-120.343189,36.515866],[-120.298176,36.515866],[-120.298176,36.508494],[-120.289236,36.508651],[-120.289236,36.515866],[-120.280140,36.515866],[-120.280140,36.508651],[-120.271043,36.508651],[-120.271043,36.501280],[-120.267436,36.501280],[-120.265240,36.500495],[-120.264142,36.499868],[-120.252536,36.501593],[-120.252536,36.508965],[-120.243282,36.508965],[-120.243282,36.516023],[-120.234342,36.516023],[-120.234499,36.509122],[-120.224932,36.509122],[-120.225245,36.487007],[-120.211914,36.487007],[-120.211914,36.472421],[-120.211757,36.457835],[-120.193877,36.457835],[-120.193877,36.443562],[-120.211600,36.443405],[-120.211600,36.429133],[-120.220540,36.429133],[-120.229637,36.429133],[-120.247674,36.428976],[-120.247830,36.443249],[-120.293628,36.442778],[-120.293314,36.426153],[-120.300372,36.437289],[-120.300686,36.438700],[-120.300843,36.449365],[-120.301156,36.450463],[-120.301784,36.451561],[-120.303509,36.454384],[-120.304136,36.455012],[-120.304136,36.455325],[-120.304920,36.457364],[-120.305548,36.457364],[-120.307116,36.463795],[-120.308057,36.465363],[-120.315586,36.472891],[-120.316056,36.473676],[-120.318566,36.480420],[-120.319663,36.481361],[-120.320918,36.482145],[-120.320448,36.471794],[-120.320448,36.457364],[-120.338484,36.457364],[-120.340837,36.441837],[-120.339896,36.441053],[-120.339112,36.440112],[-120.338641,36.439171],[-120.338484,36.438073],[-120.338327,36.428819],[-120.338014,36.428662],[-120.302411,36.428662],[-120.302254,36.399490],[-120.320604,36.399176],[-120.338014,36.399333],[-120.338641,36.399647],[-120.339425,36.399176],[-120.352600,36.399333],[-120.356364,36.399490],[-120.361226,36.399176],[-120.394006,36.435877],[-120.394476,36.433995],[-120.394319,36.433211],[-120.393535,36.431642],[-120.393378,36.430701],[-120.393378,36.415488],[-120.393222,36.414390],[-120.392908,36.413763],[-120.398397,36.412822],[-120.401064,36.411253],[-120.403259,36.410939],[-120.404200,36.410312],[-120.404985,36.409998],[-120.405769,36.409371],[-120.407180,36.408901],[-120.408435,36.408744],[-120.409062,36.408430],[-120.409219,36.408273],[-120.408749,36.407646],[-120.408749,36.407332],[-120.408906,36.407175],[-120.409847,36.407018],[-120.410474,36.407489],[-120.411572,36.407489],[-120.412042,36.407018],[-120.412983,36.405450],[-120.413454,36.404980],[-120.414866,36.404666],[-120.416277,36.404666],[-120.416904,36.404352],[-120.416434,36.403725],[-120.416277,36.403254],[-120.416434,36.402784],[-120.417061,36.402156],[-120.417218,36.402156],[-120.417846,36.402784],[-120.418630,36.402627],[-120.418787,36.401215],[-120.418943,36.400745],[-120.420982,36.400274],[-120.422708,36.400117],[-120.423021,36.399961],[-120.423178,36.399647],[-120.422864,36.398706],[-120.423178,36.397765],[-120.423021,36.397451],[-120.423178,36.396981],[-120.423492,36.396824],[-120.423962,36.396824],[-120.424903,36.397451],[-120.425844,36.397451],[-120.426315,36.396981],[-120.426785,36.395883],[-120.427726,36.395412],[-120.428197,36.395412],[-120.430550,36.396981],[-120.431491,36.398392],[-120.433059,36.399804],[-120.434314,36.401372],[-120.434627,36.401843],[-120.435412,36.402000],[-120.436510,36.402156],[-120.437764,36.403097],[-120.438862,36.403254],[-120.439646,36.402941],[-120.440431,36.403097],[-120.441685,36.403568],[-120.441842,36.403882],[-120.441215,36.404038],[-120.441058,36.404352],[-120.441215,36.405450],[-120.442469,36.406234],[-120.442469,36.405764],[-120.443097,36.405293],[-120.442626,36.441523],[-120.441372,36.441994],[-120.440117,36.441680],[-120.439333,36.441366],[-120.439019,36.441366],[-120.438078,36.441994],[-120.437764,36.442621],[-120.435725,36.442464],[-120.434157,36.444033],[-120.433843,36.444503],[-120.432589,36.444974],[-120.432275,36.444817],[-120.432432,36.444346],[-120.433059,36.443562],[-120.432902,36.442778],[-120.432589,36.442308],[-120.430079,36.440269],[-120.429452,36.439328],[-120.428667,36.438857],[-120.425217,36.439014],[-120.432432,36.447013],[-120.432432,36.447170],[-120.432589,36.447797],[-120.434627,36.449209],[-120.435725,36.450934],[-120.436823,36.451718],[-120.437137,36.453130],[-120.438235,36.454541],[-120.439019,36.455168],[-120.441372,36.456737],[-120.442156,36.457835],[-120.442469,36.457835],[-120.442313,36.473362],[-120.442626,36.474146],[-120.442313,36.474303],[-120.442313,36.474460],[-120.440274,36.475558],[-120.440274,36.476969],[-120.439176,36.477440],[-120.438078,36.477597],[-120.436666,36.478538],[-120.438235,36.479636],[-120.441685,36.480890],[-120.442469,36.480890],[-120.441999,36.487164],[-120.446547,36.492496],[-120.450468,36.496574],[-120.473681,36.519630],[-120.475876,36.521355],[-120.488267,36.530766],[-120.486542,36.531236],[-120.485287,36.531236]]]}}
,{"id":93612,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-119.691361,36.790023],[-119.691518,36.789709],[-119.691518,36.789866],[-119.691518,36.784376],[-119.691674,36.784063],[-119.692302,36.784063],[-119.692302,36.783122],[-119.699987,36.782965],[-119.700144,36.785631],[-119.700301,36.785474],[-119.700301,36.786102],[-119.700614,36.786102],[-119.700614,36.789552],[-119.700301,36.789552],[-119.700301,36.793160],[-119.699830,36.793160],[-119.699830,36.790807],[-119.699673,36.790650],[-119.698575,36.790650],[-119.698419,36.790336],[-119.697321,36.790336],[-119.697477,36.789866],[-119.695125,36.789866],[-119.695125,36.790023],[-119.694184,36.790023],[-119.694184,36.790650],[-119.691518,36.790650],[-119.691361,36.790180],[-119.691361,36.790023]]],[[[-119.727277,36.794101],[-119.731669,36.794257],[-119.731826,36.808530],[-119.733394,36.808530],[-119.730257,36.811510],[-119.727277,36.814176],[-119.727277,36.819979],[-119.727591,36.820920],[-119.729002,36.822802],[-119.729316,36.824214],[-119.729316,36.832370],[-119.729473,36.832526],[-119.729473,36.837545],[-119.708456,36.837389],[-119.710966,36.839741],[-119.710809,36.839741],[-119.708613,36.837859],[-119.707829,36.837545],[-119.707358,36.837702],[-119.707045,36.837859],[-119.707045,36.837389],[-119.703281,36.837389],[-119.699830,36.837389],[-119.698889,36.839271],[-119.697634,36.840369],[-119.695282,36.840682],[-119.692929,36.840682],[-119.692615,36.839741],[-119.691361,36.838800],[-119.690890,36.838016],[-119.690890,36.825782],[-119.690733,36.825626],[-119.690890,36.824998],[-119.690890,36.822646],[-119.691988,36.822646],[-119.691988,36.821077],[-119.691518,36.821077],[-119.691361,36.819822],[-119.690890,36.819822],[-119.690890,36.811667],[-119.692615,36.811667],[-119.693243,36.811980],[-119.693870,36.811667],[-119.693870,36.811196],[-119.693556,36.810883],[-119.693713,36.810255],[-119.695439,36.810098],[-119.695439,36.808530],[-119.691204,36.808373],[-119.690890,36.808530],[-119.690890,36.808059],[-119.691204,36.807589],[-119.690733,36.807118],[-119.690733,36.806334],[-119.690263,36.806177],[-119.690576,36.802099],[-119.690576,36.801158],[-119.695752,36.801158],[-119.695752,36.798022],[-119.696223,36.797394],[-119.695752,36.797081],[-119.695125,36.797081],[-119.695125,36.796924],[-119.695595,36.796924],[-119.696850,36.796140],[-119.699830,36.794885],[-119.699830,36.799747],[-119.700457,36.800217],[-119.700457,36.801158],[-119.702183,36.801315],[-119.709084,36.801315],[-119.709084,36.786415],[-119.718180,36.786729],[-119.718180,36.794101],[-119.727277,36.794101]]]]}}
,{"id":93630,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-120.206111,36.669569],[-120.227598,36.683685],[-120.225559,36.686822],[-120.226030,36.686979],[-120.226500,36.686508],[-120.226971,36.686508],[-120.228853,36.686822],[-120.229323,36.687135],[-120.232931,36.688390],[-120.234970,36.688861],[-120.238106,36.689018],[-120.242341,36.688861],[-120.260378,36.685096],[-120.261632,36.685096],[-120.262103,36.683371],[-120.262573,36.683058],[-120.263358,36.682744],[-120.265710,36.682117],[-120.266338,36.681960],[-120.266808,36.681646],[-120.267749,36.679450],[-120.267749,36.677725],[-120.268377,36.677254],[-120.269788,36.677254],[-120.270729,36.678509],[-120.271984,36.679607],[-120.272925,36.680078],[-120.273552,36.680548],[-120.274180,36.681646],[-120.274807,36.682117],[-120.276062,36.682744],[-120.277160,36.682744],[-120.279199,36.682587],[-120.280767,36.682587],[-120.280924,36.683214],[-120.280610,36.683685],[-120.280610,36.684469],[-120.280924,36.684940],[-120.281237,36.685096],[-120.282022,36.685096],[-120.283590,36.684940],[-120.283747,36.685096],[-120.284061,36.686038],[-120.283276,36.687292],[-120.283276,36.687449],[-120.287354,36.687606],[-120.288138,36.689645],[-120.288766,36.689959],[-120.290805,36.690429],[-120.290962,36.689959],[-120.291432,36.689802],[-120.293942,36.690272],[-120.294255,36.690429],[-120.294255,36.690743],[-120.294569,36.691527],[-120.295824,36.691997],[-120.296608,36.691997],[-120.297863,36.691684],[-120.298804,36.691841],[-120.299431,36.691527],[-120.300058,36.691684],[-120.300843,36.691213],[-120.305705,36.693409],[-120.310096,36.693409],[-120.313547,36.696860],[-120.314174,36.697330],[-120.314958,36.697644],[-120.315742,36.699212],[-120.316056,36.700310],[-120.319350,36.705015],[-120.319350,36.706584],[-120.320134,36.707368],[-120.320918,36.707995],[-120.322957,36.707838],[-120.324682,36.708152],[-120.325153,36.708466],[-120.326564,36.710034],[-120.328917,36.710975],[-120.329858,36.711603],[-120.332211,36.711759],[-120.332524,36.712073],[-120.333622,36.712700],[-120.333936,36.714582],[-120.334720,36.715367],[-120.334720,36.715994],[-120.334406,36.716778],[-120.332995,36.717876],[-120.332995,36.718190],[-120.333465,36.718504],[-120.333622,36.718974],[-120.333465,36.719131],[-120.332995,36.719131],[-120.333465,36.719288],[-120.333465,36.719445],[-120.332838,36.719445],[-120.332838,36.719601],[-120.331583,36.719601],[-120.330642,36.719131],[-120.314645,36.719288],[-120.314645,36.719915],[-120.314331,36.720072],[-120.308998,36.724777],[-120.309155,36.725561],[-120.308528,36.728384],[-120.337700,36.732933],[-120.340523,36.732462],[-120.340837,36.732619],[-120.340994,36.732933],[-120.337386,36.733247],[-120.333309,36.732462],[-120.321545,36.730737],[-120.321232,36.733090],[-120.319663,36.734344],[-120.291589,36.734344],[-120.291589,36.733874],[-120.291432,36.732776],[-120.292373,36.731051],[-120.292687,36.728541],[-120.292059,36.726032],[-120.269004,36.722895],[-120.269004,36.734344],[-120.259907,36.734344],[-120.259750,36.748931],[-120.268220,36.749087],[-120.274023,36.749087],[-120.274807,36.748774],[-120.277944,36.748774],[-120.277944,36.756773],[-120.273709,36.756773],[-120.273709,36.774182],[-120.273395,36.774182],[-120.272611,36.774025],[-120.270259,36.771672],[-120.269474,36.771359],[-120.267749,36.771986],[-120.266965,36.772143],[-120.265240,36.771986],[-120.264299,36.772457],[-120.262260,36.772613],[-120.260535,36.772300],[-120.260064,36.771829],[-120.259594,36.771045],[-120.257555,36.769633],[-120.255986,36.769633],[-120.254731,36.770104],[-120.254261,36.770731],[-120.252849,36.773711],[-120.252379,36.774025],[-120.250497,36.774809],[-120.248772,36.775123],[-120.248615,36.774496],[-120.248144,36.774182],[-120.246889,36.773241],[-120.246576,36.772613],[-120.246262,36.772300],[-120.245635,36.771359],[-120.244223,36.771045],[-120.242812,36.771045],[-120.241243,36.770575],[-120.239832,36.770104],[-120.237009,36.769477],[-120.235754,36.769163],[-120.234656,36.768379],[-120.234029,36.768222],[-120.230578,36.768849],[-120.229480,36.769320],[-120.229166,36.769633],[-120.229166,36.770104],[-120.229637,36.771045],[-120.231205,36.772927],[-120.231676,36.775750],[-120.232460,36.776848],[-120.233558,36.778730],[-120.233558,36.780142],[-120.233244,36.781083],[-120.231676,36.782181],[-120.230735,36.782651],[-120.229794,36.782494],[-120.229323,36.782338],[-120.225716,36.782181],[-120.222736,36.782808],[-120.222109,36.783122],[-120.221795,36.783435],[-120.221168,36.784533],[-120.221324,36.786572],[-120.221011,36.787200],[-120.220697,36.787356],[-120.218972,36.787513],[-120.218501,36.788297],[-120.218031,36.788611],[-120.217560,36.788611],[-120.215992,36.788454],[-120.215051,36.788611],[-120.214423,36.788925],[-120.214110,36.789395],[-120.213639,36.788925],[-120.211914,36.788611],[-120.210346,36.788611],[-120.208464,36.788925],[-120.207052,36.790964],[-120.205170,36.790650],[-120.204229,36.790807],[-120.202190,36.790023],[-120.201092,36.786415],[-120.201406,36.784533],[-120.201876,36.782965],[-120.199680,36.780769],[-120.198896,36.780455],[-120.196073,36.780142],[-120.194975,36.779514],[-120.193721,36.777476],[-120.192623,36.776378],[-120.191211,36.776064],[-120.189643,36.776221],[-120.188858,36.776378],[-120.188545,36.777162],[-120.187917,36.777632],[-120.187290,36.777946],[-120.186976,36.778260],[-120.186349,36.778417],[-120.186349,36.779201],[-120.185565,36.780142],[-120.184467,36.780299],[-120.183683,36.780769],[-120.182899,36.781553],[-120.181487,36.783279],[-120.181487,36.783592],[-120.181801,36.783749],[-120.182428,36.784847],[-120.181958,36.788141],[-120.181330,36.789552],[-120.179762,36.791434],[-120.176468,36.793160],[-120.175998,36.794101],[-120.174429,36.796140],[-120.173802,36.801002],[-120.173174,36.802413],[-120.172704,36.802884],[-120.172233,36.803040],[-120.170038,36.803354],[-120.169567,36.803511],[-120.168469,36.803511],[-120.166901,36.802727],[-120.165646,36.801158],[-120.164235,36.800531],[-120.163450,36.799119],[-120.162823,36.798649],[-120.160000,36.798022],[-120.158745,36.797865],[-120.156863,36.798178],[-120.155295,36.798806],[-120.150119,36.801943],[-120.149492,36.802884],[-120.148864,36.803197],[-120.148394,36.803354],[-120.147453,36.803040],[-120.143532,36.804609],[-120.142277,36.805864],[-120.140552,36.806334],[-120.140238,36.806491],[-120.139454,36.807589],[-120.136631,36.809314],[-120.134435,36.809785],[-120.132082,36.809785],[-120.131455,36.809941],[-120.130828,36.810412],[-120.129730,36.811510],[-120.128161,36.811980],[-120.127534,36.811980],[-120.126907,36.811667],[-120.126436,36.811510],[-120.125652,36.811667],[-120.123770,36.811667],[-120.123142,36.812137],[-120.122986,36.812608],[-120.116869,36.813862],[-120.115300,36.813862],[-120.114516,36.814019],[-120.113261,36.813862],[-120.112320,36.813862],[-120.111066,36.812765],[-120.109654,36.812608],[-120.107929,36.812765],[-120.106360,36.813235],[-120.104322,36.813392],[-120.101812,36.814176],[-120.099930,36.815117],[-120.098675,36.814960],[-120.098205,36.815117],[-120.097734,36.815588],[-120.097421,36.816529],[-120.097107,36.816842],[-120.095068,36.817940],[-120.093656,36.819352],[-120.093343,36.819979],[-120.091617,36.821234],[-120.090520,36.821861],[-120.088637,36.822489],[-120.083619,36.823900],[-120.082050,36.824841],[-120.079384,36.825312],[-120.077031,36.824841],[-120.075777,36.824371],[-120.075306,36.823116],[-120.074051,36.821234],[-120.073738,36.820293],[-120.072640,36.819195],[-120.071385,36.818725],[-120.070758,36.818568],[-120.067778,36.819195],[-120.066052,36.819195],[-120.064798,36.819822],[-120.062602,36.820450],[-120.061190,36.821391],[-120.059779,36.822018],[-120.059151,36.822646],[-120.057426,36.822959],[-120.056015,36.822802],[-120.054760,36.822489],[-120.053192,36.822489],[-120.052250,36.822018],[-120.050839,36.821861],[-120.050055,36.821391],[-120.047859,36.818881],[-120.046918,36.818097],[-120.042370,36.815431],[-120.040801,36.815274],[-120.038919,36.815588],[-120.037978,36.815745],[-120.037507,36.815588],[-120.035469,36.815901],[-120.034684,36.815745],[-120.033586,36.815274],[-120.032175,36.815274],[-120.031077,36.814804],[-120.027783,36.814490],[-120.025274,36.815431],[-120.024960,36.815745],[-120.024647,36.816529],[-120.024647,36.807746],[-120.021353,36.807746],[-120.021353,36.803040],[-120.021353,36.802099],[-120.022608,36.802099],[-120.022608,36.801158],[-120.024647,36.801002],[-120.024647,36.800531],[-120.014609,36.800374],[-120.014609,36.799747],[-120.015550,36.799747],[-120.015550,36.793160],[-120.011001,36.793160],[-120.010688,36.764144],[-120.006296,36.764144],[-120.006139,36.756773],[-120.001748,36.756773],[-120.001591,36.750028],[-120.001591,36.749558],[-120.006139,36.749558],[-120.006139,36.742343],[-120.005983,36.734972],[-120.006610,36.705799],[-120.004414,36.705799],[-120.005042,36.691370],[-120.024803,36.691370],[-120.024647,36.676784],[-120.016020,36.676784],[-120.015707,36.669569],[-120.024647,36.669412],[-120.024490,36.662198],[-120.042997,36.662041],[-120.043154,36.625027],[-120.043154,36.618753],[-120.043311,36.618126],[-120.043467,36.606676],[-120.043311,36.603853],[-120.052407,36.596482],[-120.079698,36.574367],[-120.093656,36.563545],[-120.094754,36.565427],[-120.094911,36.565427],[-120.094754,36.565114],[-120.095382,36.565114],[-120.098675,36.570760],[-120.101185,36.573269],[-120.101028,36.573426],[-120.101969,36.574524],[-120.101498,36.574367],[-120.101185,36.574995],[-120.100714,36.574995],[-120.100244,36.574838],[-120.098205,36.575151],[-120.097734,36.575622],[-120.097421,36.575622],[-120.097421,36.575779],[-120.097891,36.576406],[-120.098048,36.576406],[-120.106674,36.585189],[-120.106674,36.585346],[-120.106674,36.594286],[-120.088481,36.594129],[-120.088481,36.603539],[-120.097891,36.603539],[-120.097891,36.610754],[-120.073267,36.610754],[-120.073424,36.614048],[-120.070601,36.614361],[-120.070601,36.615930],[-120.064641,36.616087],[-120.064641,36.619851],[-120.066837,36.619694],[-120.066837,36.622517],[-120.069503,36.622674],[-120.069503,36.622988],[-120.069189,36.623615],[-120.069032,36.625340],[-120.070601,36.625340],[-120.070444,36.632869],[-120.079384,36.632869],[-120.079384,36.639926],[-120.088324,36.639770],[-120.088324,36.654356],[-120.108556,36.654356],[-120.108870,36.642122],[-120.111222,36.642122],[-120.111066,36.641024],[-120.110909,36.640867],[-120.108870,36.640711],[-120.108870,36.635221],[-120.106517,36.635221],[-120.106517,36.626281],[-120.115300,36.626281],[-120.115457,36.617969],[-120.124397,36.617969],[-120.124397,36.632555],[-120.133494,36.632712],[-120.133494,36.639926],[-120.151374,36.639926],[-120.151374,36.647141],[-120.160627,36.647141],[-120.160627,36.661727],[-120.187604,36.661727],[-120.188231,36.661884],[-120.196857,36.667687],[-120.196857,36.676157],[-120.205954,36.676157],[-120.206111,36.669569]],[[-120.226030,36.686979],[-120.224304,36.689959],[-120.223677,36.712544],[-120.241714,36.712700],[-120.241871,36.704858],[-120.242341,36.689488],[-120.236852,36.689802],[-120.234813,36.689645],[-120.231519,36.688861],[-120.228069,36.687606],[-120.228069,36.687292],[-120.227128,36.687135],[-120.226187,36.687135],[-120.226030,36.686979]]]}}
,{"id":93606,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-120.021353,36.803040],[-120.021353,36.807746],[-120.018059,36.807746],[-120.018216,36.806805],[-120.019785,36.806805],[-120.019941,36.804923],[-120.018216,36.804923],[-120.018216,36.803982],[-120.016491,36.803982],[-120.016491,36.805864],[-120.014609,36.805864],[-120.014609,36.800374],[-120.024647,36.800531],[-120.024647,36.801002],[-120.022608,36.801158],[-120.022608,36.802099],[-120.021353,36.802099],[-120.021353,36.803040]]]}}
,{"id":93646,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-119.304592,36.718660],[-119.267892,36.718817],[-119.268833,36.661100],[-119.250953,36.661257],[-119.232446,36.660629],[-119.214409,36.659845],[-119.214409,36.631143],[-119.232602,36.631143],[-119.232602,36.612323],[-119.232916,36.603539],[-119.232916,36.594913],[-119.257226,36.595227],[-119.286085,36.594913],[-119.286869,36.595697],[-119.285928,36.597266],[-119.285615,36.597423],[-119.284987,36.598050],[-119.284673,36.598364],[-119.284203,36.598521],[-119.283889,36.598834],[-119.283732,36.599148],[-119.284203,36.599932],[-119.284203,36.600403],[-119.283732,36.601187],[-119.283576,36.602285],[-119.282791,36.602755],[-119.282164,36.602755],[-119.282007,36.603226],[-119.282164,36.603696],[-119.284046,36.603383],[-119.285144,36.602442],[-119.285615,36.598521],[-119.286085,36.598521],[-119.286869,36.598050],[-119.286869,36.598207],[-119.290947,36.598207],[-119.293927,36.600246],[-119.295652,36.601187],[-119.297221,36.602598],[-119.297848,36.603226],[-119.298005,36.603696],[-119.298005,36.610127],[-119.300358,36.613891],[-119.303965,36.616714],[-119.303965,36.619851],[-119.304749,36.621106],[-119.304906,36.588169],[-119.340822,36.588640],[-119.340822,36.589110],[-119.340666,36.603069],[-119.340509,36.613107],[-119.341293,36.615616],[-119.345371,36.620321],[-119.345684,36.622831],[-119.346939,36.623145],[-119.348664,36.624399],[-119.349919,36.628007],[-119.350390,36.628320],[-119.354311,36.629261],[-119.355879,36.629889],[-119.356193,36.630673],[-119.355409,36.632398],[-119.355565,36.634280],[-119.355252,36.634908],[-119.355252,36.635064],[-119.358232,36.636319],[-119.359173,36.637574],[-119.359016,36.638829],[-119.359486,36.639770],[-119.349292,36.639613],[-119.349292,36.639770],[-119.349292,36.646043],[-119.350233,36.646827],[-119.358545,36.646984],[-119.358545,36.661414],[-119.322629,36.660786],[-119.322315,36.675372],[-119.322315,36.685881],[-119.322158,36.686508],[-119.322472,36.704388],[-119.304435,36.704231],[-119.304592,36.718660]]]}}
,{"id":93664,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-119.066979,37.004737],[-119.065411,37.005051],[-119.064783,37.004737],[-119.064313,37.004737],[-119.063372,37.005678],[-119.063842,37.006933],[-119.064313,37.007090],[-119.064783,37.007874],[-119.064626,37.008345],[-119.064783,37.008658],[-119.064470,37.008972],[-119.063842,37.009286],[-119.063685,37.009756],[-119.063999,37.010070],[-119.063999,37.010384],[-119.065411,37.010854],[-119.064626,37.011795],[-119.064470,37.012736],[-119.063685,37.013363],[-119.063528,37.014305],[-119.063058,37.014461],[-119.062431,37.015246],[-119.061646,37.015402],[-119.061019,37.015716],[-119.060235,37.015873],[-119.059294,37.016187],[-119.058353,37.016030],[-119.056157,37.016500],[-119.054902,37.016814],[-119.054432,37.017285],[-119.054118,37.017441],[-119.053804,37.018069],[-119.051609,37.019167],[-119.051138,37.019794],[-119.051295,37.020735],[-119.051138,37.021049],[-119.051295,37.021362],[-119.051295,37.021833],[-119.050668,37.021990],[-119.050040,37.022774],[-119.048942,37.023558],[-119.048942,37.025127],[-119.048315,37.025754],[-119.048315,37.026224],[-119.048158,37.026381],[-119.048629,37.027009],[-119.048315,37.027793],[-119.047688,37.029675],[-119.047688,37.030145],[-119.048001,37.030930],[-119.047060,37.032184],[-119.046433,37.032655],[-119.046590,37.033753],[-119.045962,37.034694],[-119.045021,37.035164],[-119.044237,37.035792],[-119.023691,37.036733],[-119.005027,37.034537],[-118.954524,37.034537],[-118.954838,37.033596],[-118.955622,37.033125],[-118.955779,37.032655],[-118.955779,37.032027],[-118.956093,37.031871],[-118.956250,37.031400],[-118.956720,37.031086],[-118.956563,37.029518],[-118.956877,37.028891],[-118.957034,37.028891],[-118.957975,37.029204],[-118.958445,37.029204],[-118.959543,37.029675],[-118.959857,37.029361],[-118.960484,37.029204],[-118.960798,37.028420],[-118.961425,37.028106],[-118.962053,37.028106],[-118.962994,37.027322],[-118.965974,37.028420],[-118.966915,37.028106],[-118.968797,37.028734],[-118.969424,37.028106],[-118.970365,37.027009],[-118.971306,37.024499],[-118.971463,37.024029],[-118.971306,37.023558],[-118.971777,37.022931],[-118.971777,37.021676],[-118.972091,37.020892],[-118.971934,37.020421],[-118.971934,37.019480],[-118.972247,37.019323],[-118.972875,37.019323],[-118.973345,37.018539],[-118.974286,37.016343],[-118.973816,37.015716],[-118.973816,37.015402],[-118.973659,37.014932],[-118.973032,37.014775],[-118.971620,37.013050],[-118.971463,37.012109],[-118.970522,37.011011],[-118.970365,37.010384],[-118.969895,37.009599],[-118.969895,37.009286],[-118.970052,37.009129],[-118.970679,37.008815],[-118.971934,37.009286],[-118.972875,37.009913],[-118.974286,37.010070],[-118.975698,37.009442],[-118.975698,37.009286],[-118.975384,37.008815],[-118.975541,37.008658],[-118.976482,37.008815],[-118.976953,37.008658],[-118.975698,37.008188],[-118.974600,37.008031],[-118.972091,37.006306],[-118.971620,37.006776],[-118.971306,37.006776],[-118.970836,37.006149],[-118.970052,37.005678],[-118.970052,37.005678],[-118.970679,37.005992],[-118.971463,37.005678],[-118.972875,37.006149],[-118.976639,37.007874],[-118.979305,37.009756],[-118.979933,37.010070],[-118.980089,37.009756],[-118.980560,37.009442],[-118.981971,37.008972],[-118.982128,37.008031],[-118.982756,37.006463],[-118.986990,37.003796],[-118.987304,37.003796],[-118.987147,37.004267],[-118.987304,37.004580],[-118.987775,37.004580],[-118.990911,37.002071],[-118.991068,37.001287],[-118.992009,37.000503],[-118.992637,36.999718],[-118.993578,36.997679],[-118.993891,36.996425],[-118.994362,36.995170],[-118.994362,36.994543],[-118.993891,36.993602],[-118.992637,36.992347],[-118.992480,36.991720],[-118.992793,36.989837],[-118.992637,36.989053],[-118.992950,36.988583],[-118.992793,36.987799],[-118.993264,36.986544],[-118.993264,36.985760],[-118.993421,36.985289],[-118.993264,36.984819],[-118.992009,36.984034],[-118.991852,36.983564],[-118.992166,36.983250],[-118.993578,36.984034],[-118.993891,36.984191],[-118.994519,36.983877],[-118.995617,36.983093],[-118.996558,36.983093],[-118.997342,36.981995],[-118.998126,36.978859],[-118.998126,36.978388],[-118.997028,36.977447],[-118.997342,36.976192],[-118.997342,36.975408],[-118.996871,36.974624],[-118.996871,36.973840],[-118.997342,36.973683],[-118.999851,36.974781],[-119.000949,36.974938],[-119.001890,36.974938],[-119.003145,36.974624],[-119.005027,36.973840],[-119.006282,36.972742],[-119.008164,36.970703],[-119.009105,36.970389],[-119.010360,36.969448],[-119.011144,36.969134],[-119.012242,36.968350],[-119.012399,36.967723],[-119.011928,36.967096],[-119.011928,36.966782],[-119.011457,36.965527],[-119.013026,36.963331],[-119.013340,36.961920],[-119.013340,36.960822],[-119.013026,36.959724],[-119.011614,36.957528],[-119.011457,36.956744],[-119.012242,36.955333],[-119.012399,36.954548],[-119.012869,36.954235],[-119.014594,36.954705],[-119.015378,36.955489],[-119.016320,36.955489],[-119.016633,36.955333],[-119.016633,36.955019],[-119.016633,36.954235],[-119.016790,36.953450],[-119.016476,36.952980],[-119.016476,36.952353],[-119.016947,36.952196],[-119.017731,36.952039],[-119.018045,36.952196],[-119.018672,36.952666],[-119.018829,36.952666],[-119.019299,36.952196],[-119.018672,36.951568],[-119.018672,36.950941],[-119.018986,36.950470],[-119.018986,36.950000],[-119.018515,36.950000],[-119.018045,36.950314],[-119.018045,36.950627],[-119.017574,36.950784],[-119.017417,36.950314],[-119.016476,36.950157],[-119.016320,36.950000],[-119.015535,36.949843],[-119.014908,36.949529],[-119.014437,36.948745],[-119.013340,36.947804],[-119.013183,36.947491],[-119.013653,36.947020],[-119.015222,36.947020],[-119.015692,36.946549],[-119.015222,36.945452],[-119.015535,36.944667],[-119.016476,36.944040],[-119.017888,36.943570],[-119.018045,36.943256],[-119.017731,36.942785],[-119.017731,36.941531],[-119.017417,36.941374],[-119.016947,36.941687],[-119.016633,36.942315],[-119.013496,36.944511],[-119.012869,36.945295],[-119.011457,36.945765],[-119.011301,36.945608],[-119.011301,36.945295],[-119.012869,36.944511],[-119.013653,36.943413],[-119.014751,36.942315],[-119.014751,36.942001],[-119.014594,36.941844],[-119.014281,36.942001],[-119.012712,36.943570],[-119.011928,36.943726],[-119.011928,36.943256],[-119.012555,36.942628],[-119.012555,36.942472],[-119.012399,36.942315],[-119.011457,36.943099],[-119.011144,36.943256],[-119.011144,36.942942],[-119.012242,36.941687],[-119.011457,36.941374],[-119.011144,36.940903],[-119.011144,36.940276],[-119.011457,36.940119],[-119.011771,36.940119],[-119.012399,36.940590],[-119.013026,36.940590],[-119.013810,36.940276],[-119.014751,36.939021],[-119.015222,36.938551],[-119.015378,36.938080],[-119.015692,36.937453],[-119.018045,36.936669],[-119.018045,36.936041],[-119.018202,36.935884],[-119.018045,36.934786],[-119.018358,36.934316],[-119.018202,36.932591],[-119.018515,36.932120],[-119.021182,36.930865],[-119.021966,36.929768],[-119.024005,36.930238],[-119.024789,36.929924],[-119.025887,36.929924],[-119.027142,36.929454],[-119.027612,36.928513],[-119.027926,36.928356],[-119.028710,36.928356],[-119.029494,36.929140],[-119.029808,36.929140],[-119.033101,36.926631],[-119.033886,36.926474],[-119.034513,36.926003],[-119.035140,36.925847],[-119.037336,36.925847],[-119.037336,36.925533],[-119.036709,36.924749],[-119.036866,36.923808],[-119.038748,36.922396],[-119.039218,36.922239],[-119.039375,36.922082],[-119.039375,36.921769],[-119.040159,36.921141],[-119.040002,36.919887],[-119.040316,36.919416],[-119.040630,36.919102],[-119.041571,36.918946],[-119.042198,36.918632],[-119.042355,36.918161],[-119.042355,36.916750],[-119.042512,36.916122],[-119.043610,36.914240],[-119.043767,36.913299],[-119.044080,36.912829],[-119.046590,36.912045],[-119.049099,36.911888],[-119.051922,36.912672],[-119.052863,36.913770],[-119.053177,36.914397],[-119.053961,36.914868],[-119.055373,36.915181],[-119.055686,36.915338],[-119.055530,36.915652],[-119.054745,36.915809],[-119.054589,36.915966],[-119.055216,36.916436],[-119.055530,36.917534],[-119.055843,36.917534],[-119.056784,36.916750],[-119.057412,36.916907],[-119.058666,36.917534],[-119.059607,36.917220],[-119.062901,36.917691],[-119.063528,36.917063],[-119.064313,36.917377],[-119.064783,36.917848],[-119.065724,36.917691],[-119.065881,36.917848],[-119.066038,36.918005],[-119.065881,36.918632],[-119.065881,36.918946],[-119.066352,36.919730],[-119.066038,36.920671],[-119.066822,36.921141],[-119.066822,36.921455],[-119.065724,36.921298],[-119.065411,36.921455],[-119.065411,36.922396],[-119.064470,36.922867],[-119.064626,36.923494],[-119.064783,36.924121],[-119.066038,36.925376],[-119.066195,36.926317],[-119.066038,36.926944],[-119.065411,36.927572],[-119.063999,36.928199],[-119.063685,36.928356],[-119.063842,36.930395],[-119.063685,36.931022],[-119.063685,36.931963],[-119.064470,36.932748],[-119.066979,36.933845],[-119.067449,36.934316],[-119.067449,36.935100],[-119.068391,36.935571],[-119.068704,36.936198],[-119.069488,36.936825],[-119.069645,36.937296],[-119.069488,36.937923],[-119.067136,36.939492],[-119.066979,36.940119],[-119.067293,36.940746],[-119.067606,36.941060],[-119.067606,36.941217],[-119.064940,36.943099],[-119.064470,36.943726],[-119.064940,36.944511],[-119.065724,36.944667],[-119.066352,36.943726],[-119.066979,36.942942],[-119.068234,36.942158],[-119.071998,36.941687],[-119.072939,36.941687],[-119.073253,36.942785],[-119.074350,36.943726],[-119.074664,36.944040],[-119.074664,36.944511],[-119.073723,36.946236],[-119.072312,36.947491],[-119.071057,36.947961],[-119.069018,36.948118],[-119.068391,36.948432],[-119.068077,36.948588],[-119.067763,36.949216],[-119.067449,36.949843],[-119.067136,36.950000],[-119.066195,36.950157],[-119.062901,36.950314],[-119.062431,36.950314],[-119.062431,36.950784],[-119.065254,36.952353],[-119.065411,36.952666],[-119.065411,36.953294],[-119.066665,36.954078],[-119.066822,36.954548],[-119.066508,36.955333],[-119.066665,36.955803],[-119.067763,36.956117],[-119.068234,36.956744],[-119.068391,36.958156],[-119.068547,36.958156],[-119.069802,36.957685],[-119.070743,36.957842],[-119.071371,36.958783],[-119.070743,36.959567],[-119.069488,36.960508],[-119.068391,36.961136],[-119.067293,36.961449],[-119.067136,36.961763],[-119.067606,36.962861],[-119.068234,36.963331],[-119.069175,36.963018],[-119.072312,36.963331],[-119.073723,36.963018],[-119.073723,36.964116],[-119.073566,36.964900],[-119.072625,36.966155],[-119.072625,36.966625],[-119.073253,36.967096],[-119.075448,36.967723],[-119.075919,36.968193],[-119.076860,36.968507],[-119.077174,36.968978],[-119.077958,36.969605],[-119.078271,36.970389],[-119.079056,36.973212],[-119.079213,36.975094],[-119.079997,36.975722],[-119.081565,36.976035],[-119.081879,36.976506],[-119.081879,36.977133],[-119.081722,36.977604],[-119.081408,36.977761],[-119.079997,36.977761],[-119.079840,36.978388],[-119.081095,36.979643],[-119.082506,36.980113],[-119.082820,36.980427],[-119.083447,36.981211],[-119.083447,36.981682],[-119.084545,36.983250],[-119.084545,36.983721],[-119.083134,36.984191],[-119.082977,36.987171],[-119.083134,36.987328],[-119.084075,36.987799],[-119.084388,36.988896],[-119.085016,36.989681],[-119.085172,36.990465],[-119.084859,36.990935],[-119.084545,36.991092],[-119.083447,36.991249],[-119.083290,36.991720],[-119.082977,36.992190],[-119.081095,36.993288],[-119.080624,36.993288],[-119.079683,36.993131],[-119.079369,36.993131],[-119.079526,36.993915],[-119.079369,36.994699],[-119.078428,36.995484],[-119.078428,36.995641],[-119.078899,36.995954],[-119.079213,36.996268],[-119.079213,36.996895],[-119.078271,36.997993],[-119.078271,36.998307],[-119.078271,36.998620],[-119.079840,36.998777],[-119.080467,36.998934],[-119.080624,36.999248],[-119.081251,36.999248],[-119.081095,37.000659],[-119.081251,37.002542],[-119.080310,37.003169],[-119.079213,37.004267],[-119.078585,37.004267],[-119.078115,37.003953],[-119.077644,37.003169],[-119.077174,37.002855],[-119.074037,37.002385],[-119.073723,37.003483],[-119.071998,37.003483],[-119.071527,37.003639],[-119.070429,37.004580],[-119.069488,37.004737],[-119.068861,37.004894],[-119.067606,37.004580],[-119.066979,37.004737]]],[[[-119.066979,37.004737],[-119.067293,37.004894],[-119.067763,37.005521],[-119.068234,37.005678],[-119.068704,37.005208],[-119.069332,37.005051],[-119.070116,37.005051],[-119.070586,37.004894],[-119.071371,37.005365],[-119.072468,37.005521],[-119.072782,37.005835],[-119.073096,37.005992],[-119.073880,37.005992],[-119.074350,37.005678],[-119.074978,37.005521],[-119.075919,37.005835],[-119.076389,37.006149],[-119.076860,37.006933],[-119.077958,37.007717],[-119.078742,37.008031],[-119.079997,37.008345],[-119.080467,37.008188],[-119.081251,37.007717],[-119.081722,37.007560],[-119.082349,37.007717],[-119.083290,37.008345],[-119.083604,37.008345],[-119.084388,37.007247],[-119.084702,37.006463],[-119.085800,37.006149],[-119.085800,37.005835],[-119.086270,37.005365],[-119.087368,37.005208],[-119.087525,37.004737],[-119.088623,37.003326],[-119.088937,37.003169],[-119.089407,37.003169],[-119.089721,37.002855],[-119.090035,37.002385],[-119.090976,36.999875],[-119.090976,36.999405],[-119.091603,36.998464],[-119.094269,36.998307],[-119.095210,36.998464],[-119.096151,36.998464],[-119.096622,36.998307],[-119.097563,36.997366],[-119.099602,36.997209],[-119.101013,36.996738],[-119.103993,36.996425],[-119.104778,36.996111],[-119.106189,36.996268],[-119.106346,36.996582],[-119.106816,36.996738],[-119.110581,36.997993],[-119.111208,36.998464],[-119.111835,36.999091],[-119.113090,36.999875],[-119.113561,37.000503],[-119.114031,37.001287],[-119.115129,37.001600],[-119.116227,37.001444],[-119.117325,37.000973],[-119.118736,37.000816],[-119.120148,37.000816],[-119.120932,37.002855],[-119.121246,37.004580],[-119.122030,37.005835],[-119.122814,37.007404],[-119.123285,37.008815],[-119.123285,37.010384],[-119.122814,37.010697],[-119.122344,37.010697],[-119.122030,37.011168],[-119.121716,37.011168],[-119.121403,37.011638],[-119.120775,37.013207],[-119.119834,37.013677],[-119.119207,37.013991],[-119.118266,37.013991],[-119.117795,37.014305],[-119.117482,37.014932],[-119.117482,37.015402],[-119.117638,37.017285],[-119.118266,37.019167],[-119.118736,37.019637],[-119.119521,37.019951],[-119.119991,37.020578],[-119.120775,37.021362],[-119.121089,37.021833],[-119.121716,37.021990],[-119.122971,37.022931],[-119.123598,37.023244],[-119.123442,37.023715],[-119.123912,37.024029],[-119.124383,37.024813],[-119.125951,37.025597],[-119.126578,37.026381],[-119.127833,37.027165],[-119.128304,37.027793],[-119.130029,37.028263],[-119.131440,37.028263],[-119.132225,37.028106],[-119.133322,37.028263],[-119.134420,37.029361],[-119.135205,37.029675],[-119.135518,37.029989],[-119.137243,37.030930],[-119.138185,37.031086],[-119.139282,37.031557],[-119.140380,37.033282],[-119.141321,37.033596],[-119.142419,37.033596],[-119.142733,37.033910],[-119.141321,37.034694],[-119.152928,37.034694],[-119.153869,37.033910],[-119.154339,37.033282],[-119.154496,37.032341],[-119.153555,37.030145],[-119.153084,37.029048],[-119.152457,37.028263],[-119.151516,37.027479],[-119.151045,37.027322],[-119.150418,37.027322],[-119.149163,37.028263],[-119.147438,37.028263],[-119.145242,37.029832],[-119.143674,37.029989],[-119.143360,37.029675],[-119.142576,37.026381],[-119.143047,37.025597],[-119.144301,37.024656],[-119.144458,37.024185],[-119.144615,37.023401],[-119.144458,37.022147],[-119.143674,37.021206],[-119.143047,37.020892],[-119.140851,37.020735],[-119.138969,37.023088],[-119.138028,37.023715],[-119.137871,37.023715],[-119.137557,37.023401],[-119.137557,37.022147],[-119.137243,37.021990],[-119.136616,37.022617],[-119.136302,37.022617],[-119.136146,37.022460],[-119.136146,37.021990],[-119.135832,37.021676],[-119.133322,37.024029],[-119.131911,37.024656],[-119.131127,37.024656],[-119.130186,37.024342],[-119.129558,37.023715],[-119.129401,37.023088],[-119.127990,37.022774],[-119.126735,37.022147],[-119.126421,37.021049],[-119.124383,37.020421],[-119.124226,37.020264],[-119.124226,37.019794],[-119.125324,37.017128],[-119.125324,37.016500],[-119.124696,37.015873],[-119.124696,37.015402],[-119.124696,37.014775],[-119.125167,37.014148],[-119.125010,37.012736],[-119.125324,37.011952],[-119.125951,37.011481],[-119.127519,37.010697],[-119.127519,37.010384],[-119.127363,37.009756],[-119.128304,37.008815],[-119.128147,37.007874],[-119.126892,37.006933],[-119.126892,37.006149],[-119.127363,37.005208],[-119.127519,37.003953],[-119.127833,37.003326],[-119.129088,37.002698],[-119.129715,37.001757],[-119.131440,37.000659],[-119.131754,36.999875],[-119.132538,36.997209],[-119.132852,36.996268],[-119.133166,36.996111],[-119.134420,36.996111],[-119.135989,36.995327],[-119.139439,36.995013],[-119.139596,36.994856],[-119.139596,36.993758],[-119.140694,36.991720],[-119.141321,36.990778],[-119.141792,36.990778],[-119.143360,36.991406],[-119.143988,36.991876],[-119.143988,36.992190],[-119.144301,36.992347],[-119.144458,36.993288],[-119.144615,36.993602],[-119.144301,36.994856],[-119.144301,36.995484],[-119.144929,36.996111],[-119.144772,36.997523],[-119.146183,36.998620],[-119.146811,36.999875],[-119.147281,37.000346],[-119.148222,37.000503],[-119.148536,37.000816],[-119.148850,37.001444],[-119.150104,37.001757],[-119.150575,37.002228],[-119.151359,37.003953],[-119.151673,37.003953],[-119.153084,37.002855],[-119.153555,37.002855],[-119.153869,37.003012],[-119.154182,37.003796],[-119.154966,37.004267],[-119.155123,37.004424],[-119.155123,37.004894],[-119.154339,37.005678],[-119.154339,37.006149],[-119.155907,37.006619],[-119.156064,37.006776],[-119.156221,37.007717],[-119.156535,37.007874],[-119.156692,37.007874],[-119.157005,37.007560],[-119.157476,37.006149],[-119.159358,37.004737],[-119.159672,37.003326],[-119.159985,37.002542],[-119.160456,37.002385],[-119.160926,37.002698],[-119.161867,37.002542],[-119.162652,37.002855],[-119.164063,37.003012],[-119.164691,37.003483],[-119.166729,37.004110],[-119.166573,37.004737],[-119.166259,37.005678],[-119.166259,37.006306],[-119.167357,37.006933],[-119.167984,37.007560],[-119.169082,37.008345],[-119.169866,37.008501],[-119.170807,37.009286],[-119.170964,37.009599],[-119.170494,37.010854],[-119.170650,37.011011],[-119.171592,37.010854],[-119.172533,37.010854],[-119.174101,37.011481],[-119.174885,37.012109],[-119.175356,37.011952],[-119.176454,37.011481],[-119.178963,37.011638],[-119.179590,37.011481],[-119.179904,37.011011],[-119.178649,37.009599],[-119.178806,37.009129],[-119.180061,37.009442],[-119.182257,37.010384],[-119.182884,37.010384],[-119.183982,37.009599],[-119.184923,37.009442],[-119.185864,37.009442],[-119.187432,37.010854],[-119.187903,37.011011],[-119.189001,37.011011],[-119.191197,37.010540],[-119.192294,37.010540],[-119.195274,37.011011],[-119.195274,37.010854],[-119.195588,37.010697],[-119.195745,37.010227],[-119.195588,37.009756],[-119.195745,37.009286],[-119.195588,37.009129],[-119.194490,37.008345],[-119.191981,37.007090],[-119.190256,37.007247],[-119.189628,37.007090],[-119.189001,37.006306],[-119.188530,37.005051],[-119.188373,37.004580],[-119.188844,37.002542],[-119.190256,37.000659],[-119.191667,36.999562],[-119.191824,36.998934],[-119.192138,36.998464],[-119.193079,36.997679],[-119.194490,36.997836],[-119.194804,36.997679],[-119.195274,36.997052],[-119.197000,36.996111],[-119.198098,36.995797],[-119.198411,36.995484],[-119.201391,36.993915],[-119.202019,36.993915],[-119.202489,36.994072],[-119.202646,36.994386],[-119.202489,36.995641],[-119.202646,36.995797],[-119.203116,36.995641],[-119.203587,36.995013],[-119.204058,36.995013],[-119.204685,36.995170],[-119.205469,36.995170],[-119.205940,36.994856],[-119.206253,36.993445],[-119.206881,36.993131],[-119.206881,36.992661],[-119.207351,36.992661],[-119.208135,36.993131],[-119.209076,36.993602],[-119.209233,36.994229],[-119.209547,36.994386],[-119.209704,36.995013],[-119.209704,36.996425],[-119.209547,36.996582],[-119.209547,36.996895],[-119.209704,36.997366],[-119.210331,36.997993],[-119.210488,36.998307],[-119.210958,36.998464],[-119.210958,36.997836],[-119.212213,36.997366],[-119.212370,36.996738],[-119.212527,36.996111],[-119.212684,36.995641],[-119.212841,36.993758],[-119.212527,36.993602],[-119.212527,36.993131],[-119.212997,36.992817],[-119.212841,36.991563],[-119.213311,36.991563],[-119.213625,36.991720],[-119.213938,36.992504],[-119.214409,36.992661],[-119.214566,36.993288],[-119.214566,36.994386],[-119.214879,36.996111],[-119.215193,36.997052],[-119.216134,36.997523],[-119.216291,36.997836],[-119.216762,37.000973],[-119.217703,37.003326],[-119.219114,37.005365],[-119.220526,37.006619],[-119.220996,37.006933],[-119.221624,37.008188],[-119.222251,37.008658],[-119.222251,37.009129],[-119.222878,37.010227],[-119.223663,37.011011],[-119.223663,37.011325],[-119.224133,37.012266],[-119.224290,37.013207],[-119.223819,37.015089],[-119.224290,37.015559],[-119.225074,37.015873],[-119.225388,37.016500],[-119.226172,37.016814],[-119.226643,37.017598],[-119.227113,37.019637],[-119.226956,37.020264],[-119.252208,37.020264],[-119.252521,37.020892],[-119.252521,37.021519],[-119.252208,37.021990],[-119.252364,37.023872],[-119.251737,37.024656],[-119.252992,37.024656],[-119.255187,37.024342],[-119.255344,37.024029],[-119.255344,37.022617],[-119.256285,37.021676],[-119.258011,37.021519],[-119.258638,37.021049],[-119.259265,37.020264],[-119.272126,37.020264],[-119.272440,37.020578],[-119.273224,37.020578],[-119.275106,37.020421],[-119.276047,37.020264],[-119.276988,37.020578],[-119.277302,37.021206],[-119.278557,37.021833],[-119.279184,37.022147],[-119.279184,37.023401],[-119.279498,37.024029],[-119.278714,37.025283],[-119.279341,37.026068],[-119.279341,37.026381],[-119.279498,37.026695],[-119.279498,37.027322],[-119.279184,37.027793],[-119.279498,37.028263],[-119.279498,37.028734],[-119.280909,37.030145],[-119.280752,37.030930],[-119.279184,37.032498],[-119.278714,37.033282],[-119.278557,37.033753],[-119.278557,37.033910],[-119.279341,37.034380],[-119.281380,37.034380],[-119.282635,37.034851],[-119.286085,37.034223],[-119.287967,37.034223],[-119.288438,37.034223],[-119.288751,37.034851],[-119.289849,37.035635],[-119.290790,37.035949],[-119.291574,37.036419],[-119.292202,37.037360],[-119.292359,37.038928],[-119.292672,37.039713],[-119.293613,37.040811],[-119.294398,37.042065],[-119.295182,37.042065],[-119.296280,37.042849],[-119.296437,37.042849],[-119.298319,37.042222],[-119.298632,37.042222],[-119.299730,37.041595],[-119.300358,37.041438],[-119.301455,37.041595],[-119.301612,37.041438],[-119.301769,37.041438],[-119.301926,37.041595],[-119.302396,37.041438],[-119.302867,37.042536],[-119.303337,37.042379],[-119.302867,37.042536],[-119.303965,37.043006],[-119.306004,37.043163],[-119.306788,37.043791],[-119.307886,37.043947],[-119.308356,37.044732],[-119.309141,37.045202],[-119.310552,37.045359],[-119.311336,37.045673],[-119.314003,37.045202],[-119.314787,37.045516],[-119.316042,37.045045],[-119.316669,37.045516],[-119.316512,37.046143],[-119.316669,37.046614],[-119.318237,37.046614],[-119.318080,37.046300],[-119.318394,37.046143],[-119.319178,37.046300],[-119.319963,37.045986],[-119.320747,37.046143],[-119.321374,37.045986],[-119.322472,37.046457],[-119.322786,37.046770],[-119.324511,37.046927],[-119.325452,37.047555],[-119.325609,37.047555],[-119.325766,37.046927],[-119.326393,37.046770],[-119.327805,37.046770],[-119.328902,37.046457],[-119.330000,37.046770],[-119.330785,37.047398],[-119.331726,37.047555],[-119.332039,37.047398],[-119.332510,37.046927],[-119.333608,37.046770],[-119.334862,37.047555],[-119.334862,37.048496],[-119.335803,37.049750],[-119.336117,37.050064],[-119.336588,37.050692],[-119.338156,37.051476],[-119.338470,37.051789],[-119.338783,37.051789],[-119.339097,37.051633],[-119.339254,37.051789],[-119.340822,37.051946],[-119.341450,37.052260],[-119.342077,37.052260],[-119.342861,37.053044],[-119.343175,37.053828],[-119.343645,37.054142],[-119.345371,37.054926],[-119.346312,37.054926],[-119.346782,37.055083],[-119.347410,37.055710],[-119.348037,37.055710],[-119.348821,37.054926],[-119.349135,37.054769],[-119.349449,37.055083],[-119.349449,37.055554],[-119.350233,37.056024],[-119.351958,37.056651],[-119.353370,37.056808],[-119.354154,37.056965],[-119.356193,37.058063],[-119.356506,37.058534],[-119.357134,37.059004],[-119.357604,37.060102],[-119.357447,37.061357],[-119.356820,37.061357],[-119.359016,37.065121],[-119.364192,37.078139],[-119.368113,37.089117],[-119.369054,37.091156],[-119.369210,37.093666],[-119.366387,37.112800],[-119.364819,37.122211],[-119.363564,37.131464],[-119.361996,37.131621],[-119.361839,37.131778],[-119.361682,37.132719],[-119.362153,37.133190],[-119.362153,37.133660],[-119.362153,37.133817],[-119.360741,37.134444],[-119.359800,37.134601],[-119.358545,37.135072],[-119.357134,37.135542],[-119.355879,37.135856],[-119.355879,37.136483],[-119.355095,37.137267],[-119.355565,37.138052],[-119.356977,37.138052],[-119.357918,37.138522],[-119.358859,37.138522],[-119.359643,37.138993],[-119.360114,37.139150],[-119.360427,37.139934],[-119.360741,37.140247],[-119.361996,37.140875],[-119.362780,37.141345],[-119.364192,37.144012],[-119.364035,37.144168],[-119.362937,37.144168],[-119.362780,37.144325],[-119.362780,37.145737],[-119.363094,37.146521],[-119.364035,37.146992],[-119.364035,37.147305],[-119.363564,37.147462],[-119.363251,37.147776],[-119.364035,37.148560],[-119.364192,37.149030],[-119.363407,37.150442],[-119.361996,37.151383],[-119.361839,37.152324],[-119.361368,37.153422],[-119.359486,37.155461],[-119.357604,37.156872],[-119.355252,37.158284],[-119.354467,37.158284],[-119.352899,37.157970],[-119.352115,37.157343],[-119.351017,37.157814],[-119.350390,37.157657],[-119.348664,37.157029],[-119.348037,37.156559],[-119.347723,37.156559],[-119.347566,37.157029],[-119.346469,37.156872],[-119.344273,37.155775],[-119.341920,37.155775],[-119.341136,37.155304],[-119.340038,37.155147],[-119.339097,37.155461],[-119.338313,37.156088],[-119.337529,37.156402],[-119.336431,37.155618],[-119.335803,37.155931],[-119.334078,37.155931],[-119.332667,37.155775],[-119.331412,37.155775],[-119.330157,37.155304],[-119.328746,37.155147],[-119.327961,37.154834],[-119.326707,37.154990],[-119.328275,37.155618],[-119.328902,37.155618],[-119.330157,37.155931],[-119.330314,37.156245],[-119.330471,37.156872],[-119.330785,37.157186],[-119.333294,37.156872],[-119.335019,37.157500],[-119.336274,37.157657],[-119.336901,37.157970],[-119.339254,37.158284],[-119.339724,37.158441],[-119.340038,37.158911],[-119.340822,37.159068],[-119.343018,37.159382],[-119.343802,37.159225],[-119.345684,37.160323],[-119.347096,37.160950],[-119.347723,37.160950],[-119.349292,37.161578],[-119.350076,37.162048],[-119.350546,37.163146],[-119.351017,37.163303],[-119.351644,37.163773],[-119.352585,37.164087],[-119.353213,37.165028],[-119.353683,37.165342],[-119.353840,37.166440],[-119.353840,37.166753],[-119.354311,37.168165],[-119.355252,37.169420],[-119.355565,37.169577],[-119.357604,37.169890],[-119.360741,37.169577],[-119.360427,37.170047],[-119.360584,37.173027],[-119.360898,37.174909],[-119.360584,37.176634],[-119.360741,37.178830],[-119.360584,37.180555],[-119.359800,37.181183],[-119.357447,37.182908],[-119.356820,37.183692],[-119.355095,37.184476],[-119.354624,37.185261],[-119.354154,37.185731],[-119.352742,37.186202],[-119.351801,37.186202],[-119.347880,37.186829],[-119.343175,37.189025],[-119.342391,37.189809],[-119.341136,37.190907],[-119.340038,37.192632],[-119.339411,37.194357],[-119.338940,37.194985],[-119.338783,37.196710],[-119.337842,37.199063],[-119.337215,37.200474],[-119.335333,37.201729],[-119.334392,37.202827],[-119.333608,37.203140],[-119.332667,37.204081],[-119.330628,37.205807],[-119.330314,37.207375],[-119.330157,37.207375],[-119.330471,37.207846],[-119.330314,37.208159],[-119.330000,37.209257],[-119.329530,37.209571],[-119.329373,37.210041],[-119.329687,37.211139],[-119.330314,37.212865],[-119.330471,37.214433],[-119.330785,37.215217],[-119.330941,37.215531],[-119.331726,37.215688],[-119.333137,37.215844],[-119.335333,37.216629],[-119.336588,37.217413],[-119.337215,37.217883],[-119.337686,37.218668],[-119.337842,37.219138],[-119.337529,37.219922],[-119.337215,37.220236],[-119.336744,37.220863],[-119.335490,37.222275],[-119.334078,37.223530],[-119.333765,37.224000],[-119.333608,37.224784],[-119.333921,37.226196],[-119.333451,37.227921],[-119.333137,37.228392],[-119.332980,37.229333],[-119.332980,37.230274],[-119.332667,37.233411],[-119.331726,37.234508],[-119.331882,37.236547],[-119.332039,37.237645],[-119.331882,37.238586],[-119.331569,37.239684],[-119.328902,37.242507],[-119.324981,37.243919],[-119.323570,37.244703],[-119.322786,37.245801],[-119.322158,37.247369],[-119.322001,37.248154],[-119.322315,37.249722],[-119.322472,37.250977],[-119.322158,37.253643],[-119.322943,37.254898],[-119.323570,37.255839],[-119.324511,37.258662],[-119.324668,37.259760],[-119.324354,37.261799],[-119.324511,37.262740],[-119.324668,37.265092],[-119.324668,37.265563],[-119.326079,37.268386],[-119.326079,37.269013],[-119.326550,37.270111],[-119.327491,37.270895],[-119.328275,37.271209],[-119.329844,37.272464],[-119.331412,37.272934],[-119.332039,37.273562],[-119.332353,37.274503],[-119.332196,37.274973],[-119.331255,37.277326],[-119.331098,37.278424],[-119.331255,37.282188],[-119.330785,37.282972],[-119.329687,37.284384],[-119.329216,37.285795],[-119.328118,37.287207],[-119.327961,37.287991],[-119.327961,37.288775],[-119.326864,37.290657],[-119.327020,37.291128],[-119.327020,37.292383],[-119.325295,37.293951],[-119.324668,37.294892],[-119.324354,37.295049],[-119.322158,37.295049],[-119.316983,37.295676],[-119.316198,37.295990],[-119.315728,37.296460],[-119.314944,37.297088],[-119.313375,37.297872],[-119.311493,37.298186],[-119.311023,37.298499],[-119.308513,37.299440],[-119.307572,37.300225],[-119.306004,37.300852],[-119.305376,37.301009],[-119.304592,37.300695],[-119.304906,37.300068],[-119.304749,37.299284],[-119.303651,37.296774],[-119.303651,37.296147],[-119.304279,37.293794],[-119.304906,37.293167],[-119.304906,37.292696],[-119.304435,37.291755],[-119.303965,37.291128],[-119.303651,37.290344],[-119.303965,37.290030],[-119.304906,37.289716],[-119.304749,37.288618],[-119.305063,37.288305],[-119.307102,37.287521],[-119.307415,37.287207],[-119.307415,37.286893],[-119.306474,37.285952],[-119.306317,37.285325],[-119.306004,37.285011],[-119.304592,37.283756],[-119.303337,37.283443],[-119.303024,37.283129],[-119.302867,37.281717],[-119.302710,37.281404],[-119.301455,37.280463],[-119.300358,37.280149],[-119.300201,37.279992],[-119.300201,37.279208],[-119.300828,37.278110],[-119.300985,37.277483],[-119.300514,37.276699],[-119.299730,37.275914],[-119.298946,37.274973],[-119.299103,37.274032],[-119.298789,37.273405],[-119.298005,37.272464],[-119.298005,37.271993],[-119.298632,37.271209],[-119.298946,37.270739],[-119.298946,37.270425],[-119.296593,37.269170],[-119.295966,37.268386],[-119.296280,37.267915],[-119.297848,37.267288],[-119.298162,37.266974],[-119.299103,37.264622],[-119.298946,37.263053],[-119.298632,37.262583],[-119.297221,37.261171],[-119.294711,37.260858],[-119.294084,37.260387],[-119.292829,37.260073],[-119.292202,37.259603],[-119.290006,37.259289],[-119.289692,37.259132],[-119.289379,37.258662],[-119.289849,37.258035],[-119.290790,37.257721],[-119.293300,37.257407],[-119.294868,37.256937],[-119.295495,37.256466],[-119.295495,37.256152],[-119.295339,37.255839],[-119.293770,37.254898],[-119.293300,37.254270],[-119.292202,37.253800],[-119.292202,37.253643],[-119.292515,37.253329],[-119.294554,37.252388],[-119.296123,37.252075],[-119.296750,37.251447],[-119.296750,37.250820],[-119.297064,37.250506],[-119.297534,37.250036],[-119.298319,37.249408],[-119.298319,37.248938],[-119.297691,37.248310],[-119.296750,37.247526],[-119.296123,37.247526],[-119.295025,37.247840],[-119.294241,37.247840],[-119.293613,37.247683],[-119.292515,37.246585],[-119.292515,37.246115],[-119.293300,37.244703],[-119.294241,37.243605],[-119.295182,37.242351],[-119.296907,37.241723],[-119.297064,37.241409],[-119.296280,37.240312],[-119.295966,37.239684],[-119.295182,37.238273],[-119.294554,37.237959],[-119.293613,37.237645],[-119.293143,37.237332],[-119.293143,37.237175],[-119.296280,37.234665],[-119.297221,37.233254],[-119.296123,37.232470],[-119.296123,37.231685],[-119.297064,37.230587],[-119.297064,37.229646],[-119.296907,37.229333],[-119.295339,37.228549],[-119.295182,37.228078],[-119.294868,37.227921],[-119.294084,37.227764],[-119.293300,37.227451],[-119.292986,37.226980],[-119.292829,37.225882],[-119.291888,37.225882],[-119.290790,37.225569],[-119.290947,37.224941],[-119.290947,37.224471],[-119.290633,37.224314],[-119.287653,37.224000],[-119.286399,37.222432],[-119.286399,37.221961],[-119.286085,37.221491],[-119.285301,37.221491],[-119.284673,37.221177],[-119.284360,37.221491],[-119.283576,37.221334],[-119.283262,37.221648],[-119.281537,37.221804],[-119.280439,37.221648],[-119.280282,37.221491],[-119.279968,37.221177],[-119.279968,37.220707],[-119.279027,37.220079],[-119.278870,37.219922],[-119.279027,37.218668],[-119.279498,37.218040],[-119.280282,37.216472],[-119.281223,37.215688],[-119.281223,37.215217],[-119.281066,37.214903],[-119.280125,37.214590],[-119.278870,37.214433],[-119.277616,37.213962],[-119.273224,37.213962],[-119.272126,37.213649],[-119.270715,37.213806],[-119.269930,37.214119],[-119.268048,37.213178],[-119.266637,37.212865],[-119.265696,37.213335],[-119.265225,37.213649],[-119.264755,37.213806],[-119.263971,37.213492],[-119.262873,37.213178],[-119.261618,37.213649],[-119.260363,37.214590],[-119.259108,37.214903],[-119.258011,37.214590],[-119.257697,37.213962],[-119.258324,37.213492],[-119.258795,37.212080],[-119.258952,37.211139],[-119.256913,37.210669],[-119.256599,37.210041],[-119.256285,37.209571],[-119.255658,37.209414],[-119.254246,37.209571],[-119.252521,37.210512],[-119.252051,37.210355],[-119.250953,37.210669],[-119.249541,37.210512],[-119.249071,37.210826],[-119.248130,37.211139],[-119.248914,37.209414],[-119.249541,37.208630],[-119.249541,37.208002],[-119.249698,37.207532],[-119.250012,37.206905],[-119.250482,37.206591],[-119.250639,37.206120],[-119.251423,37.205964],[-119.254403,37.204866],[-119.254717,37.204552],[-119.255815,37.204238],[-119.255658,37.203768],[-119.256913,37.202827],[-119.257070,37.202043],[-119.257697,37.201886],[-119.257697,37.201572],[-119.257070,37.200474],[-119.255658,37.198122],[-119.254874,37.197965],[-119.254246,37.197494],[-119.252992,37.197651],[-119.251737,37.198122],[-119.250639,37.198278],[-119.249228,37.198906],[-119.246875,37.200474],[-119.245307,37.201258],[-119.242954,37.202984],[-119.242013,37.203140],[-119.241542,37.203611],[-119.240915,37.203297],[-119.239190,37.203768],[-119.238092,37.203611],[-119.237465,37.203454],[-119.236994,37.202827],[-119.236523,37.202984],[-119.236367,37.203611],[-119.235582,37.203925],[-119.234641,37.203925],[-119.233700,37.203297],[-119.233387,37.202827],[-119.232916,37.202670],[-119.232289,37.202827],[-119.231191,37.202670],[-119.230877,37.202827],[-119.230250,37.202827],[-119.229779,37.203140],[-119.227270,37.202984],[-119.223819,37.201729],[-119.222408,37.201415],[-119.219742,37.201258],[-119.218016,37.200160],[-119.217232,37.200004],[-119.215664,37.199533],[-119.214566,37.198435],[-119.213468,37.198278],[-119.213311,37.197965],[-119.213311,37.197024],[-119.212213,37.195926],[-119.211429,37.195612],[-119.210017,37.195455],[-119.209390,37.194828],[-119.208449,37.194985],[-119.207194,37.194671],[-119.206567,37.194200],[-119.206410,37.193259],[-119.205783,37.192789],[-119.205783,37.192318],[-119.204371,37.191221],[-119.203901,37.191377],[-119.203273,37.191691],[-119.203116,37.192005],[-119.203587,37.192318],[-119.203430,37.192789],[-119.202646,37.192789],[-119.202332,37.191691],[-119.202489,37.191064],[-119.203116,37.189652],[-119.203273,37.188241],[-119.203116,37.186358],[-119.202803,37.186045],[-119.202646,37.184633],[-119.202175,37.184163],[-119.202960,37.183692],[-119.202803,37.183065],[-119.202332,37.182437],[-119.201548,37.181653],[-119.201391,37.181026],[-119.200450,37.180085],[-119.198882,37.179614],[-119.198254,37.178987],[-119.197784,37.178673],[-119.197313,37.178673],[-119.196529,37.178987],[-119.196215,37.178987],[-119.195745,37.178360],[-119.194961,37.178203],[-119.194647,37.178046],[-119.194490,37.177732],[-119.194647,37.177105],[-119.194490,37.176948],[-119.192922,37.176791],[-119.191981,37.176321],[-119.191824,37.175850],[-119.190883,37.175380],[-119.190726,37.174125],[-119.189942,37.173498],[-119.189471,37.172243],[-119.188844,37.171459],[-119.189001,37.170674],[-119.189158,37.169420],[-119.189628,37.169106],[-119.189628,37.168792],[-119.188844,37.168008],[-119.188060,37.167694],[-119.187432,37.167224],[-119.187119,37.166753],[-119.187276,37.165969],[-119.187746,37.165499],[-119.188217,37.164714],[-119.087211,37.163930],[-119.088466,37.163773],[-119.089878,37.162989],[-119.090819,37.162832],[-119.091446,37.162362],[-119.092230,37.161891],[-119.092544,37.162048],[-119.092858,37.162519],[-119.093642,37.162048],[-119.093799,37.162205],[-119.093956,37.162362],[-119.094583,37.162362],[-119.094583,37.162205],[-119.094112,37.162048],[-119.094112,37.161735],[-119.094269,37.161578],[-119.094897,37.161735],[-119.095210,37.161107],[-119.096151,37.161264],[-119.096465,37.161421],[-119.096465,37.160950],[-119.096935,37.160950],[-119.097720,37.159696],[-119.099131,37.159068],[-119.099602,37.158441],[-119.100700,37.157500],[-119.102111,37.156872],[-119.102268,37.156716],[-119.102111,37.155775],[-119.104307,37.154363],[-119.104778,37.153422],[-119.105091,37.153422],[-119.105248,37.153108],[-119.105562,37.152951],[-119.105405,37.152638],[-119.103993,37.152481],[-119.103366,37.152167],[-119.103523,37.150285],[-119.103366,37.149971],[-119.102739,37.149971],[-119.102582,37.149971],[-119.102425,37.148403],[-119.101798,37.147776],[-119.101484,37.147148],[-119.101013,37.146678],[-119.100857,37.146050],[-119.100857,37.144953],[-119.101170,37.144168],[-119.101327,37.143071],[-119.101954,37.141816],[-119.102111,37.141502],[-119.102582,37.140875],[-119.102425,37.140091],[-119.102582,37.139463],[-119.102582,37.139306],[-119.101798,37.139150],[-119.101641,37.138836],[-119.101013,37.137424],[-119.100700,37.135856],[-119.100857,37.135072],[-119.101170,37.134131],[-119.101641,37.133503],[-119.102268,37.133190],[-119.102895,37.132405],[-119.102895,37.131778],[-119.103366,37.131151],[-119.103523,37.130523],[-119.103523,37.129582],[-119.103993,37.129112],[-119.104464,37.128955],[-119.105091,37.127543],[-119.105562,37.126759],[-119.106189,37.126445],[-119.106032,37.125975],[-119.105248,37.125191],[-119.105248,37.124877],[-119.105719,37.124250],[-119.106660,37.123622],[-119.106816,37.122681],[-119.107444,37.122368],[-119.106973,37.121427],[-119.107601,37.120329],[-119.109012,37.120015],[-119.109796,37.120329],[-119.110267,37.120485],[-119.111208,37.119858],[-119.113404,37.119231],[-119.114815,37.118917],[-119.116541,37.118447],[-119.119050,37.117976],[-119.120932,37.117349],[-119.123598,37.116721],[-119.124539,37.116721],[-119.124696,37.117506],[-119.125324,37.117976],[-119.125794,37.117976],[-119.126578,37.117662],[-119.127206,37.117662],[-119.129401,37.117976],[-119.130029,37.118133],[-119.130499,37.117819],[-119.131127,37.117506],[-119.131911,37.117662],[-119.132852,37.117192],[-119.133950,37.116878],[-119.134891,37.116251],[-119.136459,37.114682],[-119.137087,37.113428],[-119.137714,37.112643],[-119.138185,37.111859],[-119.138655,37.111546],[-119.141164,37.110761],[-119.143047,37.109977],[-119.144458,37.110291],[-119.145086,37.110134],[-119.145556,37.109820],[-119.145556,37.109507],[-119.146340,37.109193],[-119.146811,37.109036],[-119.147595,37.109350],[-119.149477,37.109350],[-119.150732,37.108879],[-119.151516,37.108252],[-119.151673,37.107938],[-119.152300,37.107938],[-119.152614,37.108252],[-119.152928,37.109036],[-119.154182,37.108722],[-119.154653,37.108252],[-119.154966,37.107468],[-119.155437,37.107311],[-119.156064,37.106840],[-119.155907,37.106370],[-119.156221,37.105586],[-119.156064,37.105115],[-119.156378,37.103860],[-119.156221,37.103390],[-119.155751,37.102919],[-119.156064,37.102606],[-119.155907,37.101037],[-119.156064,37.100410],[-119.156692,37.100253],[-119.156849,37.099939],[-119.156849,37.098998],[-119.156378,37.098685],[-119.156221,37.098057],[-119.156378,37.097430],[-119.157319,37.096803],[-119.157319,37.096489],[-119.157162,37.096018],[-119.157162,37.095077],[-119.156849,37.094450],[-119.157319,37.093823],[-119.157319,37.093352],[-119.156378,37.091784],[-119.156378,37.091156],[-119.156221,37.090529],[-119.155280,37.089117],[-119.155594,37.088333],[-119.155437,37.087863],[-119.155907,37.087392],[-119.155594,37.086137],[-119.155594,37.085667],[-119.154339,37.084569],[-119.153712,37.082687],[-119.152928,37.082216],[-119.152614,37.081589],[-119.153084,37.080491],[-119.153084,37.079236],[-119.153241,37.078295],[-119.153084,37.077825],[-119.153241,37.076100],[-119.152771,37.075315],[-119.152928,37.074218],[-119.152457,37.073590],[-119.152143,37.072179],[-119.152300,37.071081],[-119.153555,37.070453],[-119.153712,37.070140],[-119.153869,37.067317],[-119.154182,37.066532],[-119.156064,37.064180],[-119.156535,37.062925],[-119.155437,37.062768],[-119.154966,37.062298],[-119.152300,37.062925],[-119.150889,37.062611],[-119.150418,37.062768],[-119.149791,37.062455],[-119.149948,37.061200],[-119.149007,37.060259],[-119.148693,37.059475],[-119.147752,37.059475],[-119.147595,37.059161],[-119.147909,37.058220],[-119.148065,37.057592],[-119.147595,37.057122],[-119.147281,37.056495],[-119.147124,37.055554],[-119.147281,37.055240],[-119.148065,37.054613],[-119.148693,37.053985],[-119.148693,37.053671],[-119.148536,37.053358],[-119.147752,37.053044],[-119.146654,37.053044],[-119.144615,37.051946],[-119.144301,37.052260],[-119.143988,37.052260],[-119.143517,37.052103],[-119.142733,37.051946],[-119.142106,37.051789],[-119.140694,37.051633],[-119.139596,37.051319],[-119.138498,37.050692],[-119.137871,37.050535],[-119.136302,37.050535],[-119.136146,37.050221],[-119.135989,37.049123],[-119.135518,37.048809],[-119.135048,37.048809],[-119.134891,37.048966],[-119.134891,37.050064],[-119.133479,37.050221],[-119.132068,37.050692],[-119.131754,37.051005],[-119.131754,37.051162],[-119.132538,37.051789],[-119.131127,37.051789],[-119.128931,37.052260],[-119.128147,37.052260],[-119.127363,37.051946],[-119.125951,37.051162],[-119.124696,37.051162],[-119.121873,37.051633],[-119.118736,37.051946],[-119.117011,37.053358],[-119.116541,37.053358],[-119.115756,37.052730],[-119.115756,37.052260],[-119.116070,37.051633],[-119.116070,37.051476],[-119.114972,37.050692],[-119.113561,37.050692],[-119.111678,37.050848],[-119.111522,37.050692],[-119.110110,37.049437],[-119.109012,37.049123],[-119.107287,37.049280],[-119.106503,37.048966],[-119.106032,37.048339],[-119.104778,37.048025],[-119.104150,37.047712],[-119.102425,37.046457],[-119.100229,37.046300],[-119.099131,37.046457],[-119.099131,37.046143],[-119.100386,37.045202],[-119.100543,37.044888],[-119.101641,37.045045],[-119.101798,37.045516],[-119.102268,37.045829],[-119.102895,37.045986],[-119.103523,37.045829],[-119.104621,37.046457],[-119.105091,37.046457],[-119.107130,37.045986],[-119.108071,37.045359],[-119.108385,37.044888],[-119.109953,37.044418],[-119.111522,37.044418],[-119.112306,37.045045],[-119.113404,37.043947],[-119.114188,37.042849],[-119.114972,37.042222],[-119.116854,37.042222],[-119.117168,37.042536],[-119.117638,37.042065],[-119.117952,37.042065],[-119.118423,37.041438],[-119.119677,37.041124],[-119.120305,37.041124],[-119.120932,37.040497],[-119.122344,37.039556],[-119.123128,37.039399],[-119.123442,37.038928],[-119.125637,37.038772],[-119.126892,37.037360],[-119.128147,37.036419],[-119.128460,37.035164],[-119.128304,37.034851],[-119.126265,37.033596],[-119.125794,37.033596],[-119.125010,37.032969],[-119.123598,37.032655],[-119.122657,37.031557],[-119.121089,37.031243],[-119.119991,37.030616],[-119.119991,37.030302],[-119.120148,37.029989],[-119.120148,37.029675],[-119.119364,37.029204],[-119.119207,37.028577],[-119.118893,37.028420],[-119.115600,37.027479],[-119.114972,37.027479],[-119.114345,37.027009],[-119.113874,37.027009],[-119.112620,37.027165],[-119.111835,37.027793],[-119.111365,37.027793],[-119.111051,37.027636],[-119.110894,37.027322],[-119.111208,37.026538],[-119.111208,37.026224],[-119.110737,37.025754],[-119.110424,37.025440],[-119.110581,37.025127],[-119.109953,37.024499],[-119.109953,37.024029],[-119.110424,37.023401],[-119.110424,37.022774],[-119.110110,37.022617],[-119.109640,37.022460],[-119.109012,37.022460],[-119.108542,37.022774],[-119.108385,37.022774],[-119.106973,37.021990],[-119.106816,37.021833],[-119.106816,37.020892],[-119.108385,37.020108],[-119.108542,37.019480],[-119.107444,37.017912],[-119.106346,37.017285],[-119.105719,37.016971],[-119.104778,37.016971],[-119.104464,37.016814],[-119.104150,37.015716],[-119.103680,37.015402],[-119.103680,37.015246],[-119.103993,37.014461],[-119.104150,37.013363],[-119.104464,37.012422],[-119.104307,37.012109],[-119.103052,37.011011],[-119.102582,37.011011],[-119.101954,37.011168],[-119.101327,37.010854],[-119.100543,37.011011],[-119.099288,37.010384],[-119.098504,37.010697],[-119.097406,37.010540],[-119.096935,37.010384],[-119.095994,37.009442],[-119.095681,37.008345],[-119.094897,37.007874],[-119.094426,37.007717],[-119.093485,37.007874],[-119.092387,37.008501],[-119.090035,37.009286],[-119.089564,37.009442],[-119.089093,37.009599],[-119.088780,37.009913],[-119.088623,37.010384],[-119.088152,37.011325],[-119.088309,37.011952],[-119.087996,37.012266],[-119.087525,37.012422],[-119.087055,37.012579],[-119.086114,37.012579],[-119.085329,37.012893],[-119.081879,37.013050],[-119.080310,37.013363],[-119.079840,37.013207],[-119.079526,37.013050],[-119.078585,37.011795],[-119.077801,37.011481],[-119.074664,37.009286],[-119.074194,37.009286],[-119.072625,37.008658],[-119.070429,37.008658],[-119.070273,37.008188],[-119.069645,37.008031],[-119.069332,37.007717],[-119.069175,37.006776],[-119.068704,37.006306],[-119.067136,37.005678],[-119.066665,37.005365],[-119.066508,37.005051],[-119.066979,37.004737]]]]}}
,{"id":93703,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-119.736374,36.758655],[-119.738570,36.758655],[-119.738570,36.757714],[-119.750019,36.757714],[-119.750019,36.758184],[-119.754411,36.758184],[-119.754411,36.757714],[-119.756763,36.757714],[-119.756763,36.761321],[-119.758959,36.761321],[-119.758959,36.757714],[-119.772447,36.757714],[-119.779191,36.757714],[-119.779191,36.758655],[-119.781544,36.758655],[-119.781544,36.757714],[-119.784053,36.757714],[-119.784053,36.758184],[-119.785935,36.758184],[-119.785935,36.757714],[-119.787190,36.757243],[-119.787190,36.757714],[-119.789229,36.757714],[-119.789229,36.757243],[-119.790484,36.757714],[-119.790484,36.763987],[-119.791425,36.765085],[-119.792523,36.766654],[-119.792052,36.766810],[-119.792052,36.768692],[-119.790484,36.768692],[-119.790484,36.772300],[-119.792836,36.772300],[-119.792836,36.775907],[-119.790484,36.775907],[-119.790484,36.776848],[-119.791111,36.776848],[-119.791111,36.777632],[-119.792836,36.777632],[-119.792836,36.778573],[-119.790484,36.778573],[-119.790484,36.779671],[-119.787347,36.779514],[-119.786092,36.779514],[-119.786092,36.779671],[-119.772604,36.779671],[-119.772604,36.779358],[-119.764919,36.777476],[-119.764291,36.777162],[-119.763821,36.776534],[-119.763194,36.776691],[-119.763507,36.777162],[-119.763507,36.779514],[-119.744530,36.779514],[-119.744686,36.778260],[-119.743589,36.778103],[-119.740765,36.779201],[-119.740765,36.779044],[-119.736217,36.779201],[-119.736217,36.779514],[-119.731982,36.779514],[-119.731669,36.779358],[-119.731669,36.778730],[-119.731826,36.765085],[-119.736374,36.765085],[-119.736374,36.758655]]]}}
,{"id":93234,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-119.958930,36.196068],[-119.959087,36.182266],[-119.958930,36.181482],[-119.959244,36.181325],[-119.977124,36.168150],[-119.995317,36.153407],[-120.000964,36.149486],[-120.025901,36.130352],[-120.098205,36.074674],[-120.101969,36.077026],[-120.101969,36.076085],[-120.102439,36.076242],[-120.106517,36.080163],[-120.118437,36.093338],[-120.118123,36.093494],[-120.134905,36.111688],[-120.129573,36.122980],[-120.129573,36.137880],[-120.128945,36.137880],[-120.128945,36.108708],[-120.110909,36.108551],[-120.110909,36.101180],[-120.102126,36.101180],[-120.102126,36.108551],[-120.096009,36.108708],[-120.101969,36.115609],[-120.101969,36.115923],[-120.093186,36.115923],[-120.093186,36.120471],[-120.093029,36.130038],[-120.101969,36.130038],[-120.101969,36.133646],[-120.102753,36.137096],[-120.102910,36.152466],[-120.120633,36.152153],[-120.120947,36.166739],[-120.138983,36.166582],[-120.139140,36.181325],[-120.156863,36.181168],[-120.156863,36.182737],[-120.121260,36.196225],[-120.121417,36.196695],[-120.124083,36.195754],[-120.152001,36.195598],[-120.151844,36.194343],[-120.152628,36.192304],[-120.153256,36.189638],[-120.155138,36.187442],[-120.157020,36.186658],[-120.157177,36.187599],[-120.158118,36.187128],[-120.158902,36.186344],[-120.160314,36.183991],[-120.167842,36.192931],[-120.178350,36.206420],[-120.178507,36.226025],[-120.210973,36.225868],[-120.211287,36.240297],[-120.210973,36.269156],[-120.185408,36.269469],[-120.179134,36.269626],[-120.157804,36.269469],[-120.157804,36.255197],[-120.139924,36.255197],[-120.139924,36.240611],[-120.121731,36.240611],[-120.121574,36.269626],[-120.113418,36.269626],[-120.107615,36.265862],[-120.104165,36.264294],[-120.104008,36.260843],[-120.103537,36.260529],[-120.103537,36.269626],[-120.085657,36.269783],[-120.085501,36.284369],[-120.067621,36.284369],[-120.067778,36.269940],[-120.048486,36.269783],[-120.048643,36.255511],[-120.067935,36.255511],[-120.067621,36.254726],[-120.067621,36.250021],[-120.067935,36.230730],[-120.067307,36.229475],[-120.065111,36.226181],[-120.048329,36.226181],[-120.048329,36.223986],[-120.052250,36.222574],[-120.055858,36.220849],[-120.073581,36.214105],[-120.077188,36.212693],[-120.080168,36.211909],[-120.084246,36.210341],[-120.082991,36.210184],[-120.082207,36.210341],[-120.068248,36.210497],[-120.067778,36.210654],[-120.067464,36.195911],[-120.076561,36.195754],[-120.076404,36.181482],[-120.085344,36.181482],[-120.085187,36.166896],[-120.057426,36.166896],[-120.057269,36.180855],[-120.057426,36.181011],[-120.058838,36.181011],[-120.067307,36.181011],[-120.067307,36.181639],[-120.044565,36.181482],[-120.044879,36.181952],[-120.048173,36.181952],[-120.048486,36.182423],[-120.048486,36.186814],[-120.048173,36.188540],[-120.048329,36.194970],[-120.047545,36.195754],[-120.030450,36.195754],[-120.030450,36.210341],[-119.995004,36.210497],[-119.995161,36.196068],[-119.958930,36.196068]]]}}
,{"id":93616,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-119.645877,36.667844],[-119.645877,36.677882],[-119.636937,36.677882],[-119.636937,36.685096],[-119.627997,36.685096],[-119.627997,36.677725],[-119.610117,36.677568],[-119.565418,36.677725],[-119.565418,36.666903],[-119.566829,36.666276],[-119.567614,36.665021],[-119.569182,36.664394],[-119.569966,36.663139],[-119.546911,36.663139],[-119.546597,36.660159],[-119.546754,36.660002],[-119.546597,36.656552],[-119.546597,36.655767],[-119.547067,36.654669],[-119.548009,36.652787],[-119.549891,36.650592],[-119.550832,36.648239],[-119.551459,36.647298],[-119.553812,36.645102],[-119.554753,36.642593],[-119.556478,36.641495],[-119.557889,36.639613],[-119.560085,36.637417],[-119.560556,36.635221],[-119.561497,36.634123],[-119.556635,36.634123],[-119.556635,36.631143],[-119.565575,36.631300],[-119.565418,36.626752],[-119.574828,36.626752],[-119.574828,36.619694],[-119.592865,36.619694],[-119.592708,36.630046],[-119.592865,36.630673],[-119.592865,36.634280],[-119.610588,36.634437],[-119.610588,36.649023],[-119.628468,36.648866],[-119.628468,36.656865],[-119.642426,36.656865],[-119.642426,36.663453],[-119.645877,36.663453],[-119.645877,36.667844]]]}}
,{"id":95503,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-124.111751,40.805451],[-124.110339,40.805137],[-124.109869,40.804667],[-124.109398,40.803883],[-124.109398,40.803099],[-124.109085,40.802314],[-124.108301,40.801687],[-124.107830,40.802001],[-124.107516,40.803255],[-124.107360,40.803569],[-124.106575,40.803883],[-124.106105,40.803883],[-124.105791,40.803569],[-124.105321,40.802157],[-124.105007,40.802001],[-124.102811,40.801216],[-124.101870,40.801373],[-124.101086,40.803099],[-124.100615,40.803412],[-124.099988,40.803569],[-124.099047,40.803255],[-124.098733,40.802942],[-124.098106,40.801373],[-124.097008,40.801687],[-124.096694,40.801844],[-124.096067,40.802942],[-124.096067,40.802471],[-124.096538,40.801530],[-124.096067,40.801060],[-124.094655,40.800275],[-124.094185,40.800275],[-124.093558,40.800746],[-124.092773,40.802314],[-124.091832,40.802785],[-124.090891,40.802785],[-124.090107,40.802314],[-124.088225,40.802314],[-124.088068,40.802314],[-124.088068,40.801530],[-124.087911,40.801530],[-124.087911,40.804510],[-124.090578,40.804667],[-124.087754,40.812823],[-124.087441,40.812979],[-124.085872,40.810156],[-124.085402,40.810627],[-124.082422,40.813921],[-124.078658,40.814077],[-124.078815,40.814391],[-124.082108,40.814391],[-124.080383,40.816430],[-124.053563,40.816430],[-124.052936,40.800589],[-124.058425,40.800589],[-124.062660,40.799491],[-124.065483,40.798707],[-124.062660,40.789297],[-124.062346,40.786787],[-124.061405,40.787101],[-124.058739,40.786473],[-124.058268,40.786160],[-124.058268,40.785376],[-124.057798,40.785219],[-124.057484,40.785376],[-124.057327,40.785689],[-124.052465,40.786003],[-124.051681,40.765614],[-124.027214,40.765300],[-124.026116,40.765614],[-124.024861,40.765457],[-124.006197,40.765300],[-124.006354,40.684684],[-124.006354,40.670568],[-124.005884,40.670255],[-124.005413,40.669000],[-124.005100,40.668843],[-124.004786,40.669000],[-124.004786,40.669784],[-124.004472,40.669941],[-124.004002,40.669941],[-124.002904,40.669314],[-124.001179,40.669157],[-123.998983,40.669627],[-123.997101,40.669157],[-123.996630,40.668529],[-123.994905,40.668529],[-123.993337,40.668059],[-123.992866,40.667588],[-123.993180,40.666961],[-123.993180,40.666647],[-123.991925,40.666491],[-123.990200,40.665549],[-123.989729,40.664922],[-123.989729,40.663824],[-123.988945,40.663511],[-123.988631,40.662726],[-123.988161,40.662256],[-123.987847,40.662099],[-123.987690,40.662099],[-123.987847,40.662726],[-123.987690,40.663040],[-123.987377,40.663197],[-123.987063,40.663040],[-123.986122,40.662570],[-123.985651,40.661628],[-123.984553,40.660844],[-123.984397,40.659903],[-123.984240,40.659276],[-123.984397,40.658805],[-123.984867,40.658335],[-123.984710,40.658178],[-123.983769,40.658021],[-123.983299,40.657237],[-123.983769,40.656453],[-123.985495,40.655512],[-123.985965,40.654727],[-123.987063,40.654100],[-123.987220,40.653473],[-123.987690,40.652845],[-123.988004,40.652061],[-123.988631,40.651434],[-123.989886,40.650650],[-123.991141,40.650650],[-123.991454,40.650022],[-123.992239,40.649709],[-123.993023,40.648924],[-123.992866,40.648454],[-123.992239,40.648140],[-123.991298,40.647356],[-123.990984,40.646885],[-123.991141,40.646415],[-123.992082,40.644533],[-123.991925,40.642808],[-123.992552,40.642023],[-123.994278,40.641239],[-123.994591,40.639828],[-123.995062,40.639357],[-123.996003,40.637161],[-123.996003,40.636377],[-123.994278,40.631829],[-123.993807,40.631672],[-123.992552,40.631829],[-123.992395,40.631201],[-123.992395,40.629947],[-123.992552,40.629633],[-123.993493,40.629163],[-123.993650,40.628692],[-123.993180,40.628378],[-123.992239,40.628535],[-123.991768,40.628221],[-123.991768,40.627908],[-123.992239,40.627280],[-123.993023,40.626496],[-123.993023,40.625398],[-123.993337,40.624928],[-123.992866,40.623516],[-123.993337,40.622575],[-123.993337,40.622105],[-123.992552,40.621164],[-123.992082,40.620066],[-123.991768,40.619909],[-123.990984,40.618497],[-123.991768,40.618497],[-123.994905,40.619595],[-123.995532,40.619595],[-123.996473,40.619438],[-123.998199,40.619595],[-123.998826,40.619438],[-123.999140,40.618968],[-124.000238,40.618497],[-124.000708,40.618027],[-124.002433,40.617713],[-124.004159,40.617556],[-124.005413,40.617870],[-124.006041,40.618341],[-124.006982,40.618341],[-124.007295,40.618497],[-124.008236,40.620223],[-124.009177,40.620223],[-124.010903,40.621007],[-124.013883,40.620379],[-124.014981,40.619909],[-124.015608,40.619595],[-124.016706,40.618027],[-124.018431,40.617399],[-124.019058,40.617399],[-124.021411,40.618027],[-124.022666,40.618027],[-124.024234,40.618811],[-124.025332,40.618968],[-124.025802,40.618968],[-124.027528,40.618497],[-124.028782,40.618497],[-124.028939,40.618811],[-124.031135,40.619909],[-124.031606,40.620223],[-124.031919,40.621791],[-124.032233,40.622889],[-124.032233,40.623203],[-124.032390,40.623673],[-124.033331,40.625241],[-124.033958,40.625712],[-124.035213,40.625712],[-124.038036,40.626339],[-124.038977,40.626967],[-124.039761,40.627280],[-124.040702,40.628221],[-124.041643,40.628849],[-124.041957,40.629947],[-124.042271,40.630574],[-124.042741,40.630888],[-124.042898,40.631201],[-124.044310,40.632299],[-124.044780,40.632770],[-124.044937,40.633397],[-124.045564,40.633711],[-124.046035,40.634495],[-124.047290,40.635436],[-124.048074,40.635593],[-124.048858,40.635436],[-124.047290,40.636534],[-124.044153,40.637318],[-124.043055,40.638102],[-124.041957,40.640612],[-124.041330,40.641710],[-124.038820,40.643749],[-124.038977,40.644376],[-124.038977,40.645317],[-124.039134,40.645788],[-124.040859,40.646729],[-124.041957,40.647827],[-124.043055,40.648454],[-124.046976,40.649081],[-124.048231,40.649709],[-124.048544,40.650179],[-124.048701,40.650493],[-124.049329,40.650806],[-124.050113,40.651434],[-124.050113,40.652061],[-124.052309,40.653159],[-124.053250,40.653473],[-124.053563,40.653786],[-124.054034,40.655198],[-124.054191,40.655825],[-124.054191,40.656766],[-124.054504,40.656923],[-124.056543,40.658335],[-124.057798,40.659433],[-124.059053,40.659903],[-124.059523,40.660531],[-124.060307,40.661628],[-124.060778,40.661942],[-124.061092,40.662726],[-124.061719,40.663197],[-124.062346,40.663511],[-124.062346,40.663824],[-124.063287,40.664138],[-124.064072,40.664922],[-124.064856,40.665079],[-124.065640,40.665079],[-124.065640,40.665393],[-124.065797,40.665393],[-124.065954,40.665863],[-124.067052,40.666491],[-124.067836,40.667118],[-124.069090,40.667588],[-124.070816,40.670412],[-124.072070,40.671666],[-124.072855,40.671823],[-124.073482,40.671980],[-124.074109,40.672607],[-124.075991,40.673235],[-124.077874,40.673705],[-124.081795,40.674019],[-124.082265,40.674333],[-124.083520,40.674176],[-124.084304,40.674646],[-124.085088,40.674646],[-124.086500,40.675117],[-124.088068,40.675901],[-124.088539,40.675901],[-124.089323,40.675587],[-124.091989,40.675117],[-124.092460,40.674803],[-124.093401,40.673548],[-124.094499,40.673392],[-124.095440,40.673078],[-124.096224,40.673078],[-124.096851,40.673235],[-124.097322,40.673235],[-124.097322,40.673548],[-124.097792,40.673705],[-124.099204,40.673235],[-124.100302,40.673548],[-124.101243,40.674176],[-124.102497,40.673862],[-124.103439,40.674019],[-124.103909,40.674333],[-124.104380,40.675117],[-124.106262,40.675117],[-124.107046,40.675587],[-124.108144,40.675587],[-124.108928,40.676371],[-124.109398,40.676215],[-124.109869,40.676215],[-124.110026,40.676528],[-124.109712,40.677783],[-124.109869,40.677940],[-124.111281,40.677940],[-124.114731,40.679351],[-124.115672,40.679508],[-124.119750,40.680920],[-124.121005,40.681077],[-124.122259,40.681077],[-124.123200,40.681234],[-124.124141,40.682488],[-124.124298,40.683116],[-124.124769,40.683900],[-124.125553,40.684684],[-124.125867,40.685155],[-124.126180,40.685155],[-124.125867,40.685468],[-124.126180,40.685782],[-124.126494,40.686252],[-124.126337,40.687037],[-124.126651,40.687507],[-124.127592,40.687664],[-124.127592,40.687350],[-124.128690,40.687037],[-124.128847,40.687350],[-124.128533,40.687978],[-124.128690,40.688448],[-124.129631,40.688919],[-124.130258,40.688919],[-124.130415,40.687664],[-124.131042,40.687507],[-124.131356,40.687978],[-124.131827,40.689232],[-124.132454,40.689703],[-124.133081,40.689703],[-124.134179,40.689076],[-124.134807,40.689389],[-124.134963,40.690017],[-124.135120,40.690173],[-124.136218,40.690173],[-124.139198,40.691271],[-124.141080,40.691271],[-124.141708,40.691585],[-124.142021,40.692056],[-124.142805,40.692056],[-124.143746,40.691585],[-124.144217,40.691742],[-124.145629,40.688919],[-124.145472,40.687350],[-124.145001,40.686252],[-124.144531,40.685311],[-124.144060,40.683116],[-124.144217,40.682175],[-124.145001,40.680136],[-124.145158,40.679351],[-124.147040,40.678881],[-124.152216,40.679038],[-124.152373,40.679979],[-124.151902,40.680292],[-124.151432,40.681390],[-124.150334,40.682331],[-124.149550,40.682645],[-124.148922,40.683586],[-124.149079,40.684057],[-124.149079,40.684841],[-124.149550,40.685311],[-124.150020,40.686096],[-124.150020,40.686723],[-124.150177,40.687037],[-124.149863,40.687664],[-124.150020,40.688135],[-124.149863,40.688762],[-124.149236,40.689860],[-124.149236,40.690801],[-124.148922,40.691271],[-124.148765,40.691428],[-124.147668,40.692056],[-124.147354,40.692369],[-124.147668,40.693624],[-124.148609,40.693781],[-124.148452,40.694565],[-124.148609,40.695035],[-124.148452,40.695820],[-124.148609,40.696604],[-124.148922,40.696918],[-124.149706,40.697388],[-124.150177,40.698800],[-124.150647,40.699427],[-124.152216,40.700211],[-124.153314,40.700368],[-124.157235,40.700525],[-124.158646,40.700211],[-124.159901,40.700211],[-124.162097,40.699741],[-124.162724,40.698956],[-124.163038,40.698800],[-124.167900,40.697388],[-124.168370,40.696918],[-124.168841,40.695977],[-124.169468,40.695506],[-124.170566,40.694251],[-124.170880,40.692840],[-124.171507,40.691899],[-124.171350,40.690644],[-124.171507,40.690330],[-124.171821,40.690017],[-124.172762,40.689546],[-124.173389,40.688762],[-124.174017,40.688448],[-124.176212,40.685311],[-124.176056,40.683272],[-124.175115,40.681390],[-124.174644,40.679351],[-124.177310,40.679508],[-124.177153,40.692056],[-124.189230,40.692212],[-124.192838,40.693938],[-124.197229,40.694094],[-124.200366,40.697074],[-124.203503,40.699741],[-124.204757,40.701466],[-124.206953,40.703975],[-124.208835,40.706485],[-124.209149,40.707896],[-124.211031,40.709465],[-124.214795,40.714327],[-124.215266,40.715425],[-124.215579,40.716366],[-124.216364,40.716366],[-124.216520,40.718248],[-124.219030,40.721228],[-124.219814,40.722639],[-124.215579,40.722639],[-124.215423,40.722012],[-124.215266,40.721698],[-124.214325,40.730952],[-124.214011,40.731736],[-124.213384,40.732991],[-124.210404,40.736128],[-124.210561,40.736285],[-124.213227,40.733461],[-124.213540,40.733775],[-124.214638,40.732520],[-124.215579,40.730952],[-124.215893,40.730795],[-124.216364,40.730638],[-124.216677,40.730952],[-124.216520,40.732991],[-124.216677,40.733305],[-124.217775,40.732520],[-124.218559,40.732677],[-124.218716,40.732520],[-124.218716,40.732050],[-124.217775,40.732050],[-124.217775,40.729384],[-124.218246,40.727815],[-124.218873,40.727031],[-124.219344,40.725619],[-124.220598,40.726090],[-124.220285,40.726560],[-124.220128,40.727345],[-124.220598,40.727658],[-124.220912,40.727345],[-124.220441,40.727188],[-124.220441,40.727031],[-124.221382,40.725776],[-124.221382,40.724365],[-124.222324,40.723894],[-124.222794,40.723267],[-124.223265,40.723580],[-124.223421,40.723737],[-124.231577,40.723580],[-124.229852,40.729384],[-124.227656,40.734873],[-124.225774,40.744440],[-124.224833,40.749773],[-124.222951,40.753066],[-124.220441,40.756360],[-124.216834,40.759967],[-124.213384,40.764516],[-124.209776,40.769221],[-124.207737,40.770946],[-124.203973,40.773456],[-124.201464,40.776592],[-124.193622,40.784905],[-124.192994,40.785062],[-124.190642,40.784748],[-124.190485,40.783807],[-124.191269,40.782082],[-124.192210,40.781925],[-124.193151,40.781298],[-124.193779,40.780514],[-124.187819,40.780514],[-124.188132,40.779259],[-124.187662,40.778945],[-124.186093,40.779416],[-124.184525,40.780514],[-124.180290,40.780514],[-124.180447,40.782082],[-124.179192,40.782866],[-124.178722,40.783023],[-124.177153,40.783023],[-124.177153,40.780514],[-124.176683,40.780514],[-124.176683,40.781298],[-124.176056,40.781298],[-124.176056,40.780514],[-124.160058,40.780357],[-124.160058,40.781141],[-124.158960,40.781141],[-124.158960,40.780357],[-124.156764,40.780357],[-124.156764,40.781141],[-124.154568,40.781141],[-124.154568,40.780357],[-124.149079,40.780357],[-124.149079,40.780827],[-124.147981,40.780827],[-124.147981,40.780357],[-124.139669,40.780514],[-124.139669,40.781141],[-124.135120,40.784121],[-124.130258,40.784121],[-124.130258,40.780514],[-124.125867,40.780514],[-124.125553,40.780827],[-124.125553,40.783337],[-124.123671,40.783964],[-124.122573,40.784121],[-124.121475,40.784591],[-124.120691,40.784748],[-124.119123,40.787414],[-124.117397,40.788356],[-124.116770,40.788356],[-124.115986,40.788042],[-124.114888,40.788356],[-124.114731,40.788983],[-124.113319,40.790238],[-124.112222,40.790865],[-124.111908,40.791492],[-124.112222,40.794472],[-124.112535,40.794943],[-124.113163,40.795413],[-124.118652,40.796041],[-124.119593,40.795727],[-124.120534,40.795570],[-124.121005,40.795884],[-124.121475,40.796511],[-124.121475,40.797923],[-124.121005,40.799021],[-124.120064,40.800119],[-124.118182,40.801216],[-124.117711,40.802157],[-124.117084,40.801373],[-124.115829,40.800589],[-124.114417,40.799962],[-124.114104,40.799962],[-124.114104,40.800119],[-124.114731,40.800432],[-124.113633,40.800746],[-124.111751,40.800119],[-124.111751,40.800903],[-124.108457,40.799491],[-124.108144,40.800746],[-124.110183,40.802314],[-124.110496,40.803569],[-124.110653,40.804196],[-124.111751,40.804824],[-124.111751,40.805451]]]}}
,{"id":95554,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-123.683577,40.239728],[-123.682949,40.239571],[-123.682636,40.239257],[-123.682636,40.238316],[-123.681067,40.236905],[-123.681224,40.236434],[-123.681538,40.236277],[-123.682322,40.235964],[-123.682479,40.235807],[-123.682479,40.235179],[-123.682322,40.234709],[-123.681695,40.233925],[-123.681851,40.233925],[-123.682949,40.234081],[-123.683734,40.234709],[-123.684831,40.234866],[-123.685929,40.234552],[-123.687027,40.235336],[-123.687027,40.235964],[-123.687341,40.236120],[-123.689223,40.236277],[-123.690478,40.236905],[-123.691419,40.236748],[-123.692046,40.236905],[-123.692673,40.236748],[-123.694556,40.236748],[-123.696594,40.236591],[-123.698947,40.236905],[-123.699731,40.237218],[-123.700202,40.237218],[-123.700672,40.236905],[-123.700986,40.236905],[-123.700986,40.237375],[-123.702241,40.237375],[-123.702711,40.237375],[-123.702868,40.237061],[-123.703182,40.236277],[-123.703495,40.235964],[-123.704593,40.235650],[-123.705848,40.235964],[-123.705691,40.236434],[-123.705848,40.236591],[-123.706946,40.236905],[-123.708201,40.239100],[-123.708514,40.240512],[-123.708514,40.241453],[-123.708828,40.241767],[-123.710396,40.242394],[-123.710553,40.243021],[-123.711337,40.243492],[-123.712749,40.243962],[-123.713376,40.244276],[-123.713690,40.244276],[-123.713847,40.243649],[-123.713690,40.242551],[-123.714317,40.241296],[-123.714317,40.240669],[-123.715102,40.239728],[-123.715258,40.237846],[-123.715886,40.237218],[-123.715886,40.236434],[-123.716356,40.236277],[-123.716827,40.235807],[-123.716827,40.235336],[-123.716513,40.234866],[-123.716356,40.234081],[-123.715886,40.233611],[-123.715886,40.233297],[-123.716200,40.232513],[-123.716200,40.232043],[-123.715102,40.231572],[-123.715102,40.231258],[-123.715572,40.229533],[-123.715258,40.228749],[-123.715729,40.226396],[-123.715102,40.225455],[-123.714945,40.224357],[-123.715729,40.224671],[-123.716043,40.224671],[-123.716043,40.224357],[-123.715729,40.223730],[-123.714631,40.222789],[-123.713220,40.220593],[-123.712122,40.219966],[-123.710867,40.219809],[-123.710553,40.219652],[-123.709926,40.218397],[-123.709926,40.217613],[-123.709612,40.217143],[-123.708985,40.216515],[-123.707887,40.215261],[-123.706162,40.213849],[-123.705378,40.213692],[-123.705064,40.213379],[-123.705221,40.211810],[-123.706789,40.210712],[-123.707573,40.209771],[-123.707730,40.208830],[-123.707573,40.208360],[-123.705848,40.207419],[-123.705691,40.207105],[-123.705848,40.206321],[-123.707887,40.203341],[-123.708671,40.201772],[-123.706632,40.198008],[-123.706632,40.197224],[-123.706789,40.197067],[-123.706946,40.197224],[-123.707416,40.198322],[-123.708514,40.198792],[-123.708985,40.199733],[-123.710710,40.200047],[-123.711808,40.201459],[-123.712906,40.201929],[-123.713376,40.202557],[-123.714474,40.202870],[-123.715886,40.203027],[-123.716356,40.203654],[-123.716984,40.205066],[-123.717454,40.205380],[-123.719964,40.204439],[-123.721689,40.204125],[-123.723257,40.204752],[-123.725767,40.204595],[-123.726865,40.204752],[-123.727649,40.205380],[-123.728904,40.206164],[-123.729060,40.206948],[-123.731570,40.210712],[-123.733609,40.211810],[-123.734550,40.211810],[-123.735491,40.212594],[-123.736275,40.212751],[-123.737843,40.212438],[-123.739726,40.213065],[-123.741294,40.213065],[-123.742078,40.213222],[-123.743490,40.213065],[-123.744117,40.213379],[-123.744274,40.213849],[-123.744588,40.214006],[-123.746470,40.214006],[-123.749450,40.215417],[-123.750704,40.215574],[-123.752900,40.217300],[-123.753841,40.217770],[-123.754782,40.218554],[-123.755566,40.219809],[-123.756037,40.221221],[-123.756507,40.221691],[-123.757919,40.222318],[-123.758390,40.223259],[-123.759958,40.223887],[-123.760585,40.224514],[-123.761526,40.225926],[-123.761370,40.226867],[-123.761840,40.227651],[-123.761840,40.228122],[-123.760429,40.230317],[-123.760742,40.231415],[-123.761213,40.232199],[-123.761840,40.232670],[-123.761997,40.234552],[-123.761997,40.235964],[-123.761526,40.237375],[-123.762624,40.240198],[-123.763408,40.241296],[-123.765918,40.243021],[-123.766232,40.244433],[-123.766232,40.245688],[-123.765291,40.247099],[-123.764977,40.248511],[-123.765134,40.248981],[-123.765604,40.249452],[-123.765291,40.250393],[-123.765447,40.251804],[-123.766232,40.253059],[-123.766545,40.253216],[-123.766859,40.253687],[-123.769055,40.254628],[-123.770623,40.255882],[-123.771250,40.256039],[-123.771721,40.256039],[-123.772192,40.255412],[-123.773133,40.255725],[-123.774387,40.255255],[-123.775015,40.255255],[-123.775328,40.254314],[-123.775328,40.253216],[-123.775172,40.252902],[-123.775172,40.252745],[-123.776269,40.251648],[-123.777367,40.250863],[-123.777681,40.250393],[-123.778308,40.249922],[-123.778936,40.249766],[-123.780818,40.250707],[-123.780347,40.249922],[-123.780034,40.248824],[-123.780034,40.248511],[-123.780504,40.248197],[-123.781288,40.248511],[-123.781916,40.249138],[-123.782857,40.249452],[-123.783641,40.249295],[-123.784739,40.249609],[-123.785523,40.249609],[-123.786464,40.249922],[-123.786621,40.250079],[-123.788503,40.249766],[-123.790071,40.251491],[-123.790385,40.252589],[-123.791012,40.252745],[-123.791640,40.252432],[-123.792110,40.252275],[-123.792581,40.251648],[-123.793836,40.251334],[-123.794620,40.250863],[-123.795404,40.250863],[-123.795718,40.250707],[-123.796031,40.249609],[-123.796502,40.249295],[-123.797129,40.248197],[-123.797757,40.247883],[-123.799168,40.248197],[-123.800423,40.247883],[-123.801050,40.247256],[-123.802932,40.247413],[-123.803873,40.247099],[-123.804344,40.247413],[-123.804814,40.247256],[-123.805912,40.247256],[-123.806853,40.247256],[-123.807324,40.247413],[-123.807794,40.248040],[-123.808735,40.248354],[-123.809363,40.248981],[-123.810147,40.248824],[-123.810931,40.248824],[-123.811245,40.248668],[-123.811558,40.248040],[-123.812343,40.247727],[-123.812970,40.247099],[-123.813127,40.246001],[-123.813911,40.244903],[-123.814068,40.244119],[-123.813754,40.243649],[-123.813754,40.242551],[-123.813754,40.241924],[-123.812813,40.240669],[-123.812970,40.240512],[-123.813754,40.239571],[-123.813911,40.238002],[-123.816421,40.237689],[-123.816264,40.240669],[-123.819401,40.240826],[-123.821439,40.240669],[-123.821283,40.239885],[-123.821596,40.239728],[-123.821753,40.240355],[-123.821910,40.240355],[-123.820812,40.242551],[-123.822694,40.246942],[-123.823008,40.248040],[-123.823008,40.248981],[-123.822380,40.251648],[-123.821753,40.252589],[-123.820969,40.253530],[-123.820812,40.254157],[-123.821126,40.254941],[-123.821439,40.255412],[-123.823478,40.255725],[-123.824733,40.256353],[-123.823322,40.256823],[-123.824106,40.257608],[-123.824106,40.257764],[-123.823165,40.258078],[-123.824106,40.258862],[-123.823792,40.259803],[-123.823949,40.260274],[-123.823165,40.259960],[-123.821439,40.259960],[-123.820655,40.260274],[-123.819714,40.259960],[-123.815793,40.267802],[-123.816891,40.268586],[-123.818146,40.268586],[-123.820342,40.269371],[-123.825674,40.270468],[-123.827086,40.270468],[-123.828497,40.269684],[-123.828340,40.271410],[-123.828968,40.271723],[-123.829752,40.271880],[-123.830536,40.271566],[-123.831634,40.271723],[-123.834457,40.271566],[-123.835869,40.271723],[-123.836810,40.271723],[-123.837594,40.271880],[-123.838535,40.271566],[-123.839633,40.272507],[-123.840260,40.272507],[-123.841201,40.272507],[-123.841044,40.273292],[-123.845907,40.273448],[-123.845907,40.280977],[-123.846691,40.280506],[-123.850141,40.279722],[-123.851710,40.279252],[-123.852494,40.278781],[-123.852964,40.278310],[-123.853905,40.280193],[-123.854690,40.280977],[-123.856885,40.282545],[-123.857042,40.282231],[-123.859708,40.282388],[-123.860493,40.282231],[-123.860963,40.281447],[-123.860650,40.280977],[-123.859552,40.280506],[-123.859395,40.279565],[-123.859708,40.278781],[-123.861434,40.277526],[-123.861434,40.275801],[-123.860806,40.274703],[-123.860179,40.274389],[-123.858140,40.273919],[-123.857983,40.273762],[-123.857826,40.272821],[-123.857983,40.272351],[-123.858140,40.272194],[-123.860650,40.271096],[-123.862061,40.270939],[-123.862532,40.270625],[-123.863630,40.270468],[-123.864727,40.269998],[-123.864884,40.269371],[-123.866453,40.267175],[-123.866923,40.265450],[-123.867551,40.264195],[-123.868335,40.263097],[-123.870060,40.262156],[-123.871315,40.261529],[-123.873197,40.260274],[-123.873981,40.260117],[-123.876177,40.259960],[-123.878686,40.260117],[-123.879314,40.260431],[-123.879784,40.260901],[-123.880098,40.261685],[-123.880098,40.262156],[-123.879314,40.264665],[-123.878216,40.265920],[-123.878686,40.266077],[-123.879000,40.266391],[-123.878686,40.267488],[-123.878216,40.268116],[-123.878529,40.268743],[-123.878059,40.270312],[-123.878059,40.271096],[-123.879314,40.272037],[-123.880568,40.272664],[-123.881509,40.272821],[-123.881980,40.273135],[-123.886528,40.273292],[-123.888097,40.274076],[-123.888881,40.274703],[-123.889351,40.275644],[-123.889351,40.275958],[-123.888724,40.276742],[-123.888881,40.278781],[-123.889979,40.281604],[-123.890292,40.282859],[-123.890920,40.283643],[-123.893900,40.283486],[-123.895939,40.283957],[-123.897037,40.284898],[-123.897821,40.286309],[-123.900173,40.288348],[-123.902055,40.291485],[-123.901899,40.292583],[-123.901899,40.293524],[-123.901428,40.294465],[-123.901271,40.294465],[-123.900330,40.295406],[-123.899860,40.295563],[-123.898919,40.296190],[-123.897821,40.296818],[-123.896409,40.296974],[-123.895625,40.297131],[-123.895311,40.297759],[-123.894998,40.298857],[-123.894998,40.300111],[-123.894684,40.300896],[-123.894684,40.301366],[-123.894841,40.301680],[-123.895311,40.302150],[-123.895625,40.302307],[-123.896252,40.302150],[-123.896723,40.301680],[-123.897193,40.301366],[-123.899389,40.301523],[-123.900173,40.301680],[-123.902683,40.302621],[-123.904879,40.303875],[-123.905820,40.304189],[-123.908643,40.305444],[-123.909113,40.305914],[-123.909270,40.306228],[-123.911152,40.307169],[-123.912407,40.308110],[-123.913662,40.309365],[-123.913034,40.309365],[-123.912721,40.309679],[-123.912721,40.310306],[-123.912407,40.310620],[-123.910525,40.310933],[-123.910054,40.311247],[-123.909270,40.312345],[-123.910525,40.312972],[-123.913662,40.313913],[-123.915857,40.314697],[-123.919935,40.317207],[-123.920406,40.317677],[-123.920876,40.318462],[-123.921190,40.321598],[-123.919778,40.321128],[-123.919465,40.319873],[-123.918367,40.319716],[-123.918210,40.318305],[-123.917583,40.317834],[-123.917426,40.317991],[-123.917112,40.318305],[-123.916798,40.318775],[-123.915387,40.319089],[-123.915387,40.320030],[-123.914132,40.321128],[-123.913505,40.321598],[-123.913191,40.321755],[-123.913034,40.321755],[-123.913191,40.321128],[-123.912564,40.319873],[-123.912250,40.319716],[-123.911466,40.320344],[-123.910368,40.319873],[-123.909113,40.319873],[-123.908329,40.320344],[-123.907545,40.320187],[-123.905820,40.320501],[-123.905506,40.320030],[-123.905035,40.319873],[-123.900958,40.320030],[-123.899389,40.319716],[-123.898134,40.320344],[-123.895311,40.319716],[-123.892488,40.319873],[-123.891861,40.320187],[-123.891704,40.320344],[-123.884489,40.322696],[-123.873981,40.326460],[-123.868021,40.327872],[-123.868021,40.329284],[-123.867551,40.330068],[-123.867551,40.330852],[-123.866923,40.332577],[-123.867080,40.333048],[-123.866609,40.333989],[-123.866609,40.336341],[-123.866453,40.336655],[-123.866609,40.337596],[-123.866139,40.338380],[-123.865825,40.338694],[-123.865198,40.338851],[-123.864414,40.338851],[-123.863473,40.338380],[-123.861904,40.338380],[-123.861434,40.337282],[-123.859865,40.336655],[-123.859395,40.336341],[-123.858297,40.336028],[-123.854376,40.336655],[-123.851866,40.334773],[-123.850925,40.334616],[-123.850455,40.334146],[-123.848730,40.333205],[-123.847789,40.333048],[-123.846848,40.333205],[-123.846377,40.333205],[-123.845279,40.332107],[-123.844495,40.331009],[-123.844495,40.330852],[-123.845279,40.330382],[-123.845279,40.330068],[-123.843868,40.329440],[-123.843240,40.328343],[-123.842456,40.328186],[-123.840731,40.326617],[-123.839006,40.325519],[-123.839162,40.325833],[-123.838849,40.326304],[-123.837437,40.325363],[-123.837123,40.325206],[-123.836026,40.323951],[-123.832732,40.321755],[-123.831634,40.321442],[-123.829125,40.321285],[-123.825204,40.320344],[-123.824263,40.319716],[-123.823949,40.319716],[-123.823949,40.320344],[-123.816891,40.319403],[-123.815793,40.319089],[-123.815479,40.318932],[-123.815479,40.318775],[-123.812813,40.318462],[-123.811088,40.317991],[-123.809676,40.317364],[-123.807637,40.316893],[-123.805755,40.315639],[-123.804658,40.314541],[-123.803089,40.313913],[-123.800109,40.315482],[-123.796502,40.315952],[-123.792894,40.317050],[-123.787876,40.318148],[-123.786150,40.318305],[-123.784739,40.318618],[-123.783327,40.319560],[-123.782857,40.319560],[-123.783014,40.318932],[-123.781916,40.318932],[-123.778622,40.319873],[-123.776269,40.319560],[-123.773917,40.318775],[-123.773917,40.318618],[-123.773289,40.318148],[-123.772662,40.318148],[-123.772192,40.318148],[-123.771250,40.318462],[-123.769996,40.318462],[-123.769996,40.319560],[-123.771094,40.320971],[-123.771094,40.322696],[-123.769996,40.323637],[-123.768741,40.324265],[-123.768427,40.324578],[-123.768427,40.325049],[-123.768898,40.326147],[-123.767643,40.325990],[-123.767173,40.325676],[-123.766702,40.325206],[-123.766388,40.325206],[-123.765604,40.324735],[-123.764506,40.324578],[-123.765761,40.325676],[-123.766232,40.327245],[-123.767016,40.327715],[-123.767800,40.327558],[-123.767643,40.328186],[-123.767800,40.328813],[-123.767329,40.329284],[-123.767486,40.331009],[-123.767329,40.331166],[-123.764036,40.332107],[-123.763252,40.332734],[-123.762624,40.332734],[-123.761683,40.333361],[-123.761997,40.333832],[-123.761840,40.334773],[-123.762938,40.335400],[-123.763252,40.335714],[-123.762624,40.336498],[-123.761526,40.337126],[-123.761213,40.337753],[-123.761840,40.338694],[-123.762467,40.339008],[-123.761997,40.339165],[-123.761683,40.339165],[-123.761526,40.339165],[-123.761526,40.339478],[-123.762311,40.339635],[-123.762467,40.339949],[-123.761370,40.342615],[-123.761526,40.343713],[-123.760899,40.343870],[-123.760585,40.345438],[-123.759017,40.345438],[-123.758390,40.345438],[-123.758390,40.345752],[-123.758860,40.346222],[-123.758860,40.346536],[-123.758076,40.347634],[-123.757449,40.347634],[-123.757449,40.347791],[-123.758390,40.348889],[-123.758703,40.349359],[-123.758546,40.349673],[-123.759174,40.350457],[-123.758546,40.351241],[-123.758703,40.351869],[-123.758546,40.352025],[-123.759174,40.352810],[-123.758233,40.356260],[-123.757605,40.356731],[-123.755723,40.356103],[-123.755096,40.354692],[-123.755096,40.354064],[-123.754625,40.353437],[-123.753998,40.352967],[-123.753841,40.352967],[-123.753528,40.352339],[-123.753684,40.351555],[-123.753528,40.351241],[-123.752900,40.350457],[-123.752743,40.349830],[-123.752586,40.349359],[-123.752116,40.349202],[-123.751645,40.348575],[-123.751489,40.347948],[-123.750077,40.347320],[-123.749450,40.347007],[-123.748665,40.346222],[-123.747881,40.346066],[-123.747411,40.345595],[-123.746940,40.345438],[-123.745999,40.345281],[-123.745215,40.345595],[-123.744274,40.345281],[-123.742862,40.345438],[-123.732354,40.341047],[-123.732040,40.340890],[-123.732197,40.340733],[-123.732040,40.340576],[-123.732040,40.340419],[-123.731727,40.339635],[-123.731099,40.339321],[-123.730001,40.338380],[-123.729531,40.337753],[-123.728904,40.337596],[-123.728747,40.336969],[-123.728747,40.336812],[-123.727806,40.336341],[-123.726865,40.336028],[-123.725610,40.334146],[-123.724198,40.333361],[-123.723728,40.333048],[-123.721062,40.327245],[-123.726865,40.320814],[-123.729374,40.320344],[-123.732668,40.318775],[-123.734079,40.315795],[-123.735961,40.313600],[-123.736275,40.311090],[-123.738157,40.308581],[-123.735177,40.303562],[-123.735805,40.297759],[-123.735805,40.295092],[-123.734079,40.294779],[-123.733295,40.294779],[-123.732668,40.294936],[-123.731256,40.295092],[-123.730472,40.294779],[-123.730943,40.291015],[-123.730943,40.290701],[-123.730472,40.289917],[-123.730315,40.288505],[-123.729688,40.287094],[-123.729217,40.286780],[-123.728904,40.286466],[-123.728904,40.285839],[-123.729374,40.285211],[-123.730629,40.284584],[-123.732668,40.282859],[-123.732825,40.281761],[-123.733452,40.280349],[-123.733609,40.278467],[-123.734236,40.276428],[-123.736902,40.273605],[-123.736432,40.273135],[-123.736432,40.272821],[-123.736902,40.271880],[-123.736902,40.271410],[-123.736746,40.270782],[-123.736746,40.270312],[-123.736902,40.270155],[-123.734393,40.268430],[-123.732511,40.268273],[-123.731256,40.268273],[-123.730315,40.268743],[-123.730001,40.269057],[-123.730001,40.269684],[-123.729688,40.270155],[-123.729217,40.270312],[-123.728433,40.270155],[-123.728119,40.269684],[-123.727021,40.268900],[-123.725924,40.268273],[-123.726237,40.265763],[-123.726237,40.262940],[-123.725924,40.262626],[-123.724983,40.261529],[-123.724826,40.261058],[-123.724983,40.260274],[-123.725296,40.259333],[-123.725139,40.257921],[-123.724983,40.257608],[-123.724826,40.256667],[-123.724669,40.256196],[-123.722473,40.254784],[-123.721689,40.253843],[-123.721375,40.253059],[-123.721375,40.252275],[-123.722003,40.251334],[-123.722159,40.250863],[-123.721689,40.249922],[-123.721062,40.249452],[-123.719336,40.249295],[-123.719493,40.249138],[-123.717454,40.249452],[-123.716356,40.250550],[-123.715729,40.251020],[-123.712435,40.251491],[-123.710553,40.251491],[-123.708828,40.251804],[-123.707887,40.251020],[-123.706632,40.250863],[-123.705534,40.251020],[-123.704436,40.250863],[-123.703495,40.251020],[-123.701927,40.249609],[-123.700829,40.249452],[-123.698947,40.248511],[-123.698633,40.247570],[-123.698790,40.246001],[-123.698477,40.244590],[-123.698477,40.243649],[-123.698633,40.242394],[-123.699104,40.241610],[-123.699888,40.240669],[-123.700202,40.240669],[-123.700202,40.239885],[-123.699731,40.239257],[-123.698790,40.238316],[-123.698477,40.238159],[-123.694085,40.238787],[-123.690791,40.238473],[-123.688596,40.238944],[-123.687811,40.239728],[-123.687341,40.239728],[-123.685929,40.239100],[-123.684675,40.239571],[-123.683577,40.239728]]]}}
,{"id":95560,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-123.891704,40.110491],[-123.894841,40.110962],[-123.895311,40.112373],[-123.896095,40.112687],[-123.896880,40.113785],[-123.898291,40.115196],[-123.898762,40.115040],[-123.898605,40.115510],[-123.898762,40.115981],[-123.898605,40.116294],[-123.897664,40.115981],[-123.897507,40.116294],[-123.898134,40.116451],[-123.898605,40.116922],[-123.899075,40.117079],[-123.899232,40.118020],[-123.901271,40.119588],[-123.901271,40.119902],[-123.900958,40.121470],[-123.900487,40.121784],[-123.900173,40.122411],[-123.900173,40.122725],[-123.900330,40.123038],[-123.899703,40.123038],[-123.899546,40.123823],[-123.899075,40.124136],[-123.899075,40.124293],[-123.898605,40.124607],[-123.898291,40.124607],[-123.897821,40.124921],[-123.897507,40.124921],[-123.896880,40.125234],[-123.896566,40.125548],[-123.896566,40.126175],[-123.897350,40.126803],[-123.894998,40.126332],[-123.894213,40.127273],[-123.893900,40.127430],[-123.893586,40.127116],[-123.893900,40.126175],[-123.893116,40.126018],[-123.892331,40.125234],[-123.892331,40.123980],[-123.891704,40.123195],[-123.892331,40.122882],[-123.892174,40.122254],[-123.892488,40.121156],[-123.892018,40.120686],[-123.891547,40.120529],[-123.889822,40.119117],[-123.889665,40.118804],[-123.889979,40.118176],[-123.889822,40.118020],[-123.889194,40.118333],[-123.888567,40.118176],[-123.887783,40.118647],[-123.885744,40.118333],[-123.885587,40.118490],[-123.886371,40.119274],[-123.886371,40.119745],[-123.886842,40.120059],[-123.886685,40.120215],[-123.885587,40.119745],[-123.884489,40.119745],[-123.884489,40.120372],[-123.884489,40.121470],[-123.884803,40.121941],[-123.884646,40.122254],[-123.884489,40.123509],[-123.884176,40.123980],[-123.884176,40.124293],[-123.885273,40.124921],[-123.885901,40.126018],[-123.887469,40.126332],[-123.887626,40.126959],[-123.888097,40.127273],[-123.888567,40.128998],[-123.889351,40.129626],[-123.890292,40.130096],[-123.889508,40.130410],[-123.888881,40.131822],[-123.888097,40.131665],[-123.887783,40.131822],[-123.887626,40.132135],[-123.888881,40.133704],[-123.889979,40.134174],[-123.891547,40.134017],[-123.892645,40.134331],[-123.893429,40.134017],[-123.895311,40.133860],[-123.898134,40.133233],[-123.899232,40.132763],[-123.899546,40.132292],[-123.899703,40.132449],[-123.899703,40.133704],[-123.900016,40.134017],[-123.900958,40.134331],[-123.900958,40.134802],[-123.901428,40.135429],[-123.900958,40.136370],[-123.901585,40.136840],[-123.901899,40.137781],[-123.903781,40.138723],[-123.903937,40.139350],[-123.903781,40.139977],[-123.904565,40.140605],[-123.905663,40.140605],[-123.905976,40.140448],[-123.905976,40.140134],[-123.906133,40.139977],[-123.907231,40.140605],[-123.908486,40.141859],[-123.908643,40.142957],[-123.908486,40.143114],[-123.909270,40.143428],[-123.909897,40.144526],[-123.910995,40.145153],[-123.911152,40.145467],[-123.911623,40.145623],[-123.911152,40.146094],[-123.911466,40.146251],[-123.911466,40.146721],[-123.912093,40.147035],[-123.911152,40.148447],[-123.910682,40.149074],[-123.910211,40.149074],[-123.909897,40.148917],[-123.908800,40.149074],[-123.908329,40.149074],[-123.908172,40.148760],[-123.907702,40.148603],[-123.907388,40.148603],[-123.906761,40.148603],[-123.906290,40.149074],[-123.905663,40.148760],[-123.905506,40.148917],[-123.905192,40.149545],[-123.905192,40.149858],[-123.904722,40.150172],[-123.904251,40.150329],[-123.903937,40.150956],[-123.902369,40.151427],[-123.901585,40.152524],[-123.900487,40.152368],[-123.899860,40.152681],[-123.899546,40.153309],[-123.899389,40.153309],[-123.898134,40.153466],[-123.897350,40.153309],[-123.896880,40.153309],[-123.895782,40.152681],[-123.895468,40.152995],[-123.895468,40.153309],[-123.895782,40.153936],[-123.895625,40.154093],[-123.894841,40.153779],[-123.894057,40.153152],[-123.893116,40.152838],[-123.893116,40.152995],[-123.893429,40.153152],[-123.893586,40.154720],[-123.894213,40.155818],[-123.894370,40.156916],[-123.895625,40.157387],[-123.895625,40.157543],[-123.895154,40.158014],[-123.894057,40.158171],[-123.893272,40.159269],[-123.892802,40.159269],[-123.892174,40.158798],[-123.891861,40.158798],[-123.891390,40.158955],[-123.891390,40.159269],[-123.891704,40.159582],[-123.893116,40.160053],[-123.894527,40.161464],[-123.895311,40.161935],[-123.896723,40.161464],[-123.897350,40.160994],[-123.898291,40.160994],[-123.898762,40.160680],[-123.900173,40.160053],[-123.901428,40.159896],[-123.902212,40.160053],[-123.903153,40.159739],[-123.904722,40.158955],[-123.905349,40.158171],[-123.906133,40.158171],[-123.906917,40.157700],[-123.906917,40.157387],[-123.907231,40.157387],[-123.907545,40.157857],[-123.907388,40.158484],[-123.907388,40.159425],[-123.907074,40.159739],[-123.907545,40.160680],[-123.907388,40.161464],[-123.907859,40.162405],[-123.907231,40.163190],[-123.907074,40.163817],[-123.905976,40.165385],[-123.907231,40.166483],[-123.907231,40.166640],[-123.906917,40.167111],[-123.906917,40.167267],[-123.907545,40.167424],[-123.907859,40.167581],[-123.908956,40.167738],[-123.909113,40.168365],[-123.909584,40.168522],[-123.909741,40.168993],[-123.910054,40.169306],[-123.910054,40.169777],[-123.909897,40.169934],[-123.909270,40.169934],[-123.908015,40.169463],[-123.907545,40.169463],[-123.906917,40.169934],[-123.906290,40.170091],[-123.904722,40.170091],[-123.903781,40.170718],[-123.902683,40.171032],[-123.901271,40.171032],[-123.900644,40.171188],[-123.900330,40.171659],[-123.899546,40.171659],[-123.899389,40.172443],[-123.900173,40.173071],[-123.901114,40.173227],[-123.902369,40.172757],[-123.903310,40.172600],[-123.906917,40.174168],[-123.907074,40.175109],[-123.906133,40.175109],[-123.905976,40.175894],[-123.906917,40.176521],[-123.907545,40.177462],[-123.907231,40.177776],[-123.906761,40.177776],[-123.906133,40.178246],[-123.908015,40.178560],[-123.908800,40.179187],[-123.909270,40.179972],[-123.909741,40.179972],[-123.910054,40.179815],[-123.910211,40.179972],[-123.910054,40.180756],[-123.909584,40.181383],[-123.909741,40.182167],[-123.910054,40.182795],[-123.908956,40.183736],[-123.908800,40.183736],[-123.908643,40.183422],[-123.907702,40.183108],[-123.907702,40.182795],[-123.907388,40.182638],[-123.906917,40.183422],[-123.907388,40.183736],[-123.907231,40.184363],[-123.907388,40.184520],[-123.906447,40.184677],[-123.905976,40.185147],[-123.904879,40.185147],[-123.903624,40.185618],[-123.901271,40.185618],[-123.900330,40.184990],[-123.898291,40.184520],[-123.897507,40.182795],[-123.896566,40.182638],[-123.895311,40.182795],[-123.894998,40.182638],[-123.894527,40.182167],[-123.892174,40.181383],[-123.890606,40.181226],[-123.890606,40.180913],[-123.890292,40.180756],[-123.889822,40.180913],[-123.889351,40.180599],[-123.887626,40.180756],[-123.887312,40.180599],[-123.886215,40.180599],[-123.884332,40.179658],[-123.883862,40.179031],[-123.882137,40.177305],[-123.881980,40.175894],[-123.881509,40.175109],[-123.879784,40.174012],[-123.879314,40.173384],[-123.879157,40.173071],[-123.879627,40.172286],[-123.876647,40.172600],[-123.875863,40.173227],[-123.875706,40.174168],[-123.876961,40.174639],[-123.877118,40.174953],[-123.875393,40.175266],[-123.875079,40.175266],[-123.874608,40.175423],[-123.874765,40.175894],[-123.875079,40.176207],[-123.875079,40.176835],[-123.874922,40.177148],[-123.875079,40.177776],[-123.874451,40.178246],[-123.874295,40.178874],[-123.873824,40.179658],[-123.874138,40.180913],[-123.873981,40.181383],[-123.873824,40.182324],[-123.873981,40.182638],[-123.873354,40.183736],[-123.872569,40.184206],[-123.872569,40.184677],[-123.872883,40.185304],[-123.872256,40.186088],[-123.872256,40.186716],[-123.870060,40.186716],[-123.869589,40.186873],[-123.865982,40.187186],[-123.865825,40.187186],[-123.865668,40.187814],[-123.865512,40.187970],[-123.864727,40.188284],[-123.864100,40.188911],[-123.863473,40.189068],[-123.862532,40.189696],[-123.860650,40.190009],[-123.859865,40.190323],[-123.859081,40.190323],[-123.857670,40.190794],[-123.855317,40.191421],[-123.854846,40.192048],[-123.853749,40.192362],[-123.853592,40.193460],[-123.852494,40.194558],[-123.852494,40.195185],[-123.852964,40.195499],[-123.853435,40.196753],[-123.853121,40.198165],[-123.853435,40.199263],[-123.853592,40.199890],[-123.852964,40.200988],[-123.853592,40.202557],[-123.855003,40.203498],[-123.855003,40.203811],[-123.853905,40.203498],[-123.851866,40.203341],[-123.848416,40.204439],[-123.847945,40.204909],[-123.847161,40.205223],[-123.843711,40.206164],[-123.841358,40.206634],[-123.840260,40.207889],[-123.839162,40.207732],[-123.838692,40.208360],[-123.838849,40.208987],[-123.838535,40.209458],[-123.838378,40.210085],[-123.836967,40.212124],[-123.836653,40.212908],[-123.835085,40.214163],[-123.834614,40.214790],[-123.833830,40.215104],[-123.832732,40.215888],[-123.830693,40.215888],[-123.829125,40.216672],[-123.828027,40.216515],[-123.827713,40.216829],[-123.827399,40.217143],[-123.827086,40.218711],[-123.826301,40.219338],[-123.826458,40.219966],[-123.826458,40.220907],[-123.826145,40.221377],[-123.826301,40.221691],[-123.825674,40.221534],[-123.825360,40.221377],[-123.825360,40.220907],[-123.824890,40.220280],[-123.824890,40.218554],[-123.823949,40.217143],[-123.823949,40.215574],[-123.824576,40.214790],[-123.823949,40.212594],[-123.823478,40.211967],[-123.823008,40.211967],[-123.823008,40.212281],[-123.822694,40.212751],[-123.822851,40.213379],[-123.822224,40.214163],[-123.821283,40.215261],[-123.820655,40.215104],[-123.820028,40.215261],[-123.819557,40.214633],[-123.818303,40.214633],[-123.817832,40.214947],[-123.817205,40.214790],[-123.815636,40.215104],[-123.815636,40.215261],[-123.816577,40.215417],[-123.817675,40.216045],[-123.818773,40.216202],[-123.819714,40.216829],[-123.819714,40.217143],[-123.820655,40.217770],[-123.820812,40.217927],[-123.820655,40.218084],[-123.819714,40.217613],[-123.818930,40.217613],[-123.816577,40.216515],[-123.814852,40.216202],[-123.813127,40.216515],[-123.809990,40.217613],[-123.808422,40.218241],[-123.805442,40.219966],[-123.804344,40.220436],[-123.802775,40.220750],[-123.801678,40.220593],[-123.800109,40.220436],[-123.796031,40.218868],[-123.794777,40.218397],[-123.793836,40.217456],[-123.792894,40.216202],[-123.792738,40.215104],[-123.792110,40.209144],[-123.791169,40.207262],[-123.790228,40.205850],[-123.788660,40.204595],[-123.785052,40.202243],[-123.783327,40.201616],[-123.779406,40.200518],[-123.777995,40.199890],[-123.776897,40.199106],[-123.775015,40.196440],[-123.771721,40.194087],[-123.771250,40.193146],[-123.770780,40.192048],[-123.770937,40.190950],[-123.771250,40.190009],[-123.776583,40.181226],[-123.777367,40.180599],[-123.778622,40.179815],[-123.779720,40.179187],[-123.780347,40.178403],[-123.781131,40.176992],[-123.781445,40.173071],[-123.781131,40.169463],[-123.781445,40.168365],[-123.782543,40.166954],[-123.784739,40.165385],[-123.785680,40.164601],[-123.787405,40.162719],[-123.790699,40.160837],[-123.792424,40.158641],[-123.794463,40.157230],[-123.795090,40.156602],[-123.795404,40.155661],[-123.795561,40.155034],[-123.795247,40.152368],[-123.795561,40.151740],[-123.796031,40.150956],[-123.800893,40.147662],[-123.804971,40.144212],[-123.808108,40.141389],[-123.808735,40.140448],[-123.809049,40.139507],[-123.809049,40.138723],[-123.808735,40.137625],[-123.807010,40.134331],[-123.805755,40.133233],[-123.799795,40.128685],[-123.799011,40.127744],[-123.793051,40.114412],[-123.792738,40.112530],[-123.794149,40.112373],[-123.794777,40.112687],[-123.795090,40.113158],[-123.795247,40.113942],[-123.795404,40.114099],[-123.795874,40.113942],[-123.795874,40.114726],[-123.796815,40.115510],[-123.797286,40.115824],[-123.799325,40.116137],[-123.801834,40.116137],[-123.805599,40.113942],[-123.807637,40.113785],[-123.810461,40.114569],[-123.812656,40.114569],[-123.812813,40.114412],[-123.813284,40.114255],[-123.819401,40.113471],[-123.820969,40.113001],[-123.821283,40.112844],[-123.822067,40.112844],[-123.825674,40.113628],[-123.829438,40.113942],[-123.831477,40.114569],[-123.831634,40.114726],[-123.832418,40.115040],[-123.833046,40.115353],[-123.833359,40.116451],[-123.834144,40.116922],[-123.835398,40.118020],[-123.836339,40.119431],[-123.836496,40.120372],[-123.836496,40.121627],[-123.836339,40.122254],[-123.837594,40.122097],[-123.838849,40.122568],[-123.840260,40.122254],[-123.841358,40.122254],[-123.842927,40.123195],[-123.845279,40.123823],[-123.845436,40.124136],[-123.845436,40.124921],[-123.844965,40.125391],[-123.844965,40.125705],[-123.845750,40.126803],[-123.846377,40.127116],[-123.847004,40.127273],[-123.847475,40.127273],[-123.847789,40.126959],[-123.848102,40.126489],[-123.847318,40.125862],[-123.847475,40.125705],[-123.848102,40.125391],[-123.849671,40.125391],[-123.850612,40.126018],[-123.851082,40.126018],[-123.851082,40.126175],[-123.852023,40.126489],[-123.852180,40.126646],[-123.852337,40.127273],[-123.853278,40.127587],[-123.853905,40.128528],[-123.856885,40.129783],[-123.857983,40.129939],[-123.860650,40.129783],[-123.862532,40.129312],[-123.864257,40.129312],[-123.866139,40.128998],[-123.866609,40.128685],[-123.867237,40.126646],[-123.867707,40.126332],[-123.868962,40.125862],[-123.870530,40.126175],[-123.871001,40.126018],[-123.871472,40.125391],[-123.872726,40.124607],[-123.873981,40.124450],[-123.874922,40.123666],[-123.876961,40.123509],[-123.878529,40.122568],[-123.880725,40.122411],[-123.882137,40.121784],[-123.884176,40.120059],[-123.884332,40.119745],[-123.883862,40.118961],[-123.884019,40.118490],[-123.884646,40.117549],[-123.885273,40.117235],[-123.885587,40.116451],[-123.886528,40.115981],[-123.886528,40.115667],[-123.886371,40.115196],[-123.886685,40.114569],[-123.887626,40.114099],[-123.889979,40.113785],[-123.890292,40.113001],[-123.890292,40.112216],[-123.890763,40.111432],[-123.891390,40.110648],[-123.891704,40.110491]]]}}
,{"id":95524,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-124.085402,40.810627],[-124.085872,40.810156],[-124.087441,40.812979],[-124.087754,40.812823],[-124.090578,40.804667],[-124.087911,40.804510],[-124.087911,40.801530],[-124.088068,40.801530],[-124.088068,40.802314],[-124.088225,40.802314],[-124.090107,40.802314],[-124.090891,40.802785],[-124.091832,40.802785],[-124.092773,40.802314],[-124.093558,40.800746],[-124.094185,40.800275],[-124.094655,40.800275],[-124.096067,40.801060],[-124.096538,40.801530],[-124.096067,40.802471],[-124.096067,40.802942],[-124.096694,40.801844],[-124.097008,40.801687],[-124.098106,40.801373],[-124.098733,40.802942],[-124.099047,40.803255],[-124.099988,40.803569],[-124.100615,40.803412],[-124.101086,40.803099],[-124.101870,40.801373],[-124.102811,40.801216],[-124.105007,40.802001],[-124.105321,40.802157],[-124.105791,40.803569],[-124.106105,40.803883],[-124.106575,40.803883],[-124.107360,40.803569],[-124.107516,40.803255],[-124.107830,40.802001],[-124.108301,40.801687],[-124.109085,40.802314],[-124.109398,40.803099],[-124.109398,40.803883],[-124.109869,40.804667],[-124.110339,40.805137],[-124.111751,40.805451],[-124.111594,40.810784],[-124.100459,40.816430],[-124.091048,40.816587],[-124.092460,40.816900],[-124.092460,40.818626],[-124.092303,40.818939],[-124.093244,40.819880],[-124.093714,40.820037],[-124.093244,40.820194],[-124.093401,40.820508],[-124.089480,40.822547],[-124.088068,40.823488],[-124.086029,40.825213],[-124.084774,40.826625],[-124.083677,40.828350],[-124.082892,40.829761],[-124.082422,40.831173],[-124.082108,40.831173],[-124.081795,40.832585],[-124.081638,40.843407],[-124.078658,40.841838],[-124.077403,40.841838],[-124.076305,40.842309],[-124.066581,40.847641],[-124.067679,40.849366],[-124.066738,40.849837],[-124.066424,40.850307],[-124.065797,40.850307],[-124.065326,40.851092],[-124.062660,40.851092],[-124.062817,40.850778],[-124.060464,40.850778],[-124.056857,40.852033],[-124.057014,40.852190],[-124.056857,40.852817],[-124.056386,40.852974],[-124.052152,40.850464],[-124.048701,40.847641],[-124.048701,40.848112],[-124.048388,40.847798],[-124.048701,40.847328],[-124.048231,40.846543],[-124.048544,40.846073],[-124.049015,40.845916],[-124.051838,40.845916],[-124.052309,40.844348],[-124.052465,40.844034],[-124.054504,40.843877],[-124.054975,40.843720],[-124.054818,40.842465],[-124.054191,40.840897],[-124.054191,40.840740],[-124.054504,40.840427],[-124.054975,40.840427],[-124.056230,40.841211],[-124.056700,40.841368],[-124.059994,40.841995],[-124.061248,40.841995],[-124.061719,40.841524],[-124.052465,40.837133],[-124.051995,40.837760],[-124.051054,40.837603],[-124.050740,40.837447],[-124.051054,40.836506],[-124.048231,40.835094],[-124.048074,40.835878],[-124.046662,40.836506],[-124.045721,40.837447],[-124.044623,40.839799],[-124.044310,40.840113],[-124.040232,40.841681],[-124.036781,40.843407],[-124.031919,40.845132],[-124.030037,40.846230],[-124.027214,40.847484],[-124.026587,40.847171],[-124.025018,40.846073],[-124.024705,40.844661],[-124.024705,40.843720],[-124.024234,40.842465],[-124.025018,40.841211],[-124.024861,40.840740],[-124.024548,40.840270],[-124.024234,40.824272],[-124.014196,40.824429],[-124.014196,40.817371],[-123.994591,40.817528],[-123.993964,40.815489],[-123.993180,40.814705],[-123.992552,40.813293],[-123.992552,40.812666],[-123.992866,40.812038],[-123.992709,40.811725],[-123.991454,40.810784],[-123.990984,40.809843],[-123.989416,40.808745],[-123.988788,40.806549],[-123.987847,40.804510],[-123.987377,40.804040],[-123.986592,40.803569],[-123.986592,40.792433],[-124.004472,40.792433],[-124.005884,40.792433],[-124.005727,40.793061],[-124.006668,40.793061],[-124.008707,40.793531],[-124.009805,40.794472],[-124.010118,40.795257],[-124.010589,40.795727],[-124.012314,40.796354],[-124.013255,40.796982],[-124.015922,40.798080],[-124.018431,40.799334],[-124.020784,40.800119],[-124.022509,40.802001],[-124.023764,40.803883],[-124.023920,40.804981],[-124.023293,40.806549],[-124.023293,40.807961],[-124.023607,40.809372],[-124.023764,40.810784],[-124.025018,40.811882],[-124.025802,40.812979],[-124.026273,40.814391],[-124.026744,40.814862],[-124.028469,40.815959],[-124.028939,40.816744],[-124.035213,40.816430],[-124.053563,40.816430],[-124.080383,40.816430],[-124.082108,40.814391],[-124.078815,40.814391],[-124.078658,40.814077],[-124.082422,40.813921],[-124.085402,40.810627]]]}}
,{"id":92243,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-115.448200,32.824940],[-115.448200,32.818196],[-115.439260,32.818196],[-115.439260,32.810824],[-115.443652,32.810668],[-115.443495,32.803767],[-115.434712,32.803923],[-115.430477,32.804237],[-115.430477,32.803923],[-115.397697,32.806747],[-115.397541,32.806433],[-115.434869,32.803296],[-115.438946,32.803296],[-115.439103,32.793886],[-115.439260,32.793886],[-115.439103,32.803296],[-115.457767,32.803296],[-115.457767,32.802982],[-115.456826,32.802826],[-115.456669,32.802512],[-115.456826,32.801257],[-115.456513,32.800944],[-115.456513,32.796238],[-115.456199,32.796552],[-115.447886,32.796552],[-115.448200,32.781495],[-115.448043,32.780868],[-115.447886,32.775849],[-115.448357,32.775849],[-115.448357,32.773496],[-115.456356,32.773496],[-115.456356,32.766909],[-115.456199,32.759381],[-115.452592,32.758910],[-115.448043,32.758910],[-115.448043,32.752009],[-115.448200,32.752009],[-115.448200,32.751852],[-115.464982,32.751852],[-115.465139,32.757812],[-115.465609,32.758910],[-115.465923,32.759381],[-115.466080,32.759381],[-115.468119,32.759381],[-115.500742,32.759538],[-115.500742,32.752480],[-115.500585,32.752480],[-115.500271,32.750284],[-115.500114,32.741501],[-115.512975,32.741501],[-115.513132,32.749970],[-115.512975,32.752480],[-115.526150,32.752480],[-115.525836,32.738051],[-115.517523,32.737894],[-115.534619,32.737894],[-115.534933,32.752323],[-115.539795,32.752323],[-115.539638,32.748402],[-115.543245,32.748402],[-115.543088,32.741501],[-115.546539,32.741501],[-115.546382,32.737737],[-115.543088,32.737737],[-115.542775,32.737737],[-115.542618,32.737423],[-115.542461,32.716093],[-115.542461,32.709192],[-115.542618,32.708721],[-115.559870,32.708878],[-115.559870,32.708565],[-115.577750,32.708408],[-115.578378,32.706839],[-115.579319,32.705585],[-115.580260,32.704800],[-115.583553,32.702918],[-115.584024,32.702918],[-115.586063,32.702605],[-115.587004,32.702605],[-115.589670,32.702134],[-115.590925,32.702448],[-115.593434,32.703859],[-115.593905,32.704957],[-115.593905,32.706682],[-115.594846,32.707467],[-115.596414,32.710603],[-115.597826,32.711701],[-115.600022,32.713897],[-115.602060,32.714838],[-115.602688,32.715779],[-115.602374,32.716250],[-115.602531,32.716563],[-115.603472,32.716563],[-115.604099,32.717034],[-115.605981,32.716407],[-115.607236,32.716250],[-115.620724,32.716093],[-115.620724,32.708878],[-115.621979,32.708878],[-115.621979,32.694606],[-115.630762,32.694763],[-115.630919,32.701977],[-115.640016,32.701977],[-115.640016,32.708408],[-115.639859,32.708565],[-115.639545,32.708878],[-115.638134,32.708878],[-115.637820,32.709349],[-115.637820,32.716093],[-115.645819,32.716093],[-115.663699,32.716250],[-115.676560,32.715936],[-115.689421,32.716093],[-115.690989,32.715779],[-115.691146,32.715779],[-115.691773,32.716407],[-115.696792,32.723151],[-115.697419,32.723151],[-115.706202,32.728640],[-115.708241,32.729424],[-115.718279,32.731306],[-115.720632,32.731620],[-115.723925,32.731463],[-115.725337,32.731620],[-115.726278,32.732091],[-115.728474,32.733659],[-115.729258,32.734130],[-115.731297,32.734443],[-115.732395,32.735071],[-115.733493,32.735855],[-115.739139,32.741658],[-115.740394,32.741972],[-115.743844,32.742285],[-115.750902,32.744167],[-115.752470,32.744795],[-115.753255,32.745422],[-115.753411,32.746990],[-115.752470,32.754989],[-115.752784,32.756087],[-115.753255,32.756558],[-115.756078,32.758753],[-115.765802,32.765968],[-115.769409,32.767850],[-115.770821,32.769262],[-115.773644,32.774124],[-115.774114,32.775849],[-115.774114,32.776476],[-115.773173,32.783691],[-115.774585,32.783691],[-115.774428,32.786201],[-115.772860,32.786201],[-115.772546,32.789180],[-115.772075,32.789180],[-115.772075,32.789024],[-115.771605,32.789024],[-115.771605,32.789180],[-115.771291,32.789180],[-115.771291,32.789024],[-115.744315,32.788867],[-115.744315,32.783848],[-115.739923,32.783691],[-115.739453,32.783377],[-115.739139,32.783221],[-115.739766,32.782750],[-115.741492,32.782593],[-115.741805,32.781182],[-115.742119,32.780868],[-115.742589,32.780711],[-115.743217,32.779613],[-115.743217,32.779300],[-115.741962,32.777261],[-115.741962,32.776476],[-115.741648,32.775849],[-115.741335,32.774437],[-115.734120,32.774437],[-115.733650,32.774751],[-115.733650,32.776163],[-115.733336,32.776320],[-115.732865,32.776320],[-115.732865,32.774908],[-115.732552,32.774437],[-115.729572,32.774437],[-115.730042,32.775535],[-115.730042,32.776163],[-115.728474,32.778359],[-115.728317,32.778829],[-115.729101,32.781652],[-115.729101,32.783691],[-115.724710,32.783848],[-115.724239,32.784005],[-115.723455,32.784632],[-115.723298,32.785103],[-115.723612,32.788710],[-115.716083,32.788710],[-115.715927,32.791063],[-115.707300,32.790906],[-115.707300,32.788710],[-115.706359,32.788553],[-115.703066,32.788553],[-115.703223,32.789024],[-115.704007,32.790435],[-115.704164,32.790906],[-115.701340,32.790906],[-115.700556,32.789337],[-115.700243,32.789024],[-115.699929,32.788553],[-115.695694,32.788553],[-115.694283,32.788710],[-115.690518,32.789965],[-115.690518,32.785887],[-115.690205,32.785730],[-115.690048,32.788396],[-115.689734,32.788553],[-115.689421,32.788710],[-115.686754,32.788867],[-115.686284,32.789024],[-115.680951,32.789024],[-115.681108,32.789180],[-115.681108,32.793415],[-115.681108,32.793729],[-115.674521,32.796552],[-115.690362,32.796552],[-115.690362,32.810981],[-115.682363,32.811138],[-115.679853,32.810824],[-115.672325,32.810824],[-115.680481,32.811138],[-115.680481,32.813648],[-115.680951,32.814589],[-115.680637,32.825254],[-115.691930,32.825411],[-115.696635,32.825567],[-115.696635,32.826979],[-115.698674,32.827920],[-115.698674,32.829488],[-115.698360,32.829802],[-115.696008,32.830273],[-115.694283,32.832782],[-115.685813,32.832939],[-115.685813,32.832625],[-115.681265,32.832625],[-115.680794,32.832782],[-115.680794,32.839840],[-115.672168,32.839840],[-115.672168,32.839997],[-115.655073,32.839840],[-115.655073,32.832625],[-115.646133,32.832939],[-115.646133,32.825567],[-115.646446,32.825567],[-115.646760,32.825881],[-115.647544,32.825724],[-115.655073,32.825724],[-115.655073,32.818039],[-115.646446,32.818353],[-115.646289,32.806903],[-115.646446,32.806903],[-115.646603,32.799846],[-115.637820,32.799846],[-115.637820,32.811138],[-115.638134,32.811138],[-115.638134,32.817882],[-115.637663,32.818353],[-115.637663,32.818666],[-115.637663,32.821803],[-115.638134,32.822274],[-115.638134,32.825567],[-115.620724,32.825567],[-115.620724,32.814432],[-115.618215,32.814432],[-115.618215,32.809099],[-115.617274,32.808315],[-115.617117,32.808629],[-115.616490,32.810668],[-115.616176,32.810981],[-115.611785,32.810824],[-115.603629,32.810981],[-115.603629,32.818353],[-115.569908,32.818353],[-115.569908,32.818510],[-115.561596,32.818353],[-115.560968,32.818353],[-115.560968,32.818196],[-115.552813,32.818196],[-115.552813,32.818353],[-115.544343,32.818196],[-115.544500,32.825411],[-115.535717,32.825411],[-115.535717,32.825254],[-115.518465,32.825254],[-115.518465,32.818196],[-115.513916,32.818196],[-115.513446,32.818353],[-115.505447,32.825097],[-115.504192,32.825411],[-115.500271,32.825411],[-115.500114,32.825724],[-115.491958,32.825724],[-115.491174,32.825411],[-115.488194,32.823529],[-115.483960,32.822588],[-115.483960,32.828861],[-115.483803,32.830743],[-115.483803,32.840154],[-115.474706,32.840154],[-115.473138,32.840310],[-115.465609,32.840154],[-115.465609,32.839997],[-115.448671,32.839997],[-115.448357,32.832782],[-115.445847,32.832939],[-115.445847,32.832782],[-115.445691,32.831998],[-115.445534,32.831998],[-115.445377,32.828861],[-115.445377,32.828547],[-115.448200,32.828547],[-115.448200,32.824940]]]}}
,{"id":93526,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.368725,36.897615],[-118.328261,36.897772],[-118.273837,36.897615],[-118.271171,36.898870],[-118.268504,36.899341],[-118.266779,36.898243],[-118.267250,36.897615],[-118.250781,36.897615],[-118.253918,36.903889],[-118.256271,36.920043],[-118.240900,36.920200],[-118.239959,36.958783],[-118.239803,36.960665],[-118.238391,36.967409],[-118.247488,36.967409],[-118.248272,36.967096],[-118.249056,36.967409],[-118.253918,36.967409],[-118.253918,36.974624],[-118.255800,36.974624],[-118.256428,36.974781],[-118.258153,36.974624],[-118.262544,36.974624],[-118.263172,36.974781],[-118.267720,36.977761],[-118.268818,36.978388],[-118.273680,36.979643],[-118.274464,36.979643],[-118.275249,36.979800],[-118.277444,36.979800],[-118.279797,36.980270],[-118.280738,36.980270],[-118.284659,36.980113],[-118.285129,36.979800],[-118.287796,36.979486],[-118.288580,36.979172],[-118.290933,36.979956],[-118.293599,36.979800],[-118.295010,36.979486],[-118.295481,36.978859],[-118.296422,36.978388],[-118.296893,36.978388],[-118.297206,36.978702],[-118.297677,36.978545],[-118.298304,36.978231],[-118.298461,36.977761],[-118.298931,36.977761],[-118.301127,36.976977],[-118.301441,36.976977],[-118.301911,36.976820],[-118.302852,36.976663],[-118.303480,36.976506],[-118.303637,36.976192],[-118.305205,36.975408],[-118.306146,36.975094],[-118.306460,36.975094],[-118.307715,36.974624],[-118.309910,36.973997],[-118.311165,36.973369],[-118.311479,36.973056],[-118.312577,36.973056],[-118.313204,36.972271],[-118.314929,36.972428],[-118.316341,36.971173],[-118.320732,36.970076],[-118.321516,36.970389],[-118.321830,36.970546],[-118.322771,36.970389],[-118.323399,36.970389],[-118.324026,36.970232],[-118.325594,36.969291],[-118.326692,36.969134],[-118.327633,36.968507],[-118.328104,36.968664],[-118.327947,36.969605],[-118.327633,36.970232],[-118.327947,36.970703],[-118.327790,36.970860],[-118.327006,36.972428],[-118.326535,36.973056],[-118.326379,36.973683],[-118.325751,36.974310],[-118.325751,36.974938],[-118.325281,36.975251],[-118.324967,36.975408],[-118.324967,36.975879],[-118.324653,36.976349],[-118.324967,36.977133],[-118.323712,36.977761],[-118.322771,36.978388],[-118.321360,36.980584],[-118.320262,36.981054],[-118.318223,36.980741],[-118.318066,36.980741],[-118.317909,36.981682],[-118.318223,36.981995],[-118.318223,36.982466],[-118.320889,36.983721],[-118.321046,36.984348],[-118.321046,36.986387],[-118.320889,36.987642],[-118.321360,36.988583],[-118.320732,36.989681],[-118.320889,36.990151],[-118.320732,36.991249],[-118.321046,36.992661],[-118.320732,36.993288],[-118.320732,36.995170],[-118.320262,36.996425],[-118.319478,36.998150],[-118.318066,36.999562],[-118.316027,37.000816],[-118.315400,37.001600],[-118.313831,37.002542],[-118.311479,37.002542],[-118.308969,37.003483],[-118.307871,37.003483],[-118.306303,37.003796],[-118.304735,37.003796],[-118.304107,37.004110],[-118.302539,37.003953],[-118.301127,37.004110],[-118.300814,37.003796],[-118.299872,37.003483],[-118.297990,37.003639],[-118.295638,37.003012],[-118.293128,37.003796],[-118.292658,37.003483],[-118.292030,37.003169],[-118.289364,37.003326],[-118.288737,37.003169],[-118.287012,37.003012],[-118.284345,37.002542],[-118.283247,37.002542],[-118.282150,37.002855],[-118.279954,37.003012],[-118.278856,37.003169],[-118.276346,37.003326],[-118.274621,37.002855],[-118.273680,37.002698],[-118.272896,37.002385],[-118.272112,37.002071],[-118.271014,37.001287],[-118.267563,37.000032],[-118.266309,36.999248],[-118.265995,36.999405],[-118.265054,36.999248],[-118.264583,36.999091],[-118.263799,36.999248],[-118.262544,36.998934],[-118.260662,36.998307],[-118.260349,36.997993],[-118.257996,36.998464],[-118.257369,36.998464],[-118.255957,36.997993],[-118.254075,36.997993],[-118.254075,36.992817],[-118.253291,36.990465],[-118.252193,36.989053],[-118.251879,36.988269],[-118.251722,36.986857],[-118.251722,36.985289],[-118.252193,36.983564],[-118.253918,36.980898],[-118.254075,36.978231],[-118.246547,36.978231],[-118.240587,36.979172],[-118.236038,36.978231],[-118.236823,36.974781],[-118.235882,36.974781],[-118.235882,36.974624],[-118.235254,36.974153],[-118.223648,36.962390],[-118.223491,36.962547],[-118.222864,36.961920],[-118.212669,36.951412],[-118.219413,36.938707],[-118.221609,36.935100],[-118.225060,36.930395],[-118.228510,36.925376],[-118.228667,36.924435],[-118.227099,36.916436],[-118.227255,36.914711],[-118.228981,36.908437],[-118.229451,36.907183],[-118.234313,36.900282],[-118.234941,36.898870],[-118.234941,36.897615],[-118.234941,36.899027],[-118.234470,36.900438],[-118.230079,36.906241],[-118.229294,36.907653],[-118.227412,36.914397],[-118.227099,36.916122],[-118.230706,36.916122],[-118.231804,36.915809],[-118.236352,36.915652],[-118.236195,36.897615],[-118.241528,36.897615],[-118.241685,36.891185],[-118.242626,36.892596],[-118.243724,36.897615],[-118.248586,36.897615],[-118.239175,36.877697],[-118.238705,36.876912],[-118.238391,36.876755],[-118.236509,36.869384],[-118.234941,36.866090],[-118.231333,36.867188],[-118.228196,36.868600],[-118.223962,36.866247],[-118.223491,36.865463],[-118.218002,36.859817],[-118.211728,36.852916],[-118.202161,36.835193],[-118.194633,36.820920],[-118.194319,36.820607],[-118.193848,36.817940],[-118.193692,36.817783],[-118.193064,36.818097],[-118.192907,36.818097],[-118.192907,36.817627],[-118.191809,36.815588],[-118.191339,36.815431],[-118.187418,36.815588],[-118.187418,36.816842],[-118.184752,36.821391],[-118.184595,36.822175],[-118.183967,36.822646],[-118.183811,36.823273],[-118.182713,36.824057],[-118.180831,36.822332],[-118.179890,36.821234],[-118.174714,36.812137],[-118.183654,36.808687],[-118.183811,36.802570],[-118.183811,36.801158],[-118.183497,36.800845],[-118.182242,36.800217],[-118.179890,36.799590],[-118.175341,36.797865],[-118.174871,36.797708],[-118.174714,36.797394],[-118.188829,36.797237],[-118.188673,36.797081],[-118.185693,36.795669],[-118.190555,36.796140],[-118.191496,36.796453],[-118.195103,36.795512],[-118.194789,36.795042],[-118.196985,36.793944],[-118.198710,36.792375],[-118.199024,36.792062],[-118.199181,36.790964],[-118.200906,36.791434],[-118.202004,36.792532],[-118.202475,36.793316],[-118.202318,36.794885],[-118.202945,36.797081],[-118.203729,36.797081],[-118.205768,36.796453],[-118.206552,36.797551],[-118.210473,36.791905],[-118.212042,36.790336],[-118.213453,36.790807],[-118.213767,36.791121],[-118.214394,36.791277],[-118.214551,36.791591],[-118.215806,36.790964],[-118.216590,36.790807],[-118.217218,36.790180],[-118.217845,36.789709],[-118.220511,36.788925],[-118.221295,36.788925],[-118.221766,36.788611],[-118.223178,36.788141],[-118.221923,36.787513],[-118.221609,36.787670],[-118.221609,36.787513],[-118.213924,36.789239],[-118.212983,36.789709],[-118.212669,36.789239],[-118.210787,36.788925],[-118.210003,36.788611],[-118.209689,36.788454],[-118.209689,36.787827],[-118.209532,36.787513],[-118.207964,36.787043],[-118.206709,36.786102],[-118.206082,36.786102],[-118.205298,36.786572],[-118.204043,36.787043],[-118.203259,36.786729],[-118.202631,36.786886],[-118.201534,36.786415],[-118.201220,36.785788],[-118.200593,36.785318],[-118.200436,36.784690],[-118.201220,36.783435],[-118.201847,36.781083],[-118.203886,36.779828],[-118.202475,36.780455],[-118.200279,36.780299],[-118.199651,36.779985],[-118.199024,36.780299],[-118.197926,36.780455],[-118.196985,36.780769],[-118.195417,36.779201],[-118.195260,36.778730],[-118.194946,36.777789],[-118.193692,36.776378],[-118.193221,36.774966],[-118.193378,36.773084],[-118.192594,36.772300],[-118.192123,36.770575],[-118.191653,36.769790],[-118.191339,36.768379],[-118.191025,36.768379],[-118.190241,36.768849],[-118.189771,36.768849],[-118.189457,36.768065],[-118.189143,36.766497],[-118.188516,36.765869],[-118.185536,36.766026],[-118.184281,36.765242],[-118.181928,36.765085],[-118.180674,36.764144],[-118.178792,36.763046],[-118.177066,36.761635],[-118.176753,36.760850],[-118.175655,36.759753],[-118.175028,36.757870],[-118.174400,36.756773],[-118.173145,36.755988],[-118.171734,36.756302],[-118.170479,36.755518],[-118.170793,36.755047],[-118.170009,36.753949],[-118.170009,36.747519],[-118.168911,36.745794],[-118.168911,36.743441],[-118.170322,36.740775],[-118.170009,36.740618],[-118.169852,36.741245],[-118.169224,36.741559],[-118.168597,36.741402],[-118.167185,36.741089],[-118.166558,36.741402],[-118.165931,36.741716],[-118.165617,36.741402],[-118.165774,36.740932],[-118.167185,36.740618],[-118.167656,36.740304],[-118.168283,36.740304],[-118.170009,36.739677],[-118.170793,36.738736],[-118.171263,36.738579],[-118.171263,36.738109],[-118.172204,36.737638],[-118.173302,36.737324],[-118.174400,36.737168],[-118.175341,36.737481],[-118.176596,36.737324],[-118.177066,36.737011],[-118.177851,36.736854],[-118.178478,36.736226],[-118.179262,36.736070],[-118.179733,36.735599],[-118.179890,36.735129],[-118.180360,36.734815],[-118.181301,36.734658],[-118.181615,36.734501],[-118.184752,36.734344],[-118.185065,36.734031],[-118.186477,36.733560],[-118.187418,36.732933],[-118.188516,36.732462],[-118.189771,36.731678],[-118.190868,36.731364],[-118.192437,36.729953],[-118.193535,36.729796],[-118.194005,36.729012],[-118.194476,36.728698],[-118.195103,36.728384],[-118.195260,36.727914],[-118.195730,36.727600],[-118.196828,36.727287],[-118.197926,36.726659],[-118.199808,36.726189],[-118.201063,36.725561],[-118.202161,36.725404],[-118.203102,36.724620],[-118.204357,36.724463],[-118.204984,36.724150],[-118.207964,36.722895],[-118.208121,36.722895],[-118.208905,36.723366],[-118.209532,36.723209],[-118.210160,36.723209],[-118.211728,36.723052],[-118.212356,36.722581],[-118.213140,36.722581],[-118.213924,36.722738],[-118.216747,36.722111],[-118.220354,36.721954],[-118.223334,36.720699],[-118.224903,36.720542],[-118.226471,36.719601],[-118.228667,36.719131],[-118.232117,36.718974],[-118.233372,36.718660],[-118.234784,36.718033],[-118.235411,36.717876],[-118.237764,36.717876],[-118.240430,36.718347],[-118.245606,36.718033],[-118.246704,36.718347],[-118.246860,36.718817],[-118.247801,36.718974],[-118.247645,36.718660],[-118.249840,36.718660],[-118.251409,36.718190],[-118.252820,36.718190],[-118.254075,36.718347],[-118.255173,36.718190],[-118.256271,36.718347],[-118.258780,36.717876],[-118.260506,36.717876],[-118.261917,36.717562],[-118.263172,36.716778],[-118.264427,36.716778],[-118.265524,36.717092],[-118.266936,36.718660],[-118.267877,36.718974],[-118.268661,36.718817],[-118.272112,36.716308],[-118.273994,36.715367],[-118.276660,36.713328],[-118.277444,36.713014],[-118.279170,36.711132],[-118.280111,36.709877],[-118.280267,36.709564],[-118.281993,36.707838],[-118.283404,36.707368],[-118.284345,36.707682],[-118.285600,36.707682],[-118.286384,36.707368],[-118.287012,36.706740],[-118.287953,36.705172],[-118.289051,36.703761],[-118.289364,36.703447],[-118.290462,36.702819],[-118.290462,36.702035],[-118.289992,36.701408],[-118.289521,36.701251],[-118.288423,36.701722],[-118.288266,36.701565],[-118.287796,36.700937],[-118.287325,36.698428],[-118.287639,36.697487],[-118.288266,36.697016],[-118.289992,36.694507],[-118.290933,36.693723],[-118.291560,36.692939],[-118.292501,36.692468],[-118.293128,36.691527],[-118.293756,36.690900],[-118.295795,36.690115],[-118.296579,36.689488],[-118.297206,36.689331],[-118.297990,36.688547],[-118.300343,36.687292],[-118.301127,36.686979],[-118.302539,36.685724],[-118.303637,36.684626],[-118.303793,36.683685],[-118.304421,36.683214],[-118.304735,36.682273],[-118.305832,36.681019],[-118.306146,36.680234],[-118.308028,36.678666],[-118.308342,36.677882],[-118.308342,36.677254],[-118.309283,36.675529],[-118.309597,36.674431],[-118.311322,36.672392],[-118.311636,36.672079],[-118.313047,36.671608],[-118.313674,36.671295],[-118.315086,36.669256],[-118.316498,36.669412],[-118.317282,36.670197],[-118.318536,36.670197],[-118.319164,36.669883],[-118.319634,36.669569],[-118.321203,36.668942],[-118.321046,36.668471],[-118.321516,36.667844],[-118.322771,36.667844],[-118.323712,36.667530],[-118.324810,36.666276],[-118.325281,36.665178],[-118.325908,36.664237],[-118.325751,36.663453],[-118.326849,36.662041],[-118.326849,36.661570],[-118.328574,36.659688],[-118.330927,36.659061],[-118.331868,36.658590],[-118.332652,36.657806],[-118.337514,36.654826],[-118.337985,36.654826],[-118.338298,36.655454],[-118.337671,36.656865],[-118.337514,36.658904],[-118.336887,36.659532],[-118.336103,36.659688],[-118.335632,36.661570],[-118.333750,36.662198],[-118.331868,36.663296],[-118.330770,36.663923],[-118.329515,36.665491],[-118.329358,36.666746],[-118.330143,36.667687],[-118.331241,36.668158],[-118.331241,36.669412],[-118.332182,36.670510],[-118.333436,36.671451],[-118.339867,36.672706],[-118.345356,36.672549],[-118.346925,36.672079],[-118.347552,36.672392],[-118.347709,36.673177],[-118.347552,36.674588],[-118.347552,36.676000],[-118.348179,36.677254],[-118.348807,36.677725],[-118.349277,36.678509],[-118.351159,36.680862],[-118.352100,36.682901],[-118.353355,36.683999],[-118.354453,36.683999],[-118.355551,36.683999],[-118.357903,36.685567],[-118.359942,36.685567],[-118.361040,36.686038],[-118.361197,36.686508],[-118.362138,36.686979],[-118.363393,36.687449],[-118.364177,36.687920],[-118.366059,36.690429],[-118.366373,36.691213],[-118.366373,36.691684],[-118.364804,36.693095],[-118.364491,36.693880],[-118.363863,36.694193],[-118.361040,36.695134],[-118.358844,36.695605],[-118.356806,36.695605],[-118.355708,36.694977],[-118.354139,36.694664],[-118.351787,36.694821],[-118.349905,36.695291],[-118.346768,36.696546],[-118.345670,36.697801],[-118.344886,36.698742],[-118.343945,36.699369],[-118.343004,36.700624],[-118.341278,36.702192],[-118.339867,36.702192],[-118.338769,36.702506],[-118.335475,36.704388],[-118.334691,36.705329],[-118.335005,36.707211],[-118.335005,36.708309],[-118.335946,36.709877],[-118.335632,36.712857],[-118.336103,36.716308],[-118.336416,36.717562],[-118.336887,36.719915],[-118.338612,36.723052],[-118.339083,36.726189],[-118.339083,36.727757],[-118.339553,36.729012],[-118.342376,36.730423],[-118.345827,36.733874],[-118.348964,36.737324],[-118.349277,36.738579],[-118.349748,36.739206],[-118.350375,36.739677],[-118.351002,36.740775],[-118.351316,36.741089],[-118.352414,36.741089],[-118.354453,36.742186],[-118.356806,36.742186],[-118.360099,36.744068],[-118.361197,36.745323],[-118.362138,36.747676],[-118.362295,36.747833],[-118.362765,36.747676],[-118.363393,36.747990],[-118.364804,36.747676],[-118.366530,36.747833],[-118.367000,36.747990],[-118.367471,36.748460],[-118.368412,36.749087],[-118.369196,36.750028],[-118.369353,36.752695],[-118.369666,36.753793],[-118.369666,36.754577],[-118.369666,36.755518],[-118.370921,36.757086],[-118.371549,36.758184],[-118.371705,36.761164],[-118.372960,36.762889],[-118.374685,36.764144],[-118.373587,36.765242],[-118.372803,36.765712],[-118.372019,36.766967],[-118.375783,36.770888],[-118.376411,36.772143],[-118.376567,36.776064],[-118.376411,36.777319],[-118.376097,36.777789],[-118.376097,36.778573],[-118.377195,36.779828],[-118.378450,36.780299],[-118.380175,36.782181],[-118.379704,36.783592],[-118.378136,36.784847],[-118.376881,36.785474],[-118.376881,36.787356],[-118.375940,36.788297],[-118.375940,36.791591],[-118.375156,36.793003],[-118.374999,36.793316],[-118.374685,36.793787],[-118.372803,36.794571],[-118.372803,36.794885],[-118.373274,36.795669],[-118.373744,36.796924],[-118.374058,36.800217],[-118.374529,36.800845],[-118.374842,36.801472],[-118.375156,36.801786],[-118.375783,36.802884],[-118.375940,36.802727],[-118.377195,36.803354],[-118.378136,36.804138],[-118.378606,36.805236],[-118.378606,36.806334],[-118.379391,36.808059],[-118.379391,36.808687],[-118.379547,36.808844],[-118.381430,36.809628],[-118.383939,36.810255],[-118.384409,36.811039],[-118.384409,36.814333],[-118.384723,36.815274],[-118.387233,36.817940],[-118.390056,36.819822],[-118.391154,36.820920],[-118.391938,36.822332],[-118.392251,36.823430],[-118.392251,36.824371],[-118.391781,36.824841],[-118.391154,36.825155],[-118.390997,36.825626],[-118.392722,36.827978],[-118.393663,36.829703],[-118.393663,36.830958],[-118.392408,36.832526],[-118.391310,36.833154],[-118.390840,36.833781],[-118.389742,36.834409],[-118.385821,36.834879],[-118.382214,36.834565],[-118.379547,36.834722],[-118.375940,36.834565],[-118.373901,36.835350],[-118.371549,36.836134],[-118.369353,36.837389],[-118.368255,36.838800],[-118.366530,36.840055],[-118.363393,36.842564],[-118.362138,36.843976],[-118.361511,36.845231],[-118.362138,36.847897],[-118.362922,36.849779],[-118.363079,36.851661],[-118.362922,36.855425],[-118.362295,36.857935],[-118.362295,36.861385],[-118.363236,36.861542],[-118.364804,36.861699],[-118.365589,36.862326],[-118.366373,36.863581],[-118.366530,36.864992],[-118.366530,36.866090],[-118.366216,36.866875],[-118.366216,36.868913],[-118.367000,36.869384],[-118.368098,36.869855],[-118.369039,36.869855],[-118.369823,36.870011],[-118.370137,36.870639],[-118.369980,36.872364],[-118.368569,36.874403],[-118.367784,36.878638],[-118.367784,36.879892],[-118.367157,36.881461],[-118.365589,36.881931],[-118.362452,36.883656],[-118.360883,36.885852],[-118.360883,36.887734],[-118.361511,36.888362],[-118.362765,36.888832],[-118.364961,36.890557],[-118.366373,36.892753],[-118.366687,36.895106],[-118.368098,36.896361],[-118.368725,36.897615]]]}}
,{"id":93527,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-117.792964,35.652930],[-117.792180,35.651989],[-117.797669,35.651832],[-117.800649,35.651361],[-117.713603,35.550983],[-117.715015,35.550042],[-117.715642,35.549886],[-117.716426,35.550042],[-117.772575,35.561805],[-117.774928,35.562590],[-117.776339,35.563531],[-117.776182,35.599761],[-117.779005,35.607446],[-117.785436,35.607446],[-117.785436,35.600859],[-117.795160,35.600859],[-117.797356,35.601016],[-117.799395,35.607603],[-117.799708,35.607603],[-117.801277,35.609955],[-117.800649,35.607760],[-117.803159,35.607603],[-117.805198,35.607289],[-117.855700,35.606505],[-117.875619,35.606348],[-117.900557,35.606505],[-117.905889,35.595840],[-117.925024,35.553650],[-117.894126,35.544553],[-117.893028,35.544396],[-117.889892,35.543298],[-117.890362,35.541416],[-117.890205,35.539534],[-117.890519,35.536240],[-117.890990,35.535299],[-117.965646,35.535143],[-117.950903,35.558825],[-117.952628,35.559766],[-117.953255,35.560708],[-117.953255,35.561178],[-117.950275,35.563531],[-117.947766,35.564472],[-117.946668,35.565413],[-117.946197,35.565883],[-117.944472,35.567295],[-117.942747,35.567922],[-117.940708,35.570275],[-117.938826,35.571530],[-117.938198,35.572157],[-117.937885,35.572784],[-117.937571,35.573412],[-117.937257,35.573725],[-117.935846,35.574353],[-117.934434,35.576392],[-117.932552,35.577646],[-117.929886,35.582352],[-117.929259,35.584547],[-117.922828,35.591762],[-117.921573,35.592546],[-117.921417,35.593330],[-117.922514,35.595056],[-117.922671,35.595526],[-117.921103,35.596467],[-117.919534,35.595840],[-117.918750,35.595997],[-117.917339,35.596781],[-117.916868,35.597095],[-117.916711,35.597565],[-117.916555,35.599133],[-117.915457,35.602427],[-117.915457,35.603368],[-117.914672,35.604466],[-117.914045,35.605878],[-117.913575,35.607760],[-117.913418,35.609014],[-117.912477,35.609642],[-117.911692,35.611367],[-117.911065,35.611367],[-117.910438,35.611838],[-117.910124,35.613406],[-117.909183,35.614661],[-117.908085,35.616856],[-117.907928,35.617327],[-117.907458,35.617797],[-117.906987,35.618895],[-117.906674,35.620150],[-117.906517,35.620150],[-117.905576,35.621562],[-117.904321,35.626424],[-117.903380,35.627835],[-117.903380,35.628463],[-117.902282,35.629090],[-117.900870,35.630345],[-117.900400,35.630972],[-117.899773,35.632540],[-117.898988,35.633795],[-117.898047,35.634423],[-117.897577,35.635207],[-117.897263,35.635520],[-117.896949,35.635991],[-117.896322,35.636461],[-117.896322,35.636775],[-117.897263,35.637089],[-117.897577,35.637716],[-117.897577,35.637873],[-117.896949,35.638187],[-117.896322,35.638814],[-117.896008,35.640069],[-117.895538,35.641480],[-117.894754,35.642265],[-117.894440,35.647911],[-117.890990,35.650420],[-117.890519,35.651204],[-117.890205,35.652930],[-117.888480,35.653871],[-117.887696,35.654498],[-117.887853,35.656380],[-117.887225,35.657008],[-117.887069,35.657478],[-117.886441,35.658262],[-117.886284,35.659360],[-117.886912,35.661242],[-117.887539,35.662183],[-117.887853,35.662654],[-117.888637,35.663124],[-117.889107,35.663595],[-117.888637,35.664850],[-117.887696,35.668300],[-117.886755,35.673476],[-117.884402,35.672848],[-117.881579,35.670339],[-117.880952,35.670025],[-117.879070,35.670182],[-117.875933,35.671123],[-117.872953,35.671907],[-117.871698,35.671751],[-117.870914,35.670653],[-117.870443,35.670653],[-117.866993,35.679749],[-117.866679,35.681161],[-117.867307,35.681161],[-117.867934,35.695904],[-117.870600,35.695904],[-117.870600,35.699668],[-117.874678,35.699668],[-117.876560,35.703903],[-117.877972,35.706255],[-117.879697,35.709706],[-117.880324,35.711745],[-117.882206,35.714882],[-117.883304,35.717862],[-117.882677,35.719116],[-117.877344,35.718332],[-117.878129,35.725233],[-117.877815,35.725233],[-117.880168,35.745622],[-117.870914,35.753778],[-117.870914,35.754405],[-117.870600,35.754405],[-117.872953,35.798007],[-117.885971,35.798164],[-117.890048,35.835649],[-117.897263,35.836747],[-117.899302,35.836590],[-117.900557,35.836747],[-117.890676,35.839727],[-117.892244,35.852744],[-117.894283,35.872977],[-117.895067,35.875016],[-117.892715,35.874075],[-117.892401,35.874075],[-117.891617,35.874702],[-117.891460,35.874388],[-117.891146,35.874232],[-117.889578,35.873918],[-117.888480,35.874232],[-117.887539,35.871879],[-117.887069,35.871252],[-117.886284,35.870467],[-117.883461,35.868272],[-117.880795,35.865605],[-117.879540,35.864037],[-117.877815,35.861214],[-117.876874,35.858704],[-117.876247,35.856195],[-117.875776,35.847412],[-117.875305,35.843334],[-117.874835,35.833767],[-117.874364,35.833767],[-117.874835,35.842079],[-117.872012,35.842079],[-117.871541,35.842236],[-117.869816,35.842236],[-117.856798,35.798007],[-117.849897,35.798007],[-117.849740,35.795654],[-117.848956,35.795654],[-117.848799,35.795184],[-117.848799,35.792675],[-117.848486,35.792675],[-117.844722,35.782950],[-117.827940,35.737937],[-117.821509,35.720057],[-117.817588,35.710490],[-117.814922,35.703275],[-117.812569,35.695590],[-117.806139,35.678338],[-117.804257,35.673946],[-117.803473,35.670339],[-117.801277,35.666575],[-117.797356,35.655596],[-117.792964,35.655596],[-117.792964,35.652930]]],[[[-118.437108,36.133489],[-118.437422,36.133802],[-118.437422,36.134116],[-118.436794,36.135057],[-118.436637,36.135528],[-118.435696,36.136626],[-118.435226,36.137723],[-118.435539,36.138351],[-118.435853,36.139135],[-118.435696,36.140390],[-118.435226,36.141488],[-118.435226,36.142742],[-118.434442,36.144311],[-118.433814,36.144938],[-118.433501,36.146193],[-118.433657,36.146820],[-118.434912,36.147604],[-118.434912,36.148075],[-118.434285,36.148859],[-118.433187,36.149643],[-118.432559,36.150271],[-118.432089,36.151682],[-118.431932,36.152623],[-118.432246,36.153721],[-118.432873,36.153878],[-118.433814,36.153721],[-118.434442,36.154035],[-118.434598,36.155446],[-118.435383,36.157328],[-118.435539,36.158270],[-118.437265,36.159995],[-118.437108,36.160622],[-118.436010,36.161249],[-118.436010,36.163602],[-118.435696,36.164543],[-118.435383,36.164700],[-118.435069,36.165327],[-118.435069,36.166268],[-118.437108,36.167366],[-118.438363,36.169876],[-118.439304,36.170189],[-118.439460,36.170503],[-118.440088,36.170660],[-118.440402,36.171287],[-118.440558,36.172542],[-118.440558,36.173483],[-118.441186,36.174895],[-118.441186,36.175679],[-118.440088,36.177561],[-118.438519,36.179286],[-118.437892,36.180855],[-118.437892,36.181482],[-118.438206,36.181796],[-118.438676,36.183678],[-118.439931,36.185246],[-118.439931,36.186658],[-118.440245,36.187285],[-118.440872,36.187756],[-118.442440,36.188383],[-118.443225,36.188853],[-118.443852,36.191049],[-118.444479,36.191833],[-118.446048,36.193245],[-118.446361,36.194657],[-118.446832,36.195284],[-118.447146,36.195598],[-118.448714,36.195598],[-118.450596,36.196382],[-118.451694,36.196852],[-118.452165,36.197323],[-118.452478,36.198107],[-118.453733,36.198421],[-118.454203,36.198734],[-118.455301,36.199989],[-118.456399,36.200616],[-118.457340,36.200616],[-118.457654,36.200930],[-118.457811,36.201714],[-118.457183,36.203596],[-118.459066,36.204224],[-118.460320,36.205322],[-118.461418,36.205792],[-118.463928,36.205635],[-118.464712,36.205949],[-118.465025,36.206733],[-118.465182,36.207674],[-118.464869,36.208458],[-118.464869,36.209243],[-118.465339,36.210027],[-118.466437,36.210811],[-118.470201,36.210968],[-118.471613,36.210654],[-118.472397,36.210654],[-118.472711,36.210968],[-118.474593,36.211282],[-118.476161,36.211595],[-118.477259,36.211282],[-118.478984,36.212223],[-118.480866,36.213007],[-118.482278,36.214262],[-118.483219,36.214732],[-118.484474,36.214889],[-118.485258,36.214889],[-118.486356,36.215359],[-118.487454,36.215359],[-118.489806,36.214105],[-118.492316,36.215046],[-118.493257,36.215359],[-118.494355,36.215203],[-118.495139,36.214732],[-118.495766,36.214575],[-118.496707,36.215516],[-118.497021,36.215673],[-118.498746,36.215830],[-118.499060,36.215987],[-118.499374,36.216614],[-118.500628,36.216928],[-118.501412,36.217398],[-118.502197,36.218026],[-118.503138,36.219751],[-118.504079,36.221163],[-118.504549,36.221319],[-118.505333,36.221163],[-118.505804,36.221319],[-118.505490,36.222574],[-118.505490,36.223045],[-118.507059,36.223045],[-118.507686,36.223358],[-118.508313,36.223986],[-118.508470,36.224770],[-118.508157,36.226181],[-118.508784,36.227279],[-118.508784,36.227907],[-118.509254,36.228220],[-118.510509,36.228691],[-118.511450,36.229475],[-118.512391,36.229632],[-118.512705,36.230573],[-118.513175,36.231357],[-118.513175,36.231514],[-118.512391,36.232926],[-118.512862,36.233553],[-118.512862,36.234180],[-118.512391,36.234494],[-118.511764,36.234651],[-118.511293,36.234964],[-118.511450,36.235435],[-118.511764,36.235906],[-118.511607,36.237160],[-118.511764,36.238258],[-118.511293,36.239199],[-118.510039,36.240768],[-118.510039,36.241395],[-118.510195,36.242022],[-118.510509,36.242493],[-118.511137,36.243120],[-118.512078,36.242963],[-118.512705,36.243434],[-118.513332,36.243120],[-118.513803,36.243120],[-118.514430,36.243434],[-118.514744,36.244218],[-118.515058,36.245473],[-118.515371,36.246100],[-118.514744,36.247825],[-118.514901,36.248296],[-118.516155,36.249551],[-118.517096,36.249864],[-118.517724,36.250492],[-118.517724,36.250805],[-118.517253,36.253315],[-118.517724,36.254256],[-118.518194,36.254570],[-118.519449,36.254726],[-118.520076,36.255354],[-118.521645,36.255197],[-118.522115,36.255824],[-118.523056,36.256452],[-118.523370,36.256608],[-118.523213,36.257079],[-118.523527,36.258020],[-118.523370,36.258334],[-118.523370,36.258804],[-118.523684,36.258961],[-118.524782,36.258804],[-118.525095,36.258961],[-118.525723,36.259118],[-118.526350,36.260373],[-118.526350,36.261000],[-118.527448,36.261471],[-118.527605,36.261784],[-118.528389,36.262412],[-118.529173,36.263666],[-118.529173,36.263823],[-118.529016,36.264294],[-118.529487,36.265392],[-118.529330,36.265862],[-118.529801,36.267430],[-118.530585,36.267901],[-118.530742,36.268372],[-118.531996,36.268528],[-118.532624,36.269156],[-118.532310,36.269940],[-118.532624,36.270724],[-118.534035,36.271822],[-118.534192,36.273704],[-118.534192,36.274488],[-118.533722,36.275586],[-118.532467,36.276998],[-118.533094,36.278880],[-118.532937,36.279978],[-118.533094,36.280605],[-118.532624,36.281703],[-118.533094,36.282487],[-118.532937,36.283742],[-118.533094,36.284056],[-118.533565,36.284369],[-118.533722,36.284997],[-118.533565,36.284997],[-118.532624,36.285467],[-118.532937,36.286251],[-118.532624,36.287036],[-118.532937,36.287506],[-118.532781,36.290015],[-118.532624,36.290486],[-118.533094,36.291427],[-118.532624,36.292054],[-118.532781,36.292525],[-118.533094,36.292839],[-118.533094,36.294407],[-118.533565,36.294721],[-118.533722,36.295505],[-118.533565,36.295975],[-118.532467,36.297230],[-118.532467,36.297544],[-118.532624,36.297857],[-118.533094,36.298171],[-118.533094,36.298799],[-118.533565,36.299426],[-118.534819,36.299112],[-118.535447,36.299269],[-118.535917,36.299426],[-118.536388,36.300053],[-118.537486,36.300367],[-118.538270,36.302092],[-118.537799,36.303504],[-118.537956,36.304445],[-118.538270,36.304758],[-118.538584,36.305543],[-118.539054,36.305856],[-118.539995,36.306327],[-118.540152,36.306641],[-118.540936,36.307425],[-118.542661,36.308366],[-118.542818,36.309464],[-118.542818,36.310248],[-118.542505,36.310875],[-118.541877,36.311816],[-118.541877,36.311973],[-118.542034,36.312287],[-118.542975,36.312287],[-118.543289,36.312600],[-118.542661,36.313228],[-118.542661,36.313698],[-118.543602,36.314483],[-118.543759,36.315267],[-118.543916,36.315580],[-118.544857,36.316522],[-118.546426,36.317149],[-118.547053,36.317149],[-118.547680,36.317306],[-118.548935,36.318717],[-118.549719,36.318874],[-118.551131,36.319031],[-118.553483,36.318247],[-118.554424,36.317306],[-118.555052,36.316992],[-118.558345,36.318090],[-118.559443,36.317776],[-118.562423,36.319188],[-118.563364,36.319345],[-118.565403,36.318874],[-118.565874,36.317619],[-118.566815,36.316835],[-118.568383,36.316522],[-118.572147,36.323266],[-118.570893,36.324991],[-118.570736,36.325305],[-118.570736,36.326246],[-118.571520,36.327030],[-118.571991,36.327030],[-118.572775,36.329069],[-118.574657,36.331108],[-118.576696,36.331421],[-118.577480,36.331421],[-118.580617,36.332206],[-118.582185,36.332049],[-118.585479,36.332206],[-118.588929,36.333931],[-118.590655,36.335186],[-118.525095,36.335186],[-118.524154,36.335342],[-118.484003,36.335186],[-118.465496,36.335499],[-118.462516,36.335499],[-118.462045,36.335813],[-118.461418,36.335970],[-118.459693,36.335342],[-118.404799,36.335186],[-118.388644,36.335029],[-118.319791,36.334872],[-118.292972,36.335029],[-118.275092,36.335186],[-118.258780,36.335029],[-118.232902,36.335186],[-118.207023,36.335186],[-118.200122,36.335342],[-118.192123,36.335186],[-118.192123,36.334715],[-118.191966,36.334244],[-118.192123,36.333617],[-118.190868,36.333147],[-118.190398,36.332676],[-118.191339,36.330637],[-118.190868,36.329539],[-118.191653,36.328598],[-118.192123,36.327030],[-118.191496,36.325305],[-118.190712,36.324207],[-118.190398,36.323422],[-118.190241,36.322168],[-118.190241,36.321227],[-118.189927,36.320443],[-118.189771,36.319815],[-118.189143,36.318874],[-118.188516,36.318247],[-118.187888,36.318090],[-118.187261,36.318090],[-118.186791,36.317776],[-118.186320,36.316678],[-118.186320,36.315580],[-118.184438,36.313385],[-118.184438,36.313228],[-118.185536,36.312287],[-118.185536,36.312130],[-118.185536,36.311503],[-118.184595,36.310091],[-118.184908,36.308679],[-118.184752,36.308209],[-118.183967,36.306954],[-118.182556,36.305700],[-118.181928,36.305543],[-118.181772,36.305072],[-118.181615,36.304288],[-118.182242,36.303504],[-118.182242,36.303190],[-118.182085,36.302720],[-118.181301,36.302406],[-118.180987,36.302092],[-118.181144,36.300994],[-118.180987,36.299896],[-118.180831,36.299583],[-118.180203,36.299740],[-118.179262,36.299269],[-118.179890,36.298642],[-118.180203,36.297857],[-118.180203,36.297387],[-118.179890,36.296760],[-118.180831,36.296132],[-118.180831,36.295505],[-118.181615,36.294721],[-118.181458,36.293780],[-118.181772,36.293152],[-118.181772,36.292368],[-118.182242,36.291584],[-118.182085,36.290486],[-118.182242,36.289859],[-118.183811,36.288604],[-118.184124,36.287977],[-118.184752,36.287506],[-118.184908,36.287192],[-118.184908,36.286094],[-118.185379,36.285467],[-118.184752,36.284683],[-118.184595,36.284056],[-118.186006,36.282173],[-118.185850,36.280762],[-118.187418,36.280135],[-118.188045,36.279193],[-118.188829,36.278566],[-118.188673,36.277468],[-118.188829,36.277155],[-118.189614,36.276998],[-118.190712,36.276684],[-118.190868,36.275586],[-118.191653,36.274959],[-118.191966,36.274018],[-118.192594,36.273861],[-118.193064,36.273234],[-118.194476,36.272293],[-118.195260,36.271195],[-118.196044,36.270881],[-118.196201,36.270567],[-118.196201,36.268842],[-118.197926,36.267274],[-118.198083,36.266646],[-118.198867,36.265392],[-118.198867,36.264607],[-118.199808,36.263666],[-118.199965,36.262882],[-118.200593,36.261941],[-118.201377,36.259588],[-118.202318,36.258804],[-118.203259,36.257079],[-118.203729,36.255981],[-118.203729,36.254883],[-118.203259,36.253315],[-118.203416,36.251590],[-118.203259,36.251276],[-118.201847,36.249864],[-118.199181,36.248296],[-118.197926,36.247198],[-118.196985,36.246884],[-118.196201,36.246414],[-118.193692,36.246257],[-118.192123,36.245473],[-118.191496,36.244845],[-118.191182,36.244218],[-118.191025,36.243120],[-118.190868,36.242336],[-118.189614,36.241081],[-118.188359,36.239983],[-118.187575,36.238886],[-118.187104,36.236847],[-118.187261,36.236062],[-118.186791,36.234651],[-118.185693,36.233082],[-118.185693,36.232141],[-118.185222,36.231514],[-118.183183,36.229632],[-118.183497,36.229318],[-118.183026,36.228848],[-118.182242,36.228848],[-118.182242,36.228377],[-118.181928,36.228220],[-118.180831,36.228064],[-118.179105,36.227907],[-118.177380,36.226966],[-118.174871,36.226495],[-118.174243,36.226495],[-118.173145,36.226338],[-118.172518,36.225084],[-118.171891,36.224143],[-118.171891,36.223358],[-118.172048,36.222888],[-118.172832,36.222888],[-118.173459,36.222260],[-118.172989,36.221163],[-118.173459,36.220535],[-118.173616,36.219751],[-118.173930,36.219280],[-118.173773,36.218496],[-118.173145,36.217712],[-118.173459,36.217398],[-118.174243,36.216928],[-118.175028,36.215987],[-118.176125,36.216144],[-118.176596,36.215987],[-118.176282,36.215046],[-118.175341,36.214889],[-118.175028,36.214105],[-118.175184,36.213321],[-118.174871,36.212693],[-118.174400,36.212223],[-118.174243,36.211909],[-118.174557,36.211125],[-118.175184,36.210497],[-118.175341,36.209713],[-118.176282,36.209086],[-118.175655,36.208615],[-118.175341,36.207831],[-118.174714,36.207674],[-118.173930,36.207047],[-118.173930,36.206890],[-118.174557,36.206263],[-118.174243,36.205008],[-118.173616,36.204381],[-118.173616,36.203910],[-118.173930,36.203596],[-118.173302,36.202812],[-118.173302,36.202342],[-118.173616,36.202028],[-118.174871,36.201557],[-118.175184,36.201401],[-118.174871,36.201087],[-118.174400,36.201087],[-118.173459,36.200773],[-118.172675,36.200616],[-118.171891,36.199675],[-118.172048,36.199048],[-118.171891,36.198734],[-118.170009,36.199048],[-118.169381,36.198578],[-118.169224,36.198421],[-118.169224,36.197950],[-118.169538,36.197480],[-118.170009,36.197009],[-118.170009,36.196695],[-118.169381,36.196382],[-118.169381,36.195441],[-118.168754,36.195127],[-118.167656,36.195284],[-118.167342,36.194813],[-118.168283,36.193872],[-118.168440,36.193402],[-118.168283,36.192931],[-118.167970,36.192774],[-118.166558,36.192618],[-118.165460,36.192618],[-118.165303,36.192618],[-118.165147,36.192147],[-118.164519,36.191520],[-118.164676,36.190735],[-118.164519,36.190579],[-118.163892,36.190422],[-118.163892,36.189951],[-118.164049,36.189638],[-118.164990,36.189481],[-118.165774,36.188697],[-118.166088,36.188226],[-118.165931,36.187756],[-118.164206,36.186658],[-118.164049,36.186187],[-118.164362,36.185873],[-118.164049,36.184619],[-118.163735,36.184462],[-118.162794,36.184619],[-118.162480,36.184462],[-118.162323,36.183207],[-118.163264,36.183050],[-118.163578,36.182580],[-118.163421,36.182266],[-118.162480,36.182109],[-118.161539,36.182266],[-118.161226,36.182109],[-118.160912,36.181639],[-118.161069,36.180698],[-118.160441,36.180227],[-118.159343,36.180070],[-118.158559,36.180070],[-118.157932,36.179757],[-118.157305,36.179757],[-118.156520,36.179443],[-118.156364,36.179914],[-118.156364,36.180855],[-118.156050,36.181325],[-118.155579,36.181639],[-118.154952,36.181796],[-118.154325,36.181639],[-118.153227,36.181011],[-118.152756,36.181011],[-118.152286,36.181482],[-118.152286,36.181952],[-118.151658,36.182266],[-118.151345,36.183050],[-118.149306,36.182893],[-118.148678,36.183050],[-118.147894,36.182893],[-118.146639,36.183050],[-118.146169,36.182580],[-118.146012,36.182266],[-118.145385,36.181482],[-118.144757,36.181168],[-118.144287,36.181639],[-118.143816,36.182423],[-118.141777,36.182423],[-118.140836,36.182893],[-118.139895,36.183207],[-118.138484,36.182893],[-118.137543,36.183050],[-118.137072,36.182737],[-118.136131,36.182737],[-118.135347,36.183207],[-118.135190,36.184305],[-118.135347,36.184932],[-118.135190,36.185089],[-118.134563,36.185246],[-118.134249,36.185089],[-118.132994,36.184305],[-118.132994,36.183678],[-118.132524,36.183364],[-118.130485,36.183991],[-118.129544,36.183835],[-118.129701,36.183050],[-118.128760,36.181952],[-118.127662,36.181325],[-118.126407,36.180855],[-118.124682,36.179286],[-118.124525,36.178502],[-118.124211,36.177718],[-118.123427,36.177247],[-118.122329,36.176777],[-118.122172,36.176149],[-118.122015,36.175992],[-118.121231,36.175679],[-118.119977,36.174581],[-118.119349,36.174581],[-118.118565,36.174110],[-118.116997,36.174110],[-118.115899,36.173797],[-118.114644,36.172542],[-118.113860,36.172542],[-118.112919,36.173326],[-118.110566,36.173483],[-118.110096,36.173169],[-118.109782,36.172071],[-118.109311,36.171758],[-118.108213,36.171444],[-118.106959,36.171601],[-118.106018,36.171601],[-118.105077,36.170660],[-118.104606,36.170503],[-118.104136,36.170033],[-118.103979,36.169562],[-118.103665,36.169248],[-118.103038,36.169248],[-118.101940,36.169405],[-118.101156,36.169248],[-118.099587,36.168621],[-118.098803,36.167837],[-118.098803,36.167366],[-118.099274,36.166896],[-118.099744,36.165484],[-118.099587,36.165327],[-118.099117,36.164700],[-118.098960,36.163759],[-118.099274,36.163445],[-118.100685,36.162347],[-118.100999,36.161563],[-118.100215,36.159524],[-118.099430,36.158426],[-118.099587,36.158113],[-118.100999,36.157172],[-118.101313,36.156701],[-118.099587,36.151525],[-118.098489,36.150271],[-118.097235,36.149330],[-118.098960,36.146977],[-118.100058,36.140390],[-118.097392,36.128940],[-118.085628,36.113413],[-118.071827,36.095847],[-118.064612,36.076085],[-118.061946,36.066832],[-118.061946,36.066204],[-118.061946,36.065891],[-118.061632,36.065106],[-118.061161,36.062911],[-118.061632,36.062440],[-118.061789,36.061028],[-118.061475,36.059303],[-118.061161,36.059146],[-118.061005,36.057892],[-118.060691,36.057264],[-118.060848,36.056166],[-118.061632,36.054912],[-118.061318,36.054127],[-118.061318,36.053814],[-118.061475,36.053186],[-118.062259,36.052559],[-118.062102,36.051932],[-118.061632,36.051304],[-118.061475,36.050677],[-118.061161,36.050363],[-118.061005,36.049736],[-118.061475,36.047383],[-118.061475,36.046285],[-118.061946,36.043619],[-118.062416,36.042678],[-118.062573,36.042051],[-118.062730,36.041737],[-118.063200,36.039071],[-118.063357,36.038600],[-118.063357,36.038130],[-118.063828,36.036718],[-118.063671,36.036248],[-118.063984,36.035620],[-118.063984,36.034836],[-118.064455,36.034209],[-118.064926,36.034052],[-118.065082,36.033895],[-118.065710,36.032327],[-118.040145,36.032327],[-118.040458,36.031386],[-118.041556,36.029974],[-118.041399,36.029817],[-118.039674,36.029974],[-118.037949,36.029817],[-118.037635,36.029817],[-118.037165,36.029190],[-118.037008,36.026210],[-118.036381,36.024485],[-118.035753,36.023387],[-118.035753,36.022289],[-118.036224,36.020250],[-118.035753,36.018211],[-118.034655,36.015231],[-118.034655,36.014290],[-118.035440,36.013035],[-118.034655,36.011467],[-118.034185,36.010996],[-118.034028,36.009585],[-118.033557,36.008957],[-118.031989,36.008016],[-118.031832,36.007389],[-118.031362,36.007075],[-118.030734,36.007075],[-118.028382,36.006291],[-118.026970,36.005821],[-118.025245,36.004880],[-118.024461,36.004566],[-118.024147,36.004723],[-118.022265,36.004566],[-118.020540,36.004095],[-118.018971,36.003311],[-118.018344,36.002684],[-118.016462,36.001115],[-118.014580,36.000018],[-118.014266,35.998449],[-118.012070,35.998292],[-118.011913,35.997665],[-118.011600,35.997194],[-118.011286,35.993273],[-118.010659,35.991705],[-118.010188,35.991391],[-118.006895,35.989823],[-118.006267,35.989823],[-118.006424,35.986686],[-118.005954,35.985745],[-118.004385,35.985118],[-118.003601,35.983706],[-118.005326,35.980569],[-118.004542,35.979315],[-118.003915,35.978844],[-118.004071,35.977903],[-118.004542,35.977119],[-118.005169,35.976962],[-118.006895,35.977589],[-118.009561,35.978217],[-118.009875,35.977903],[-118.010659,35.976648],[-118.011600,35.975864],[-118.011443,35.974296],[-118.014580,35.972884],[-118.014737,35.972414],[-118.013952,35.971786],[-118.013796,35.970688],[-118.012384,35.969747],[-118.012541,35.968963],[-118.012698,35.968336],[-118.012698,35.967865],[-118.013796,35.967865],[-118.014423,35.967081],[-118.014737,35.965199],[-118.015207,35.964572],[-118.017560,35.963003],[-118.018030,35.962376],[-118.018187,35.960964],[-118.018030,35.960023],[-118.017560,35.959396],[-118.016932,35.959239],[-118.016619,35.958925],[-118.017089,35.958141],[-118.017246,35.956102],[-118.016776,35.954534],[-118.015991,35.954220],[-118.014893,35.954691],[-118.013482,35.954691],[-118.011600,35.954220],[-118.011129,35.954534],[-118.010188,35.953750],[-118.009561,35.952338],[-118.009561,35.951397],[-118.009875,35.949358],[-118.009404,35.948574],[-118.008149,35.947319],[-118.006895,35.946535],[-118.003601,35.945908],[-118.002503,35.946378],[-118.000935,35.946064],[-118.000307,35.946535],[-117.999209,35.946535],[-117.998582,35.946221],[-117.998425,35.945437],[-117.998112,35.944967],[-117.995916,35.944026],[-117.994975,35.944026],[-117.994191,35.944339],[-117.993406,35.944339],[-117.991995,35.943712],[-117.989799,35.940418],[-117.989642,35.938850],[-117.987917,35.937281],[-117.985407,35.934145],[-117.986505,35.932106],[-117.986192,35.931321],[-117.983212,35.926616],[-117.983525,35.925989],[-117.984153,35.925048],[-117.984466,35.924107],[-117.985878,35.922695],[-117.986192,35.921597],[-117.986976,35.920186],[-117.987446,35.918461],[-117.988074,35.917519],[-117.989172,35.916735],[-117.990113,35.915951],[-117.990270,35.914069],[-117.990270,35.912814],[-117.989328,35.911403],[-117.988858,35.910148],[-117.989172,35.908109],[-117.989015,35.907952],[-117.985564,35.905756],[-117.985407,35.905286],[-117.986662,35.904659],[-117.987760,35.902620],[-117.987917,35.901365],[-117.987133,35.899169],[-117.985721,35.897444],[-117.982427,35.895719],[-117.982114,35.894621],[-117.982271,35.893052],[-117.982898,35.891954],[-117.983682,35.891484],[-117.984310,35.890700],[-117.984623,35.887720],[-117.985251,35.887249],[-117.987446,35.886308],[-117.989015,35.884112],[-117.988387,35.882074],[-117.989015,35.881289],[-117.988858,35.879721],[-117.986976,35.878466],[-117.985721,35.878309],[-117.983212,35.875643],[-117.982898,35.875016],[-117.983212,35.872820],[-117.981957,35.870311],[-117.982114,35.869056],[-117.980702,35.867487],[-117.981016,35.866860],[-117.984937,35.866703],[-117.988387,35.865762],[-117.989485,35.865605],[-117.990583,35.865762],[-117.991211,35.866546],[-117.992152,35.868115],[-117.993720,35.869683],[-117.996700,35.869526],[-117.998268,35.868742],[-117.999053,35.867487],[-117.999837,35.866390],[-118.000935,35.865919],[-118.001719,35.865135],[-118.002189,35.863880],[-118.005483,35.862625],[-118.005954,35.860116],[-118.006424,35.859018],[-118.007365,35.858234],[-118.006424,35.857136],[-118.006581,35.854783],[-118.006267,35.853999],[-118.005169,35.853215],[-118.004856,35.851333],[-118.005483,35.845687],[-118.005483,35.843334],[-118.004385,35.842236],[-118.002974,35.842079],[-118.002974,35.841295],[-118.004542,35.840354],[-118.005013,35.839099],[-118.004856,35.837688],[-118.004385,35.836119],[-118.005169,35.833767],[-118.006267,35.831257],[-118.006267,35.829061],[-118.004856,35.827336],[-118.002660,35.825454],[-118.000935,35.824356],[-117.998896,35.823729],[-117.998582,35.823415],[-117.998582,35.823102],[-117.998896,35.822945],[-117.999994,35.820749],[-118.000464,35.820278],[-118.001719,35.820122],[-118.002346,35.819494],[-118.003758,35.818239],[-118.006738,35.817142],[-118.007679,35.817142],[-118.007679,35.816044],[-118.008306,35.814475],[-118.008934,35.812123],[-118.008463,35.811809],[-118.007522,35.811339],[-118.007522,35.809927],[-118.008149,35.808672],[-118.008777,35.806633],[-118.009718,35.805065],[-118.010502,35.804438],[-118.007522,35.799889],[-118.007365,35.798791],[-118.008777,35.797223],[-118.009404,35.795341],[-118.007836,35.789851],[-118.007992,35.789224],[-118.050810,35.791106],[-118.067749,35.791577],[-118.151815,35.791106],[-118.195417,35.790636],[-118.195730,35.791420],[-118.195417,35.792518],[-118.195574,35.793302],[-118.195574,35.794557],[-118.195887,35.795341],[-118.195730,35.796125],[-118.196671,35.798634],[-118.197142,35.801928],[-118.197926,35.803340],[-118.199495,35.804438],[-118.199651,35.804908],[-118.200279,35.805692],[-118.200906,35.805849],[-118.201534,35.805849],[-118.202004,35.806320],[-118.202004,35.807888],[-118.201534,35.809143],[-118.201377,35.810711],[-118.202945,35.812750],[-118.202945,35.814318],[-118.202788,35.814789],[-118.201847,35.815730],[-118.200749,35.816514],[-118.199338,35.816985],[-118.197142,35.817142],[-118.196515,35.817612],[-118.195730,35.818553],[-118.195103,35.818710],[-118.193848,35.818553],[-118.192594,35.819024],[-118.192123,35.819337],[-118.192437,35.820592],[-118.192280,35.821847],[-118.192280,35.822317],[-118.192594,35.822631],[-118.193692,35.822788],[-118.194162,35.823572],[-118.195103,35.823886],[-118.195887,35.824043],[-118.196201,35.824513],[-118.196044,35.824827],[-118.195417,35.825297],[-118.193064,35.826082],[-118.191339,35.827493],[-118.190084,35.827964],[-118.189614,35.828277],[-118.189457,35.828748],[-118.189300,35.829218],[-118.190084,35.831885],[-118.191966,35.833296],[-118.194162,35.834237],[-118.194946,35.835335],[-118.195103,35.835806],[-118.195887,35.836590],[-118.197299,35.837217],[-118.198240,35.837060],[-118.199338,35.837217],[-118.202004,35.837060],[-118.203416,35.836590],[-118.204357,35.836747],[-118.208121,35.836747],[-118.210317,35.835962],[-118.211885,35.835021],[-118.215336,35.834394],[-118.216277,35.834394],[-118.216747,35.835021],[-118.216904,35.835492],[-118.216904,35.837845],[-118.217374,35.839099],[-118.216590,35.840040],[-118.216590,35.840511],[-118.216747,35.840981],[-118.217688,35.841609],[-118.217531,35.842393],[-118.217218,35.843491],[-118.216433,35.844118],[-118.214081,35.845373],[-118.213140,35.846000],[-118.212356,35.846157],[-118.211414,35.845687],[-118.210630,35.845530],[-118.209532,35.845687],[-118.208591,35.845687],[-118.207807,35.846157],[-118.207493,35.846471],[-118.207180,35.847255],[-118.206082,35.848823],[-118.205925,35.850862],[-118.205298,35.851960],[-118.204200,35.852901],[-118.203572,35.853685],[-118.202788,35.854156],[-118.202318,35.854470],[-118.202004,35.855724],[-118.201063,35.857606],[-118.200436,35.859489],[-118.200436,35.860116],[-118.201063,35.860900],[-118.200906,35.861527],[-118.200279,35.862155],[-118.200122,35.862625],[-118.200436,35.862939],[-118.200749,35.863253],[-118.201847,35.863566],[-118.202004,35.863723],[-118.201377,35.864507],[-118.201377,35.865448],[-118.202161,35.867958],[-118.202161,35.868428],[-118.201847,35.869526],[-118.201534,35.870467],[-118.199495,35.872820],[-118.198240,35.873918],[-118.196828,35.875486],[-118.196358,35.876427],[-118.196201,35.877055],[-118.196515,35.877839],[-118.196358,35.878153],[-118.194319,35.879250],[-118.193535,35.880191],[-118.193378,35.880662],[-118.193692,35.881446],[-118.193535,35.882387],[-118.193692,35.883015],[-118.193692,35.884269],[-118.193692,35.884740],[-118.193535,35.885054],[-118.193064,35.885524],[-118.191653,35.886151],[-118.190241,35.888190],[-118.189927,35.889288],[-118.189614,35.889916],[-118.188986,35.890386],[-118.189143,35.892268],[-118.188986,35.892896],[-118.187261,35.893209],[-118.186947,35.893680],[-118.186947,35.895091],[-118.187261,35.895562],[-118.187732,35.895562],[-118.187732,35.896189],[-118.188516,35.896346],[-118.190241,35.896346],[-118.191653,35.896973],[-118.191496,35.897287],[-118.191809,35.897914],[-118.191182,35.899483],[-118.189771,35.900267],[-118.189457,35.900581],[-118.189457,35.901051],[-118.188359,35.901522],[-118.187888,35.902463],[-118.186163,35.903718],[-118.185379,35.904972],[-118.185222,35.905286],[-118.185379,35.905600],[-118.185065,35.905913],[-118.182399,35.906541],[-118.181772,35.906227],[-118.181144,35.906227],[-118.180517,35.906541],[-118.179419,35.906384],[-118.178792,35.907168],[-118.178478,35.907795],[-118.178164,35.908736],[-118.178164,35.909677],[-118.177851,35.909991],[-118.176282,35.910148],[-118.174086,35.909834],[-118.172675,35.909991],[-118.172204,35.909677],[-118.171577,35.909991],[-118.170636,35.910462],[-118.169538,35.910619],[-118.169068,35.911089],[-118.169381,35.911560],[-118.169224,35.911873],[-118.167970,35.912501],[-118.166715,35.913285],[-118.166558,35.914069],[-118.166715,35.915010],[-118.166401,35.915637],[-118.165774,35.916108],[-118.164676,35.917363],[-118.164676,35.917676],[-118.165147,35.918304],[-118.167342,35.919872],[-118.167970,35.920029],[-118.168283,35.920813],[-118.167970,35.922068],[-118.167656,35.923793],[-118.167185,35.925362],[-118.167342,35.926303],[-118.167185,35.926930],[-118.167185,35.927714],[-118.167029,35.928341],[-118.167499,35.928812],[-118.167499,35.929283],[-118.167185,35.930224],[-118.167499,35.931635],[-118.167342,35.931792],[-118.165931,35.932419],[-118.163421,35.932576],[-118.163421,35.933204],[-118.164049,35.933517],[-118.164362,35.933988],[-118.162637,35.935086],[-118.163264,35.936811],[-118.163108,35.938379],[-118.161853,35.940105],[-118.163264,35.941046],[-118.164206,35.941202],[-118.165460,35.941202],[-118.167029,35.941516],[-118.168127,35.942614],[-118.169068,35.944182],[-118.168440,35.944496],[-118.165774,35.944496],[-118.165617,35.944653],[-118.165617,35.945594],[-118.165774,35.945751],[-118.167029,35.946849],[-118.166872,35.947633],[-118.166872,35.947947],[-118.167499,35.948574],[-118.168440,35.948888],[-118.168754,35.949829],[-118.167970,35.950926],[-118.167656,35.952024],[-118.164990,35.952965],[-118.164362,35.953593],[-118.162794,35.954534],[-118.161853,35.954534],[-118.161382,35.955161],[-118.160441,35.955945],[-118.160285,35.956259],[-118.160598,35.956730],[-118.162480,35.958769],[-118.162951,35.959082],[-118.163108,35.959710],[-118.160755,35.961121],[-118.160912,35.962219],[-118.159187,35.963474],[-118.159187,35.964101],[-118.159657,35.964572],[-118.159657,35.964885],[-118.158873,35.965513],[-118.158246,35.966454],[-118.157618,35.966924],[-118.158089,35.967238],[-118.158716,35.967708],[-118.159030,35.968649],[-118.159971,35.969591],[-118.159971,35.970061],[-118.159814,35.970845],[-118.158089,35.973512],[-118.155893,35.975550],[-118.155579,35.976178],[-118.154795,35.978060],[-118.154952,35.979471],[-118.154481,35.980256],[-118.153384,35.981667],[-118.153384,35.981824],[-118.153697,35.981981],[-118.155109,35.982765],[-118.155266,35.983236],[-118.155109,35.983706],[-118.154325,35.984334],[-118.153070,35.984490],[-118.152599,35.985275],[-118.152599,35.986059],[-118.152129,35.986529],[-118.150404,35.986686],[-118.150090,35.986529],[-118.149776,35.985588],[-118.149619,35.985588],[-118.148208,35.985588],[-118.147580,35.985431],[-118.147110,35.985902],[-118.146483,35.987000],[-118.146483,35.987627],[-118.147580,35.989039],[-118.147737,35.989509],[-118.149619,35.990137],[-118.150090,35.990764],[-118.150560,35.992803],[-118.150560,35.993587],[-118.150874,35.994371],[-118.150717,35.994842],[-118.149776,35.996097],[-118.149463,35.996097],[-118.149149,35.996410],[-118.147737,35.996567],[-118.146796,35.996881],[-118.146012,35.997665],[-118.146169,35.998292],[-118.145855,35.998606],[-118.143973,35.998920],[-118.143816,35.999233],[-118.144287,36.001115],[-118.144914,36.001586],[-118.145698,36.002056],[-118.146012,36.002684],[-118.145542,36.003154],[-118.145071,36.003154],[-118.144600,36.003154],[-118.143032,36.004252],[-118.142562,36.004723],[-118.142405,36.005193],[-118.141777,36.005193],[-118.141621,36.004880],[-118.139738,36.004880],[-118.139425,36.005193],[-118.139268,36.005664],[-118.139582,36.006291],[-118.138954,36.007075],[-118.138013,36.007389],[-118.138013,36.008016],[-118.138484,36.008173],[-118.138327,36.008957],[-118.137856,36.010840],[-118.137699,36.011153],[-118.137699,36.011937],[-118.137386,36.012408],[-118.136758,36.012878],[-118.136288,36.013976],[-118.135974,36.014133],[-118.134563,36.013976],[-118.133778,36.014133],[-118.133308,36.013976],[-118.132837,36.013820],[-118.132367,36.014133],[-118.131740,36.014761],[-118.131740,36.015388],[-118.131896,36.015702],[-118.132837,36.016172],[-118.134249,36.016486],[-118.134876,36.016956],[-118.134876,36.017584],[-118.134406,36.018054],[-118.134249,36.018838],[-118.134406,36.020093],[-118.134092,36.021348],[-118.134720,36.022132],[-118.136131,36.022759],[-118.135817,36.023230],[-118.136131,36.024014],[-118.136758,36.025269],[-118.136288,36.026680],[-118.136288,36.028876],[-118.135661,36.029504],[-118.135347,36.030131],[-118.134720,36.030131],[-118.134249,36.030915],[-118.134092,36.032170],[-118.133465,36.032797],[-118.133622,36.033581],[-118.134092,36.034209],[-118.134720,36.034679],[-118.135347,36.034836],[-118.137072,36.034522],[-118.137699,36.035150],[-118.138641,36.035307],[-118.139425,36.036091],[-118.142091,36.035934],[-118.144757,36.035307],[-118.145228,36.035307],[-118.146483,36.035934],[-118.146796,36.035934],[-118.146953,36.035463],[-118.147267,36.035307],[-118.148365,36.036091],[-118.148992,36.036091],[-118.149933,36.035620],[-118.151658,36.035777],[-118.154481,36.035307],[-118.155109,36.035150],[-118.156364,36.034993],[-118.157618,36.034679],[-118.158873,36.034836],[-118.160285,36.034366],[-118.160912,36.034366],[-118.161382,36.034052],[-118.162010,36.034209],[-118.163264,36.033738],[-118.163578,36.033425],[-118.165303,36.033111],[-118.166558,36.033268],[-118.167029,36.033111],[-118.167813,36.032954],[-118.168911,36.033425],[-118.169695,36.033268],[-118.171107,36.033425],[-118.171891,36.033268],[-118.174714,36.033581],[-118.175969,36.033425],[-118.176596,36.033581],[-118.176596,36.032640],[-118.188516,36.032640],[-118.188986,36.033268],[-118.189771,36.033738],[-118.192123,36.033738],[-118.196515,36.034993],[-118.197769,36.035150],[-118.198554,36.035777],[-118.199651,36.036248],[-118.199965,36.036561],[-118.199965,36.037189],[-118.199651,36.037973],[-118.200122,36.039071],[-118.200436,36.040169],[-118.201690,36.040639],[-118.202475,36.041423],[-118.203886,36.041894],[-118.204200,36.042208],[-118.204357,36.042521],[-118.204357,36.042835],[-118.203259,36.045188],[-118.199965,36.048011],[-118.199651,36.048324],[-118.199338,36.048952],[-118.199495,36.049893],[-118.200122,36.050520],[-118.200593,36.050834],[-118.202945,36.051618],[-118.206082,36.053186],[-118.206552,36.053814],[-118.207180,36.055069],[-118.208435,36.055696],[-118.208748,36.056010],[-118.208905,36.058205],[-118.209532,36.059146],[-118.210003,36.059774],[-118.216120,36.063695],[-118.217374,36.064008],[-118.218315,36.063695],[-118.218629,36.064165],[-118.218159,36.066675],[-118.218159,36.066988],[-118.218629,36.067145],[-118.218472,36.066518],[-118.219100,36.065420],[-118.219413,36.064949],[-118.218943,36.064322],[-118.218943,36.064008],[-118.218786,36.063538],[-118.219413,36.063852],[-118.219413,36.064165],[-118.220511,36.064636],[-118.220982,36.065106],[-118.222393,36.065734],[-118.223021,36.065891],[-118.224589,36.066832],[-118.226001,36.067145],[-118.226628,36.066988],[-118.227726,36.068557],[-118.229922,36.069498],[-118.230392,36.069498],[-118.231020,36.069655],[-118.232902,36.069341],[-118.233372,36.069812],[-118.234156,36.069655],[-118.234627,36.069812],[-118.234784,36.069655],[-118.235097,36.069812],[-118.235725,36.069655],[-118.235882,36.069968],[-118.235725,36.070282],[-118.236195,36.070439],[-118.236666,36.069968],[-118.237450,36.070125],[-118.237764,36.070125],[-118.237764,36.070439],[-118.238077,36.070439],[-118.237921,36.070753],[-118.238077,36.071066],[-118.238391,36.071066],[-118.238548,36.070753],[-118.238862,36.070909],[-118.238862,36.071223],[-118.238548,36.071223],[-118.238548,36.071537],[-118.238391,36.071850],[-118.238705,36.072164],[-118.239175,36.072007],[-118.239489,36.072007],[-118.239489,36.072321],[-118.239332,36.072635],[-118.239489,36.072948],[-118.239803,36.072791],[-118.240116,36.072321],[-118.240744,36.072635],[-118.240900,36.072948],[-118.240273,36.073105],[-118.240273,36.073419],[-118.240587,36.073419],[-118.240900,36.074046],[-118.241214,36.073889],[-118.241528,36.074046],[-118.241371,36.074517],[-118.241685,36.074674],[-118.241842,36.075144],[-118.242783,36.075615],[-118.243410,36.075615],[-118.243567,36.075928],[-118.244508,36.076085],[-118.245292,36.076713],[-118.245763,36.076556],[-118.245919,36.076713],[-118.246233,36.077497],[-118.246547,36.077810],[-118.246547,36.078124],[-118.246860,36.078124],[-118.246860,36.078751],[-118.247174,36.079065],[-118.247017,36.079536],[-118.247331,36.079536],[-118.247645,36.079536],[-118.247958,36.103846],[-118.247645,36.104473],[-118.247958,36.104787],[-118.248115,36.105101],[-118.247958,36.105571],[-118.248272,36.128470],[-118.248272,36.128627],[-118.248429,36.128784],[-118.248429,36.134900],[-118.251409,36.134900],[-118.252193,36.135685],[-118.252664,36.135841],[-118.252977,36.135685],[-118.252820,36.136155],[-118.253134,36.137253],[-118.253448,36.137410],[-118.253605,36.138037],[-118.253448,36.138508],[-118.253134,36.138664],[-118.253134,36.138821],[-118.252507,36.138978],[-118.252193,36.138978],[-118.251566,36.139135],[-118.251566,36.139449],[-118.251409,36.139449],[-118.251095,36.139919],[-118.250938,36.140233],[-118.250311,36.140703],[-118.248586,36.141174],[-118.248586,36.141488],[-118.248272,36.141801],[-118.248586,36.141958],[-118.248272,36.142272],[-118.247958,36.142429],[-118.247488,36.142429],[-118.247174,36.142585],[-118.246704,36.143370],[-118.246076,36.143683],[-118.244978,36.143527],[-118.244508,36.143056],[-118.242469,36.143370],[-118.241371,36.142429],[-118.239803,36.142429],[-118.239332,36.142585],[-118.239332,36.142742],[-118.238548,36.142742],[-118.237921,36.143056],[-118.237921,36.143527],[-118.237607,36.143683],[-118.237607,36.144781],[-118.236509,36.145565],[-118.235254,36.146036],[-118.234156,36.145879],[-118.232745,36.146506],[-118.232431,36.146506],[-118.231961,36.145879],[-118.230549,36.145722],[-118.229765,36.144938],[-118.227099,36.144154],[-118.227099,36.145409],[-118.226314,36.146820],[-118.226471,36.147448],[-118.228667,36.148232],[-118.230079,36.149173],[-118.232117,36.149173],[-118.232745,36.149957],[-118.233372,36.150114],[-118.234000,36.149800],[-118.235411,36.148702],[-118.235882,36.148075],[-118.236195,36.147918],[-118.236352,36.148075],[-118.236195,36.148859],[-118.236195,36.149486],[-118.236979,36.150114],[-118.238077,36.150271],[-118.239175,36.150741],[-118.240116,36.150741],[-118.241528,36.151682],[-118.241842,36.152153],[-118.241998,36.152780],[-118.241057,36.153721],[-118.240744,36.154819],[-118.240587,36.155290],[-118.240900,36.156074],[-118.241528,36.156074],[-118.242312,36.154976],[-118.243096,36.154662],[-118.244508,36.154349],[-118.244978,36.154349],[-118.245449,36.154819],[-118.245449,36.156701],[-118.245763,36.157956],[-118.245919,36.158270],[-118.247801,36.158270],[-118.249056,36.158897],[-118.249527,36.158897],[-118.249997,36.158426],[-118.250311,36.156074],[-118.249684,36.154662],[-118.250154,36.152623],[-118.249370,36.151525],[-118.249370,36.150584],[-118.250468,36.149330],[-118.251095,36.148075],[-118.251409,36.146506],[-118.252664,36.145409],[-118.252977,36.145409],[-118.254702,36.145879],[-118.255957,36.144938],[-118.255957,36.144624],[-118.255487,36.143370],[-118.255330,36.142429],[-118.255487,36.141488],[-118.255957,36.139919],[-118.256114,36.138664],[-118.256428,36.137723],[-118.256898,36.137567],[-118.257996,36.138194],[-118.258467,36.138194],[-118.258937,36.138194],[-118.259408,36.137567],[-118.258937,36.136312],[-118.258310,36.135371],[-118.257212,36.134900],[-118.256898,36.134587],[-118.265368,36.134273],[-118.265838,36.134430],[-118.266309,36.134743],[-118.266465,36.135528],[-118.266152,36.136626],[-118.266936,36.137723],[-118.267407,36.138821],[-118.267877,36.139135],[-118.268818,36.139135],[-118.269132,36.139606],[-118.270073,36.142115],[-118.270073,36.144311],[-118.270230,36.146036],[-118.270386,36.146663],[-118.271641,36.148075],[-118.273210,36.148859],[-118.273523,36.149173],[-118.273523,36.149800],[-118.273523,36.165171],[-118.275249,36.164073],[-118.279170,36.163132],[-118.279483,36.163132],[-118.280267,36.163602],[-118.282150,36.164386],[-118.285443,36.163759],[-118.285914,36.163132],[-118.286071,36.162661],[-118.284816,36.161406],[-118.284659,36.160308],[-118.284973,36.159367],[-118.284973,36.158897],[-118.285600,36.158897],[-118.286855,36.159367],[-118.287953,36.159524],[-118.288109,36.159838],[-118.287953,36.160779],[-118.288423,36.161563],[-118.289992,36.162191],[-118.290776,36.162504],[-118.292030,36.163445],[-118.292187,36.164229],[-118.292030,36.165484],[-118.292187,36.166268],[-118.292815,36.167366],[-118.294069,36.167994],[-118.294540,36.168621],[-118.294540,36.169092],[-118.294383,36.170189],[-118.294697,36.171287],[-118.295638,36.170660],[-118.296265,36.170660],[-118.297049,36.170817],[-118.297520,36.171287],[-118.298304,36.171601],[-118.299245,36.170817],[-118.300657,36.170974],[-118.301284,36.170817],[-118.301911,36.169562],[-118.301284,36.168464],[-118.301127,36.165641],[-118.301911,36.164386],[-118.302852,36.163288],[-118.302852,36.162818],[-118.302539,36.161720],[-118.303166,36.160465],[-118.303009,36.160152],[-118.302068,36.159524],[-118.302068,36.159211],[-118.302852,36.158113],[-118.302852,36.156858],[-118.302225,36.155603],[-118.302852,36.154662],[-118.302539,36.152937],[-118.302696,36.151839],[-118.301911,36.150898],[-118.300970,36.149957],[-118.300970,36.149330],[-118.301284,36.148702],[-118.301127,36.147918],[-118.301598,36.146977],[-118.301598,36.144938],[-118.301911,36.144468],[-118.302225,36.143370],[-118.302696,36.143056],[-118.302696,36.142899],[-118.303323,36.142742],[-118.303480,36.142429],[-118.303480,36.142115],[-118.303166,36.141644],[-118.302068,36.141331],[-118.300657,36.140390],[-118.298931,36.139919],[-118.298304,36.139292],[-118.298618,36.137880],[-118.298147,36.137253],[-118.297049,36.136782],[-118.295638,36.136626],[-118.294383,36.136155],[-118.294697,36.135214],[-118.294540,36.134587],[-118.295010,36.133175],[-118.295481,36.133018],[-118.295795,36.132548],[-118.295638,36.131293],[-118.296108,36.130038],[-118.296265,36.127058],[-118.296579,36.126588],[-118.296893,36.125960],[-118.297363,36.125647],[-118.298147,36.123921],[-118.298618,36.123765],[-118.300029,36.123921],[-118.300814,36.124235],[-118.301598,36.124078],[-118.302696,36.124235],[-118.303323,36.124549],[-118.303637,36.125490],[-118.303950,36.125647],[-118.304264,36.125647],[-118.304421,36.125019],[-118.304578,36.124863],[-118.307087,36.124863],[-118.308028,36.124392],[-118.308499,36.124392],[-118.308812,36.124706],[-118.308499,36.125333],[-118.308656,36.125960],[-118.309283,36.126117],[-118.309753,36.126901],[-118.310224,36.126901],[-118.311008,36.126588],[-118.311792,36.127058],[-118.312106,36.126901],[-118.312420,36.125960],[-118.313674,36.125490],[-118.314145,36.125019],[-118.314615,36.125019],[-118.315086,36.125176],[-118.315400,36.126117],[-118.316654,36.125019],[-118.318380,36.125019],[-118.319634,36.124549],[-118.320262,36.124392],[-118.320419,36.124706],[-118.320262,36.127529],[-118.320575,36.128156],[-118.320575,36.128627],[-118.320732,36.129097],[-118.320889,36.131450],[-118.321673,36.132234],[-118.322614,36.131607],[-118.322928,36.130822],[-118.324026,36.129725],[-118.324653,36.129725],[-118.325751,36.130195],[-118.327320,36.129725],[-118.327790,36.129568],[-118.327633,36.128940],[-118.327790,36.128627],[-118.329045,36.128470],[-118.331241,36.127529],[-118.333750,36.126901],[-118.334064,36.127058],[-118.333436,36.127529],[-118.333436,36.127999],[-118.335005,36.128156],[-118.335318,36.128940],[-118.335946,36.129254],[-118.336416,36.129097],[-118.337044,36.128470],[-118.338142,36.128627],[-118.339239,36.128313],[-118.339239,36.128156],[-118.338612,36.128156],[-118.337985,36.127215],[-118.341906,36.126588],[-118.344886,36.125176],[-118.345827,36.124863],[-118.350375,36.124549],[-118.352728,36.124863],[-118.353669,36.125019],[-118.356649,36.125019],[-118.358217,36.125804],[-118.358531,36.126274],[-118.360413,36.127842],[-118.360570,36.128470],[-118.361511,36.129725],[-118.361197,36.130666],[-118.361981,36.131607],[-118.361981,36.132234],[-118.362609,36.132705],[-118.363079,36.133646],[-118.363393,36.133959],[-118.363863,36.135998],[-118.364491,36.136782],[-118.365275,36.138037],[-118.365275,36.138664],[-118.365118,36.139449],[-118.365118,36.140233],[-118.365432,36.140703],[-118.366373,36.141488],[-118.366687,36.142115],[-118.366687,36.143997],[-118.365118,36.146036],[-118.365118,36.147604],[-118.365589,36.148075],[-118.365745,36.149016],[-118.365745,36.149800],[-118.366530,36.150271],[-118.367471,36.150271],[-118.368725,36.151996],[-118.369980,36.152780],[-118.371235,36.154035],[-118.372646,36.154662],[-118.373117,36.155133],[-118.374215,36.155603],[-118.375470,36.156387],[-118.376724,36.156701],[-118.377822,36.157172],[-118.379077,36.157015],[-118.380488,36.157956],[-118.381116,36.158583],[-118.381430,36.158740],[-118.381900,36.158740],[-118.382527,36.158426],[-118.383782,36.157642],[-118.383939,36.157172],[-118.385351,36.157172],[-118.387076,36.155446],[-118.388487,36.154976],[-118.389428,36.154505],[-118.394918,36.154662],[-118.395231,36.154662],[-118.395702,36.154192],[-118.397427,36.153878],[-118.398211,36.153564],[-118.398839,36.152937],[-118.399780,36.150741],[-118.399780,36.150114],[-118.398682,36.148545],[-118.398525,36.147291],[-118.399152,36.146663],[-118.399780,36.145722],[-118.400407,36.143683],[-118.401035,36.143056],[-118.401819,36.142742],[-118.402917,36.142585],[-118.406524,36.142899],[-118.408092,36.142429],[-118.409190,36.141644],[-118.410602,36.141174],[-118.411072,36.141174],[-118.412013,36.141801],[-118.412798,36.141801],[-118.413895,36.141644],[-118.415934,36.141017],[-118.417346,36.141017],[-118.417973,36.141174],[-118.419228,36.141801],[-118.420169,36.141488],[-118.420483,36.141174],[-118.421267,36.141017],[-118.422051,36.140860],[-118.422835,36.140860],[-118.423306,36.140703],[-118.424404,36.139762],[-118.424717,36.139135],[-118.424874,36.138821],[-118.424247,36.137880],[-118.424090,36.136782],[-118.424247,36.135841],[-118.425031,36.134900],[-118.425659,36.134743],[-118.427384,36.134900],[-118.429580,36.134587],[-118.430677,36.134273],[-118.431618,36.134273],[-118.432873,36.133802],[-118.433814,36.133646],[-118.434442,36.133802],[-118.434912,36.133646],[-118.435696,36.133802],[-118.437108,36.133489]]]]}}
,{"id":93305,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-119.002988,35.372342],[-119.002831,35.374224],[-119.002988,35.377361],[-119.003302,35.378302],[-119.003772,35.379086],[-119.002518,35.380027],[-119.002518,35.380498],[-119.003772,35.380968],[-119.003929,35.381753],[-119.003929,35.382850],[-119.006595,35.382850],[-119.007380,35.382694],[-119.008007,35.382850],[-119.005968,35.383321],[-119.005811,35.383635],[-119.002831,35.383635],[-119.002831,35.383948],[-119.003929,35.383948],[-119.003929,35.385046],[-119.004086,35.385203],[-119.004243,35.385830],[-119.005027,35.385987],[-119.005184,35.387713],[-119.004556,35.390536],[-119.004556,35.390849],[-119.005184,35.393986],[-119.006752,35.397280],[-119.005654,35.397280],[-119.004243,35.397437],[-119.002831,35.397437],[-119.002831,35.398535],[-119.003145,35.399162],[-119.004870,35.401044],[-119.005341,35.401828],[-119.003772,35.402926],[-119.001577,35.404024],[-118.999067,35.405592],[-118.997342,35.407318],[-118.995930,35.409357],[-118.994519,35.410454],[-118.993264,35.410925],[-118.990755,35.410925],[-118.987775,35.411082],[-118.986206,35.410768],[-118.984010,35.411552],[-118.979148,35.411395],[-118.978678,35.411395],[-118.978050,35.411709],[-118.976012,35.413905],[-118.975698,35.414375],[-118.975227,35.417826],[-118.975698,35.418140],[-118.975698,35.418296],[-118.976482,35.418453],[-118.976796,35.418924],[-118.976325,35.419865],[-118.976482,35.420179],[-118.976012,35.420492],[-118.975698,35.421590],[-118.975227,35.422061],[-118.975227,35.423002],[-118.974757,35.423629],[-118.973188,35.424256],[-118.972875,35.424884],[-118.972247,35.425354],[-118.971463,35.425668],[-118.975070,35.422061],[-118.974914,35.410925],[-118.976482,35.410454],[-118.976482,35.410141],[-118.972561,35.411239],[-118.969111,35.412650],[-118.968483,35.412807],[-118.967542,35.412807],[-118.967542,35.403553],[-118.967856,35.403553],[-118.968170,35.401515],[-118.967542,35.401515],[-118.967542,35.400103],[-118.968013,35.400103],[-118.968013,35.397593],[-118.967542,35.397593],[-118.967542,35.371401],[-118.967542,35.368578],[-118.984167,35.368421],[-118.984010,35.369049],[-118.985422,35.369362],[-118.985892,35.368421],[-118.994205,35.368421],[-118.994048,35.369205],[-118.995460,35.369519],[-118.995930,35.368421],[-118.997499,35.368421],[-118.997499,35.368892],[-118.998910,35.369205],[-118.999224,35.368421],[-119.002988,35.368421],[-119.002988,35.372342]]]}}
,{"id":93308,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-118.981971,35.612935],[-118.983226,35.612465],[-118.984010,35.611524],[-118.984951,35.610896],[-118.986206,35.608858],[-118.986677,35.609328],[-118.987147,35.610426],[-118.987461,35.610740],[-118.989813,35.610583],[-118.991696,35.611210],[-118.993735,35.611367],[-118.994048,35.611524],[-118.993578,35.611994],[-118.992637,35.612622],[-118.992009,35.613249],[-118.989970,35.614504],[-118.987304,35.616543],[-118.986049,35.616543],[-118.985736,35.616700],[-118.984951,35.616072],[-118.982913,35.615131],[-118.981501,35.613876],[-118.981658,35.613249],[-118.981971,35.612935]]],[[[-118.960955,35.594899],[-118.960955,35.595369],[-118.961112,35.595526],[-118.961425,35.595526],[-118.962053,35.594899],[-118.962523,35.594899],[-118.963464,35.594899],[-118.963778,35.595212],[-118.962994,35.595369],[-118.962210,35.595840],[-118.961739,35.595840],[-118.961425,35.596153],[-118.960641,35.596467],[-118.960014,35.596938],[-118.959857,35.597251],[-118.959857,35.599133],[-118.959386,35.599918],[-118.958289,35.600231],[-118.957191,35.600388],[-118.956406,35.598036],[-118.954211,35.598036],[-118.952015,35.598506],[-118.950760,35.599447],[-118.949819,35.599761],[-118.948564,35.600702],[-118.949035,35.598192],[-118.951701,35.594742],[-118.954054,35.593330],[-118.957034,35.592076],[-118.958445,35.591135],[-118.959073,35.590507],[-118.959857,35.592546],[-118.960171,35.592703],[-118.960327,35.592546],[-118.960484,35.591919],[-118.960798,35.591762],[-118.961739,35.592076],[-118.962210,35.592076],[-118.962210,35.593017],[-118.962366,35.593330],[-118.962523,35.593330],[-118.962366,35.593644],[-118.960955,35.594899]]],[[[-119.027298,35.711431],[-119.025416,35.710176],[-119.023691,35.708451],[-119.021966,35.707196],[-119.020554,35.705785],[-119.019927,35.705314],[-119.018986,35.704530],[-119.017731,35.703432],[-119.016476,35.702491],[-119.015849,35.701707],[-119.013496,35.699825],[-119.012555,35.699511],[-119.011614,35.698884],[-119.009262,35.697943],[-119.008948,35.697629],[-119.008478,35.696845],[-119.008007,35.695747],[-119.009105,35.695120],[-119.010046,35.693551],[-119.010046,35.692610],[-119.010516,35.691826],[-119.010516,35.690728],[-119.011144,35.689630],[-119.050981,35.689474],[-119.053491,35.704060],[-119.027455,35.704217],[-119.027298,35.704373],[-119.027298,35.705471],[-119.027298,35.711431]]],[[[-118.994362,35.528398],[-118.994048,35.529026],[-118.992793,35.529183],[-118.992166,35.528869],[-118.990127,35.528555],[-118.987304,35.528242],[-118.985422,35.528242],[-118.984481,35.527928],[-118.982913,35.527614],[-118.980874,35.528242],[-118.979305,35.529810],[-118.976953,35.529967],[-118.976639,35.530124],[-118.976168,35.529810],[-118.973816,35.529810],[-118.973032,35.528869],[-118.972561,35.528555],[-118.971934,35.528398],[-118.969738,35.528555],[-118.968326,35.528869],[-118.965503,35.529967],[-118.962837,35.529339],[-118.962210,35.530280],[-118.960955,35.529653],[-118.959230,35.529183],[-118.959073,35.516165],[-118.957975,35.501736],[-118.956250,35.501422],[-118.954681,35.501265],[-118.954524,35.501108],[-118.954211,35.500638],[-118.954681,35.500324],[-118.957191,35.499226],[-118.957191,35.498912],[-118.958289,35.497658],[-118.958445,35.496873],[-118.958289,35.494050],[-118.957975,35.492639],[-118.958916,35.490286],[-118.960014,35.488247],[-118.960327,35.486836],[-118.960327,35.485110],[-118.960171,35.483542],[-118.959386,35.482130],[-118.959073,35.481974],[-118.958759,35.480876],[-118.960014,35.479621],[-118.959700,35.478523],[-118.960641,35.477896],[-118.961112,35.477425],[-118.961112,35.476955],[-118.960955,35.475857],[-118.962210,35.474445],[-118.962523,35.473975],[-118.962523,35.473347],[-118.963151,35.474132],[-118.963621,35.474288],[-118.964405,35.474759],[-118.965033,35.474602],[-118.965346,35.474602],[-118.965817,35.475073],[-118.966601,35.476798],[-118.967228,35.477582],[-118.969267,35.478680],[-118.969738,35.479464],[-118.970993,35.479778],[-118.971306,35.480719],[-118.972561,35.481033],[-118.974443,35.483856],[-118.974443,35.484326],[-118.975227,35.484797],[-118.975855,35.484954],[-118.976796,35.485581],[-118.977109,35.486208],[-118.977580,35.486679],[-118.977737,35.487306],[-118.978207,35.487463],[-118.978207,35.487934],[-118.977423,35.488718],[-118.977266,35.489188],[-118.977580,35.490129],[-118.976796,35.491070],[-118.977266,35.491698],[-118.977580,35.492639],[-118.977894,35.492952],[-118.979305,35.492168],[-118.980874,35.492011],[-118.981187,35.491855],[-118.981501,35.491541],[-118.982128,35.491384],[-118.983069,35.491541],[-118.983697,35.491855],[-118.985579,35.491698],[-118.986049,35.490914],[-118.986520,35.490443],[-118.987147,35.490129],[-118.987147,35.489502],[-118.986677,35.488090],[-118.987618,35.485424],[-118.988402,35.484640],[-118.988872,35.484326],[-118.988872,35.483385],[-118.988872,35.483072],[-118.989970,35.482287],[-118.990755,35.480876],[-118.991539,35.481033],[-118.992009,35.480719],[-118.992950,35.479778],[-118.993735,35.479307],[-118.994205,35.479778],[-118.995460,35.480405],[-118.997028,35.480719],[-118.997499,35.480719],[-118.997656,35.480562],[-118.997185,35.480092],[-118.997342,35.479778],[-118.998126,35.478366],[-118.999851,35.478053],[-118.999851,35.477896],[-119.000949,35.477582],[-119.002518,35.477425],[-119.003302,35.477112],[-119.005654,35.476641],[-119.006282,35.476171],[-119.008478,35.476171],[-119.009732,35.476798],[-119.010516,35.476484],[-119.012085,35.474759],[-119.012555,35.475230],[-119.012555,35.475700],[-119.011928,35.476327],[-119.012085,35.476798],[-119.014751,35.476955],[-119.016006,35.476798],[-119.016320,35.477112],[-119.016476,35.477582],[-119.017574,35.477112],[-119.018515,35.477112],[-119.020554,35.475073],[-119.021652,35.473661],[-119.021652,35.473661],[-119.022593,35.473034],[-119.024005,35.472563],[-119.024632,35.472563],[-119.025103,35.472720],[-119.025573,35.473191],[-119.025730,35.474602],[-119.026514,35.475386],[-119.026514,35.476798],[-119.026828,35.478053],[-119.026671,35.480562],[-119.025416,35.480719],[-119.026671,35.481660],[-119.027455,35.484640],[-119.010203,35.484640],[-119.009419,35.484797],[-119.005184,35.487620],[-119.005341,35.488718],[-119.005654,35.489502],[-119.005811,35.490914],[-119.006752,35.492796],[-119.007850,35.492952],[-119.008321,35.493580],[-119.007850,35.494364],[-119.007850,35.495148],[-119.008321,35.495462],[-119.008164,35.495932],[-119.007850,35.496246],[-119.007223,35.496403],[-119.006282,35.497030],[-119.005968,35.497815],[-119.005811,35.498285],[-119.005498,35.498912],[-119.004870,35.499383],[-119.004556,35.500010],[-119.004556,35.500324],[-119.005811,35.500481],[-119.006125,35.500794],[-119.007066,35.501108],[-119.007223,35.502049],[-119.007536,35.502206],[-119.009419,35.502677],[-119.010360,35.502833],[-119.010673,35.504402],[-119.011144,35.505186],[-119.011144,35.505813],[-119.011457,35.506127],[-119.012712,35.505813],[-119.013496,35.506127],[-119.014437,35.506754],[-119.015222,35.507539],[-119.015692,35.507852],[-119.016633,35.508009],[-119.017731,35.507852],[-119.018202,35.508009],[-119.017261,35.508637],[-119.015849,35.508793],[-119.015692,35.508950],[-119.015065,35.510048],[-119.014437,35.510832],[-119.014281,35.511616],[-119.014124,35.512244],[-119.013810,35.512244],[-119.013653,35.512087],[-119.013026,35.511616],[-119.011928,35.511773],[-119.010987,35.511930],[-119.009889,35.512714],[-119.009732,35.513342],[-119.009105,35.513812],[-119.007066,35.514753],[-119.005968,35.514753],[-119.005654,35.514596],[-119.005654,35.515067],[-119.004870,35.515851],[-119.005027,35.516479],[-119.005498,35.517263],[-119.006282,35.517890],[-119.006595,35.518361],[-119.008791,35.519615],[-119.010203,35.519615],[-119.011144,35.520086],[-119.011301,35.521341],[-119.011144,35.521654],[-119.010046,35.522125],[-119.009419,35.523223],[-119.009732,35.524007],[-119.010046,35.524477],[-119.011301,35.525418],[-119.011771,35.526516],[-119.012399,35.530280],[-118.994519,35.529967],[-118.994676,35.528712],[-118.994362,35.528398]]],[[[-118.927391,35.666418],[-118.926450,35.666575],[-118.925352,35.666418],[-118.924254,35.665791],[-118.923156,35.664850],[-118.922686,35.663438],[-118.923627,35.661242],[-118.923627,35.659988],[-118.923470,35.659674],[-118.922686,35.659203],[-118.922058,35.659831],[-118.920647,35.662026],[-118.918608,35.663438],[-118.916255,35.664222],[-118.915628,35.664693],[-118.915001,35.665477],[-118.915157,35.666575],[-118.915157,35.667202],[-118.914373,35.668927],[-118.913589,35.669868],[-118.912177,35.670966],[-118.910766,35.671751],[-118.910295,35.671907],[-118.907472,35.671280],[-118.904022,35.669868],[-118.902610,35.669868],[-118.901826,35.670496],[-118.901512,35.672535],[-118.901199,35.673005],[-118.899944,35.673319],[-118.899160,35.673946],[-118.898532,35.674731],[-118.896807,35.675358],[-118.894925,35.677397],[-118.894611,35.677397],[-118.894141,35.678652],[-118.893357,35.679593],[-118.892572,35.680063],[-118.891318,35.680220],[-118.888808,35.680063],[-118.888181,35.679593],[-118.887240,35.678495],[-118.887240,35.677710],[-118.887554,35.677083],[-118.887397,35.676299],[-118.886456,35.675515],[-118.885515,35.675201],[-118.883946,35.675201],[-118.882691,35.674260],[-118.882064,35.674417],[-118.880496,35.674260],[-118.877673,35.671594],[-118.875634,35.671751],[-118.875163,35.671594],[-118.874065,35.672378],[-118.873752,35.673005],[-118.873124,35.673633],[-118.870301,35.673946],[-118.868733,35.673319],[-118.867635,35.672064],[-118.866380,35.671437],[-118.865753,35.671280],[-118.864655,35.671594],[-118.863871,35.671280],[-118.863086,35.671280],[-118.861675,35.671437],[-118.860420,35.671280],[-118.859479,35.671751],[-118.858695,35.672692],[-118.858068,35.672848],[-118.856813,35.673789],[-118.855715,35.673476],[-118.854303,35.672692],[-118.852108,35.672221],[-118.851637,35.670966],[-118.849755,35.670025],[-118.849755,35.669084],[-118.849441,35.668614],[-118.848030,35.667045],[-118.847402,35.665947],[-118.845677,35.664536],[-118.845050,35.662340],[-118.843952,35.660929],[-118.843638,35.659831],[-118.843168,35.659203],[-118.816819,35.659360],[-118.816819,35.664379],[-118.812427,35.665634],[-118.810859,35.665634],[-118.809761,35.665320],[-118.809918,35.665634],[-118.809447,35.666261],[-118.799096,35.665947],[-118.799096,35.663281],[-118.799409,35.658890],[-118.798311,35.658733],[-118.787333,35.658576],[-118.766473,35.659046],[-118.765689,35.665947],[-118.765375,35.670182],[-118.763336,35.669868],[-118.762709,35.670025],[-118.762709,35.669712],[-118.762395,35.669398],[-118.761140,35.669241],[-118.760826,35.668614],[-118.760670,35.668143],[-118.761297,35.667359],[-118.761611,35.666261],[-118.762709,35.664693],[-118.762709,35.664379],[-118.762238,35.663438],[-118.762238,35.662811],[-118.762238,35.661870],[-118.762865,35.660772],[-118.763336,35.660301],[-118.766159,35.658890],[-118.768825,35.657949],[-118.769139,35.657635],[-118.769296,35.657164],[-118.770080,35.657321],[-118.771178,35.657321],[-118.772590,35.656851],[-118.773217,35.656380],[-118.773531,35.655596],[-118.773531,35.654812],[-118.772119,35.654812],[-118.771021,35.653871],[-118.769453,35.653243],[-118.769296,35.652773],[-118.768355,35.653087],[-118.763963,35.653714],[-118.759415,35.655282],[-118.755808,35.658105],[-118.754867,35.659203],[-118.752357,35.659674],[-118.750004,35.660929],[-118.749534,35.660929],[-118.748279,35.660458],[-118.747338,35.660772],[-118.746397,35.661870],[-118.745299,35.662654],[-118.744986,35.662967],[-118.745142,35.663124],[-118.745927,35.663752],[-118.746397,35.665006],[-118.746397,35.665634],[-118.745770,35.667673],[-118.744986,35.668457],[-118.743260,35.669555],[-118.740437,35.672535],[-118.739810,35.673005],[-118.736987,35.674260],[-118.735732,35.673946],[-118.734007,35.673946],[-118.731027,35.673633],[-118.729929,35.673319],[-118.729458,35.673319],[-118.727419,35.674103],[-118.726322,35.673946],[-118.725694,35.673476],[-118.722087,35.673633],[-118.722244,35.673789],[-118.721930,35.674887],[-118.721930,35.675358],[-118.722244,35.675515],[-118.722087,35.675672],[-118.721460,35.676613],[-118.721146,35.677083],[-118.720832,35.677397],[-118.720205,35.677710],[-118.719734,35.677554],[-118.719264,35.677554],[-118.718950,35.677867],[-118.718793,35.678965],[-118.719107,35.679436],[-118.718793,35.680063],[-118.718009,35.680377],[-118.717068,35.680377],[-118.716284,35.680220],[-118.715813,35.680377],[-118.715656,35.680690],[-118.715970,35.681475],[-118.715813,35.681631],[-118.715343,35.682259],[-118.714245,35.682886],[-118.713618,35.682886],[-118.711422,35.682573],[-118.710324,35.682729],[-118.710010,35.683043],[-118.709853,35.683984],[-118.709226,35.683984],[-118.707971,35.683670],[-118.707814,35.683043],[-118.707814,35.682259],[-118.707658,35.682102],[-118.707187,35.682102],[-118.704991,35.682259],[-118.704678,35.682259],[-118.704364,35.682729],[-118.703737,35.683043],[-118.703423,35.683514],[-118.702952,35.683827],[-118.701854,35.683984],[-118.700600,35.684925],[-118.699972,35.684611],[-118.699345,35.684611],[-118.698561,35.684925],[-118.698090,35.685396],[-118.697463,35.685709],[-118.696365,35.686494],[-118.694797,35.686964],[-118.693542,35.686807],[-118.693071,35.687435],[-118.691974,35.687435],[-118.691346,35.687278],[-118.690876,35.687591],[-118.690091,35.687435],[-118.689464,35.687435],[-118.688837,35.687748],[-118.687739,35.688846],[-118.686798,35.689317],[-118.686484,35.689160],[-118.686641,35.688532],[-118.686955,35.688376],[-118.687425,35.688376],[-118.687739,35.688062],[-118.688209,35.688062],[-118.688837,35.687435],[-118.690091,35.686650],[-118.691503,35.686337],[-118.691660,35.686023],[-118.691189,35.685553],[-118.689307,35.684611],[-118.689464,35.684141],[-118.689307,35.683984],[-118.688209,35.683827],[-118.686641,35.683984],[-118.685857,35.682886],[-118.685229,35.682416],[-118.683347,35.681318],[-118.681622,35.681004],[-118.681152,35.681161],[-118.679897,35.682102],[-118.679583,35.682102],[-118.679113,35.681631],[-118.678642,35.681631],[-118.677231,35.682416],[-118.676289,35.682573],[-118.675192,35.683043],[-118.674878,35.683514],[-118.673780,35.683357],[-118.673310,35.683200],[-118.672682,35.682729],[-118.672682,35.682259],[-118.672525,35.682259],[-118.670957,35.682729],[-118.672839,35.682102],[-118.673466,35.681004],[-118.673466,35.680534],[-118.672996,35.678652],[-118.672996,35.677083],[-118.673623,35.674574],[-118.673780,35.674417],[-118.674407,35.674417],[-118.675192,35.674731],[-118.675662,35.674731],[-118.675662,35.674417],[-118.675035,35.673789],[-118.675035,35.672692],[-118.674564,35.672378],[-118.674564,35.671907],[-118.674721,35.670966],[-118.675035,35.670810],[-118.676133,35.670496],[-118.676289,35.668300],[-118.676289,35.667986],[-118.675662,35.667830],[-118.675505,35.667202],[-118.674251,35.666418],[-118.672839,35.665947],[-118.672525,35.665320],[-118.671741,35.665006],[-118.671427,35.664536],[-118.671898,35.664222],[-118.671898,35.663752],[-118.671427,35.662497],[-118.671427,35.661870],[-118.672368,35.660772],[-118.672839,35.659517],[-118.673310,35.659046],[-118.673780,35.658890],[-118.676603,35.658890],[-118.678956,35.657949],[-118.680211,35.657321],[-118.681936,35.657321],[-118.683504,35.656851],[-118.684288,35.655596],[-118.685700,35.655753],[-118.686170,35.655753],[-118.686641,35.654969],[-118.688366,35.654028],[-118.689307,35.653400],[-118.690091,35.652773],[-118.691817,35.652459],[-118.693385,35.651832],[-118.694012,35.650891],[-118.694640,35.650891],[-118.695581,35.651048],[-118.694954,35.649166],[-118.695581,35.648695],[-118.695581,35.648538],[-118.694954,35.647754],[-118.694954,35.647127],[-118.695110,35.646813],[-118.695581,35.646342],[-118.695581,35.646186],[-118.695267,35.645872],[-118.695267,35.645558],[-118.695738,35.645245],[-118.696522,35.645088],[-118.697463,35.644617],[-118.698561,35.644460],[-118.699031,35.644147],[-118.699031,35.643833],[-118.698404,35.642892],[-118.698090,35.642578],[-118.696992,35.642421],[-118.697463,35.641480],[-118.697620,35.641167],[-118.696992,35.640539],[-118.696836,35.640382],[-118.697149,35.640069],[-118.698875,35.639441],[-118.700600,35.638500],[-118.702168,35.636461],[-118.703580,35.635207],[-118.704834,35.633481],[-118.705305,35.633168],[-118.705148,35.632854],[-118.704678,35.632070],[-118.703423,35.631443],[-118.702482,35.631286],[-118.702639,35.630345],[-118.702482,35.629717],[-118.702796,35.629247],[-118.702796,35.628619],[-118.702011,35.628306],[-118.700757,35.628306],[-118.700286,35.627992],[-118.699345,35.627835],[-118.698247,35.627992],[-118.698090,35.627678],[-118.698875,35.627522],[-118.698875,35.627208],[-118.698561,35.626894],[-118.697933,35.626737],[-118.697620,35.625953],[-118.697306,35.625796],[-118.696836,35.625953],[-118.696836,35.625639],[-118.697777,35.624855],[-118.697777,35.624542],[-118.696522,35.624542],[-118.694483,35.622973],[-118.694169,35.622659],[-118.694169,35.622189],[-118.694483,35.621875],[-118.691660,35.621248],[-118.688837,35.619052],[-118.688209,35.618895],[-118.688209,35.619209],[-118.688053,35.619366],[-118.687425,35.618895],[-118.686798,35.618895],[-118.686327,35.618425],[-118.685229,35.617797],[-118.684759,35.617954],[-118.684288,35.617170],[-118.683818,35.617013],[-118.683661,35.616543],[-118.683190,35.616229],[-118.682249,35.615131],[-118.679897,35.613876],[-118.678799,35.614033],[-118.676133,35.613720],[-118.675505,35.613406],[-118.674564,35.613406],[-118.673466,35.613092],[-118.672682,35.613249],[-118.669859,35.612935],[-118.668291,35.613092],[-118.667036,35.612779],[-118.665781,35.612935],[-118.665154,35.612465],[-118.664683,35.611524],[-118.662958,35.611681],[-118.661860,35.611367],[-118.661860,35.611053],[-118.661860,35.610426],[-118.661860,35.610269],[-118.661233,35.610740],[-118.660762,35.610426],[-118.660292,35.610740],[-118.659351,35.609955],[-118.658567,35.610269],[-118.658096,35.609799],[-118.657625,35.609955],[-118.656684,35.609799],[-118.656057,35.609328],[-118.655116,35.609485],[-118.653548,35.609014],[-118.653077,35.609171],[-118.652607,35.609014],[-118.651352,35.609014],[-118.650881,35.608544],[-118.649627,35.609171],[-118.648842,35.608858],[-118.648529,35.608230],[-118.647745,35.607916],[-118.647431,35.607446],[-118.646490,35.607446],[-118.645706,35.606819],[-118.645078,35.606819],[-118.644294,35.606191],[-118.643667,35.606348],[-118.642882,35.606034],[-118.642255,35.606505],[-118.641471,35.606348],[-118.641157,35.606662],[-118.640844,35.606819],[-118.640059,35.606505],[-118.639275,35.606662],[-118.637864,35.606505],[-118.639275,35.605564],[-118.639432,35.605093],[-118.639746,35.604780],[-118.641157,35.604623],[-118.641785,35.604309],[-118.643667,35.603839],[-118.646176,35.603995],[-118.646803,35.603682],[-118.647745,35.603525],[-118.648215,35.603054],[-118.649313,35.602898],[-118.649470,35.602741],[-118.649313,35.602584],[-118.648686,35.602584],[-118.647901,35.602270],[-118.647745,35.601957],[-118.648058,35.601486],[-118.649313,35.600702],[-118.649313,35.600231],[-118.649940,35.599761],[-118.649940,35.599604],[-118.649627,35.599290],[-118.648999,35.599447],[-118.648529,35.598977],[-118.647901,35.598820],[-118.648686,35.598349],[-118.648999,35.597722],[-118.650881,35.597408],[-118.650411,35.596624],[-118.650411,35.596467],[-118.652920,35.595997],[-118.653704,35.596310],[-118.654018,35.596310],[-118.654018,35.595840],[-118.654332,35.595683],[-118.655273,35.595369],[-118.656057,35.595526],[-118.657939,35.594428],[-118.658096,35.593958],[-118.658723,35.593801],[-118.658880,35.592860],[-118.659194,35.592703],[-118.662488,35.592546],[-118.663272,35.592232],[-118.664056,35.592546],[-118.664840,35.592389],[-118.665311,35.591448],[-118.666565,35.590350],[-118.667977,35.589880],[-118.668918,35.589252],[-118.670016,35.588782],[-118.672055,35.589096],[-118.673153,35.588311],[-118.673153,35.587998],[-118.672996,35.587841],[-118.672525,35.587841],[-118.672055,35.587998],[-118.671741,35.587998],[-118.671741,35.587684],[-118.672525,35.586273],[-118.672525,35.584704],[-118.672525,35.584547],[-118.672055,35.584704],[-118.671741,35.584704],[-118.672212,35.583763],[-118.672212,35.583136],[-118.670957,35.582822],[-118.671114,35.582195],[-118.670957,35.581254],[-118.670957,35.580940],[-118.671271,35.580469],[-118.671584,35.580626],[-118.671584,35.581097],[-118.671741,35.581254],[-118.673310,35.580783],[-118.672996,35.580156],[-118.672996,35.579842],[-118.672525,35.579215],[-118.672682,35.578587],[-118.672839,35.577489],[-118.673310,35.577333],[-118.673623,35.577176],[-118.673623,35.577019],[-118.673310,35.576705],[-118.673153,35.576548],[-118.674407,35.575607],[-118.674407,35.575294],[-118.674878,35.574980],[-118.675192,35.574666],[-118.676133,35.574823],[-118.676446,35.574666],[-118.676133,35.573882],[-118.676760,35.573725],[-118.676446,35.572941],[-118.676446,35.572627],[-118.676603,35.572157],[-118.676289,35.571843],[-118.675976,35.570902],[-118.675819,35.570588],[-118.675348,35.570432],[-118.675348,35.570118],[-118.675819,35.569804],[-118.676133,35.569020],[-118.676917,35.569491],[-118.677544,35.569177],[-118.678015,35.568550],[-118.677858,35.568079],[-118.678642,35.567765],[-118.678956,35.567295],[-118.679113,35.566824],[-118.680054,35.566981],[-118.681465,35.566667],[-118.681936,35.566040],[-118.681622,35.565099],[-118.683034,35.564158],[-118.685229,35.563217],[-118.685857,35.562746],[-118.686014,35.561962],[-118.688209,35.561021],[-118.689150,35.560080],[-118.689621,35.559139],[-118.690248,35.557414],[-118.690248,35.556630],[-118.690405,35.556473],[-118.691189,35.556473],[-118.691189,35.555845],[-118.691660,35.555218],[-118.691346,35.554591],[-118.691817,35.554591],[-118.692444,35.555061],[-118.693071,35.554904],[-118.693071,35.554434],[-118.693385,35.554120],[-118.693228,35.553650],[-118.693542,35.553493],[-118.693542,35.553336],[-118.693071,35.553493],[-118.692915,35.553963],[-118.692758,35.554120],[-118.691660,35.553022],[-118.690876,35.553022],[-118.690719,35.552866],[-118.690405,35.550983],[-118.691032,35.549729],[-118.690562,35.548945],[-118.691189,35.547690],[-118.691346,35.547219],[-118.692130,35.546121],[-118.692601,35.545965],[-118.693699,35.546278],[-118.694012,35.546121],[-118.694012,35.545180],[-118.694797,35.544553],[-118.694797,35.544239],[-118.694483,35.543769],[-118.694640,35.543455],[-118.695110,35.543455],[-118.696208,35.544082],[-118.696836,35.543769],[-118.697777,35.543769],[-118.697933,35.543298],[-118.696992,35.542671],[-118.696992,35.542200],[-118.698090,35.541573],[-118.698875,35.540789],[-118.699816,35.541102],[-118.700129,35.541102],[-118.700913,35.539691],[-118.702011,35.539691],[-118.702325,35.539220],[-118.702796,35.538750],[-118.704050,35.538907],[-118.704834,35.538123],[-118.705148,35.538123],[-118.705462,35.538593],[-118.705932,35.538593],[-118.707030,35.538123],[-118.707971,35.538123],[-118.708599,35.537809],[-118.709226,35.537809],[-118.710010,35.537181],[-118.710794,35.537181],[-118.711265,35.536554],[-118.712676,35.536868],[-118.713774,35.536084],[-118.713931,35.535770],[-118.713461,35.534515],[-118.714559,35.532476],[-118.715186,35.530280],[-118.714715,35.529810],[-118.715500,35.528869],[-118.715656,35.528242],[-118.716127,35.526987],[-118.715970,35.526203],[-118.716127,35.525575],[-118.715970,35.524948],[-118.716284,35.523850],[-118.716441,35.522752],[-118.717225,35.520870],[-118.717852,35.520086],[-118.718636,35.519772],[-118.720675,35.519615],[-118.721146,35.519459],[-118.721616,35.519615],[-118.722244,35.518988],[-118.723498,35.519459],[-118.724596,35.519459],[-118.725381,35.519145],[-118.726008,35.519145],[-118.726478,35.518674],[-118.727419,35.518674],[-118.728361,35.518361],[-118.728988,35.518361],[-118.730713,35.517576],[-118.731497,35.517733],[-118.732438,35.517733],[-118.733693,35.516792],[-118.734164,35.516792],[-118.734791,35.516635],[-118.736046,35.516635],[-118.737928,35.516008],[-118.738085,35.515694],[-118.737614,35.515224],[-118.737928,35.515067],[-118.739026,35.515224],[-118.740594,35.516322],[-118.741221,35.516479],[-118.741849,35.516949],[-118.743417,35.517263],[-118.743731,35.516479],[-118.743417,35.515851],[-118.744045,35.514910],[-118.744358,35.514596],[-118.745927,35.514753],[-118.746083,35.514596],[-118.746240,35.514126],[-118.746240,35.513655],[-118.746554,35.513342],[-118.747025,35.511773],[-118.747181,35.510205],[-118.748279,35.509891],[-118.749063,35.509107],[-118.749848,35.508950],[-118.750318,35.508323],[-118.751102,35.508323],[-118.750789,35.507695],[-118.750946,35.507382],[-118.751887,35.506754],[-118.752200,35.505970],[-118.752514,35.505813],[-118.752984,35.505657],[-118.753141,35.506127],[-118.753298,35.506127],[-118.754082,35.504716],[-118.754867,35.504559],[-118.755337,35.504245],[-118.756121,35.504088],[-118.756749,35.504402],[-118.757062,35.504716],[-118.757690,35.504716],[-118.758003,35.505186],[-118.758474,35.504716],[-118.758944,35.504716],[-118.759415,35.504872],[-118.759572,35.505343],[-118.761611,35.506127],[-118.763493,35.506441],[-118.764434,35.506441],[-118.765375,35.506598],[-118.767257,35.506754],[-118.770080,35.506127],[-118.770551,35.505657],[-118.771335,35.505813],[-118.772746,35.505500],[-118.773687,35.504716],[-118.775883,35.505029],[-118.777138,35.504088],[-118.778706,35.503147],[-118.779020,35.502833],[-118.779334,35.501892],[-118.782157,35.501108],[-118.784823,35.500481],[-118.786078,35.500010],[-118.787960,35.498128],[-118.788430,35.497187],[-118.788901,35.496873],[-118.789999,35.496246],[-118.790783,35.495462],[-118.791724,35.495148],[-118.794077,35.494678],[-118.794704,35.494050],[-118.794861,35.493580],[-118.796586,35.491227],[-118.796743,35.489816],[-118.797841,35.488875],[-118.799723,35.488090],[-118.800821,35.488404],[-118.803330,35.488090],[-118.804585,35.488718],[-118.805055,35.488875],[-118.805526,35.488718],[-118.806310,35.488090],[-118.806781,35.487934],[-118.810859,35.488718],[-118.812584,35.488404],[-118.813368,35.488090],[-118.814623,35.486993],[-118.815250,35.487149],[-118.814936,35.486679],[-118.814936,35.486365],[-118.815407,35.485267],[-118.815877,35.484797],[-118.820583,35.482601],[-118.822622,35.481974],[-118.824504,35.480719],[-118.824974,35.480092],[-118.825915,35.477425],[-118.825445,35.476484],[-118.825288,35.475700],[-118.827013,35.474288],[-118.828425,35.472720],[-118.828895,35.471622],[-118.829052,35.470838],[-118.829052,35.468956],[-118.828738,35.467701],[-118.828425,35.467231],[-118.827013,35.466290],[-118.826229,35.465505],[-118.825915,35.464721],[-118.825602,35.463310],[-118.825915,35.462212],[-118.827327,35.459859],[-118.827484,35.459232],[-118.827484,35.456252],[-118.827797,35.455311],[-118.827954,35.454056],[-118.827640,35.451860],[-118.828425,35.448253],[-118.828268,35.446371],[-118.828582,35.445273],[-118.828582,35.444802],[-118.828111,35.444018],[-118.826856,35.442607],[-118.826386,35.441352],[-118.824974,35.440254],[-118.824817,35.439940],[-118.825758,35.438843],[-118.826856,35.437901],[-118.828111,35.436333],[-118.830307,35.434765],[-118.830307,35.429118],[-118.828425,35.428491],[-118.827797,35.428021],[-118.829366,35.425825],[-118.830620,35.426452],[-118.831562,35.426766],[-118.833600,35.426138],[-118.836580,35.426295],[-118.836580,35.425982],[-118.837208,35.426609],[-118.837835,35.426452],[-118.840188,35.426609],[-118.843952,35.426609],[-118.848030,35.427236],[-118.849755,35.428177],[-118.850226,35.428491],[-118.850696,35.429432],[-118.853049,35.431628],[-118.853676,35.433039],[-118.853990,35.433980],[-118.853990,35.434765],[-118.853205,35.436960],[-118.852578,35.438215],[-118.851794,35.438843],[-118.851010,35.440411],[-118.852108,35.443391],[-118.853205,35.444018],[-118.854617,35.444018],[-118.856499,35.444018],[-118.860263,35.443391],[-118.861204,35.443548],[-118.864027,35.443391],[-118.865910,35.442920],[-118.867635,35.442293],[-118.869203,35.441038],[-118.871242,35.439940],[-118.872654,35.439627],[-118.872967,35.439313],[-118.872967,35.438686],[-118.873124,35.438686],[-118.875163,35.437745],[-118.875947,35.437431],[-118.875947,35.437588],[-118.877516,35.436804],[-118.878300,35.436176],[-118.878770,35.435392],[-118.880182,35.434765],[-118.882221,35.434294],[-118.883162,35.434451],[-118.884103,35.434451],[-118.886926,35.435392],[-118.890690,35.435863],[-118.891945,35.436490],[-118.894455,35.437117],[-118.895082,35.437117],[-118.896493,35.437588],[-118.897121,35.438058],[-118.899003,35.439784],[-118.900414,35.440411],[-118.900728,35.440881],[-118.901983,35.441822],[-118.902767,35.442920],[-118.903238,35.442764],[-118.904335,35.444646],[-118.904492,35.444802],[-118.906688,35.445116],[-118.913746,35.446371],[-118.916726,35.445900],[-118.918451,35.445744],[-118.920961,35.445273],[-118.923784,35.445273],[-118.927391,35.446371],[-118.929744,35.447626],[-118.931626,35.447939],[-118.931469,35.448253],[-118.932410,35.448253],[-118.934919,35.447939],[-118.936331,35.447155],[-118.936801,35.446998],[-118.936958,35.446685],[-118.936801,35.445900],[-118.935547,35.443234],[-118.932253,35.438529],[-118.931783,35.437745],[-118.931626,35.436804],[-118.931626,35.435863],[-118.932096,35.433039],[-118.932724,35.430687],[-118.933037,35.429746],[-118.933037,35.430059],[-118.933978,35.428334],[-118.934449,35.427864],[-118.935547,35.427079],[-118.936331,35.426766],[-118.939468,35.426138],[-118.944330,35.424256],[-118.952329,35.419865],[-118.956093,35.418296],[-118.957818,35.417355],[-118.960014,35.415787],[-118.963464,35.414532],[-118.965503,35.414375],[-118.966601,35.414062],[-118.967542,35.413434],[-118.967542,35.412807],[-118.968483,35.412807],[-118.969111,35.412650],[-118.972561,35.411239],[-118.976482,35.410141],[-118.976482,35.410454],[-118.974914,35.410925],[-118.975070,35.422061],[-118.971463,35.425668],[-118.972247,35.425354],[-118.972875,35.424884],[-118.973188,35.424256],[-118.974757,35.423629],[-118.975227,35.423002],[-118.975227,35.422061],[-118.975698,35.421590],[-118.976012,35.420492],[-118.976482,35.420179],[-118.976325,35.419865],[-118.976796,35.418924],[-118.976482,35.418453],[-118.975698,35.418296],[-118.975698,35.418140],[-118.975227,35.417826],[-118.975698,35.414375],[-118.976012,35.413905],[-118.978050,35.411709],[-118.978678,35.411395],[-118.979148,35.411395],[-118.984010,35.411552],[-118.986206,35.410768],[-118.987775,35.411082],[-118.990755,35.410925],[-118.993264,35.410925],[-118.994519,35.410454],[-118.995930,35.409357],[-118.997342,35.407318],[-118.999067,35.405592],[-119.001577,35.404024],[-119.003772,35.402926],[-119.005341,35.401828],[-119.006595,35.404024],[-119.009732,35.407474],[-119.017261,35.404651],[-119.018672,35.403710],[-119.019770,35.402456],[-119.026828,35.399789],[-119.026357,35.399632],[-119.026357,35.399319],[-119.026985,35.399005],[-119.029180,35.397123],[-119.030749,35.395398],[-119.032160,35.392731],[-119.033101,35.390222],[-119.037650,35.384419],[-119.044551,35.378929],[-119.049570,35.375636],[-119.051295,35.375165],[-119.052079,35.374381],[-119.054275,35.373283],[-119.056000,35.373126],[-119.056941,35.372656],[-119.061646,35.369990],[-119.063528,35.368421],[-119.065254,35.367480],[-119.068704,35.367166],[-119.072939,35.364657],[-119.078271,35.363402],[-119.087525,35.364030],[-119.090035,35.363873],[-119.090976,35.363873],[-119.090976,35.363559],[-119.091446,35.363873],[-119.091760,35.363873],[-119.092230,35.368264],[-119.092230,35.371401],[-119.092544,35.372342],[-119.093485,35.374538],[-119.093642,35.375479],[-119.093642,35.376577],[-119.094112,35.376734],[-119.093171,35.379243],[-119.093014,35.379243],[-119.092701,35.379086],[-119.092544,35.379400],[-119.092230,35.380812],[-119.092230,35.386144],[-119.092387,35.387869],[-119.092230,35.389751],[-119.092230,35.434294],[-119.098818,35.434294],[-119.098818,35.437901],[-119.092230,35.437588],[-119.092230,35.438686],[-119.093642,35.439784],[-119.095210,35.441352],[-119.087682,35.441352],[-119.145556,35.484954],[-119.171905,35.504872],[-119.172533,35.504872],[-119.172533,35.505186],[-119.173003,35.505500],[-119.176924,35.508793],[-119.183825,35.516479],[-119.187746,35.522752],[-119.196686,35.522752],[-119.199980,35.529183],[-119.200136,35.529496],[-119.233230,35.529339],[-119.245307,35.543612],[-119.242640,35.543612],[-119.242483,35.558355],[-119.246248,35.558355],[-119.245934,35.587370],[-119.241542,35.587370],[-119.241386,35.593017],[-119.241229,35.598663],[-119.239660,35.601172],[-119.239503,35.601643],[-119.239503,35.601957],[-119.241229,35.601957],[-119.241072,35.616386],[-119.235582,35.616386],[-119.234485,35.619209],[-119.231191,35.617954],[-119.229466,35.616386],[-119.212841,35.616543],[-119.212213,35.613406],[-119.211900,35.605250],[-119.211586,35.605250],[-119.211429,35.603368],[-119.209861,35.597095],[-119.209547,35.595997],[-119.208920,35.595056],[-119.206881,35.593330],[-119.206253,35.590821],[-119.205469,35.589723],[-119.204842,35.588468],[-119.204685,35.587370],[-119.204528,35.585018],[-119.204214,35.583136],[-119.199980,35.565413],[-119.198568,35.565570],[-119.195588,35.565413],[-119.195588,35.573098],[-119.177708,35.573098],[-119.177708,35.578430],[-119.176924,35.579215],[-119.177708,35.580313],[-119.177708,35.582038],[-119.181316,35.586116],[-119.183511,35.587527],[-119.168925,35.587684],[-119.168925,35.602113],[-119.087525,35.602427],[-119.087055,35.606191],[-119.087055,35.610426],[-119.086898,35.613249],[-119.085800,35.619523],[-119.085329,35.622816],[-119.085172,35.626110],[-119.085329,35.630658],[-119.085016,35.633168],[-119.084545,35.635364],[-119.083918,35.637559],[-119.081251,35.642892],[-119.081095,35.642892],[-119.080938,35.638814],[-119.072155,35.638657],[-119.070116,35.638814],[-119.063215,35.638814],[-119.063372,35.646029],[-119.055686,35.646186],[-119.053491,35.644931],[-119.051295,35.643990],[-119.047844,35.642265],[-119.045649,35.641324],[-119.045492,35.640853],[-119.045492,35.631913],[-119.045335,35.630658],[-119.045492,35.629560],[-119.045492,35.626737],[-119.045335,35.625483],[-119.044708,35.625169],[-119.045492,35.622973],[-119.045492,35.618895],[-119.046590,35.618268],[-119.061960,35.608858],[-119.057255,35.606348],[-119.054589,35.603211],[-119.054275,35.602427],[-119.054432,35.599447],[-119.054275,35.598192],[-119.052393,35.596153],[-119.051452,35.594585],[-119.046590,35.596624],[-119.046276,35.597095],[-119.045178,35.597879],[-119.044551,35.598663],[-119.043923,35.598349],[-119.041257,35.598663],[-119.040630,35.598977],[-119.040002,35.599133],[-119.039532,35.599447],[-119.039061,35.599604],[-119.037807,35.600702],[-119.037179,35.600859],[-119.036709,35.600859],[-119.036395,35.600388],[-119.035768,35.599918],[-119.035611,35.599604],[-119.036081,35.598977],[-119.036081,35.598349],[-119.035297,35.598349],[-119.035140,35.598036],[-119.035454,35.597565],[-119.036081,35.596781],[-119.036081,35.596467],[-119.035140,35.595683],[-119.034827,35.595212],[-119.033258,35.586586],[-119.034513,35.585488],[-119.034827,35.584861],[-119.034827,35.584704],[-119.034042,35.584077],[-119.034042,35.583920],[-119.034670,35.583293],[-119.034670,35.582979],[-119.033415,35.582822],[-119.032631,35.583136],[-119.031533,35.576392],[-119.031847,35.576078],[-119.031847,35.575451],[-119.031063,35.573412],[-119.030592,35.572941],[-119.030592,35.572314],[-119.030749,35.572000],[-119.030749,35.571059],[-119.030592,35.570745],[-119.030278,35.569020],[-119.032160,35.567138],[-119.032160,35.566824],[-119.030749,35.565726],[-119.030592,35.565570],[-119.030121,35.566040],[-119.029808,35.566040],[-119.029337,35.564001],[-119.029494,35.563374],[-119.029651,35.562433],[-119.029337,35.561335],[-119.029337,35.560551],[-119.029965,35.559923],[-119.030749,35.560237],[-119.032004,35.559923],[-119.032945,35.560080],[-119.032474,35.559766],[-119.032631,35.558512],[-119.032631,35.557257],[-119.032004,35.555532],[-119.031690,35.553493],[-119.032474,35.552238],[-119.033572,35.551454],[-119.034199,35.550670],[-119.034356,35.549886],[-119.033886,35.548474],[-119.034199,35.548631],[-119.034513,35.548317],[-119.035297,35.547533],[-119.035768,35.546278],[-119.036709,35.545651],[-119.036552,35.545180],[-119.036866,35.545023],[-119.037179,35.544710],[-119.037650,35.544710],[-119.037650,35.544239],[-119.040787,35.544396],[-119.039689,35.542985],[-119.037179,35.542828],[-119.036866,35.542044],[-119.035611,35.540946],[-119.035611,35.540632],[-119.034042,35.540789],[-119.033258,35.540475],[-119.031219,35.540318],[-119.031376,35.536711],[-119.031690,35.536868],[-119.031690,35.537338],[-119.032160,35.538123],[-119.032945,35.538436],[-119.034827,35.538750],[-119.036866,35.538436],[-119.036395,35.537652],[-119.036552,35.535613],[-119.036081,35.534515],[-119.036238,35.533104],[-119.036081,35.530437],[-119.036552,35.529026],[-119.036395,35.528555],[-119.036552,35.527928],[-119.037807,35.525262],[-119.037493,35.524477],[-119.037650,35.523223],[-119.037336,35.522438],[-119.037493,35.521654],[-119.037807,35.516165],[-119.038591,35.515537],[-119.039532,35.515224],[-119.040787,35.515224],[-119.042355,35.514596],[-119.043453,35.513655],[-119.043610,35.512714],[-119.044394,35.513969],[-119.046747,35.513969],[-119.046747,35.511146],[-119.046590,35.501736],[-119.047844,35.501265],[-119.048158,35.500481],[-119.048629,35.500010],[-119.048785,35.499383],[-119.048158,35.499383],[-119.048472,35.498442],[-119.048942,35.498128],[-119.049727,35.498128],[-119.050040,35.497658],[-119.051138,35.496246],[-119.051295,35.491227],[-119.051452,35.490600],[-119.051452,35.489973],[-119.051138,35.489502],[-119.052393,35.486679],[-119.052393,35.485895],[-119.055843,35.485895],[-119.056784,35.484954],[-119.057569,35.484640],[-119.057882,35.483856],[-119.058039,35.482287],[-119.059294,35.482130],[-119.059607,35.481817],[-119.060235,35.480405],[-119.061019,35.480092],[-119.061176,35.480092],[-119.061019,35.481817],[-119.061176,35.481974],[-119.063215,35.483072],[-119.064470,35.484169],[-119.064940,35.484326],[-119.064783,35.484640],[-119.065254,35.484640],[-119.066195,35.483856],[-119.066822,35.483542],[-119.071371,35.483385],[-119.073880,35.483542],[-119.075292,35.483228],[-119.075919,35.491855],[-119.077487,35.492796],[-119.080154,35.492796],[-119.080781,35.490914],[-119.081408,35.490443],[-119.080938,35.490129],[-119.080938,35.489973],[-119.081565,35.488404],[-119.081879,35.487306],[-119.082192,35.486679],[-119.082192,35.485895],[-119.082036,35.485267],[-119.081879,35.485110],[-119.081095,35.484954],[-119.076233,35.486051],[-119.076076,35.485267],[-119.076233,35.483542],[-119.075605,35.481660],[-119.075135,35.481660],[-119.074664,35.473975],[-119.072782,35.473504],[-119.071371,35.473191],[-119.069959,35.472563],[-119.066038,35.470054],[-119.063842,35.472563],[-119.061960,35.473661],[-119.061646,35.473975],[-119.057569,35.472877],[-119.057098,35.472720],[-119.057098,35.472093],[-119.056784,35.471936],[-119.055530,35.472093],[-119.054118,35.471936],[-119.051452,35.472720],[-119.050824,35.472563],[-119.049413,35.473191],[-119.048158,35.474445],[-119.047688,35.474445],[-119.047060,35.474288],[-119.047060,35.472250],[-119.046276,35.473661],[-119.046119,35.474916],[-119.045962,35.474288],[-119.045178,35.473034],[-119.045806,35.471936],[-119.045335,35.470838],[-119.044551,35.470054],[-119.038591,35.470211],[-119.038748,35.468172],[-119.038905,35.467858],[-119.039375,35.468015],[-119.040787,35.467074],[-119.040787,35.463937],[-119.041885,35.462525],[-119.042041,35.461898],[-119.041100,35.460957],[-119.042826,35.461584],[-119.042355,35.459389],[-119.038748,35.459389],[-119.038748,35.456565],[-119.038591,35.456565],[-119.038434,35.455781],[-119.035140,35.455938],[-119.033101,35.457820],[-119.030749,35.459389],[-119.030278,35.459232],[-119.027926,35.459702],[-119.027142,35.459545],[-119.026828,35.459232],[-119.024475,35.458134],[-119.021966,35.457350],[-119.020868,35.457350],[-119.020397,35.457663],[-119.019927,35.458134],[-119.019613,35.458761],[-119.020397,35.459859],[-119.019613,35.460957],[-119.018986,35.460957],[-119.018672,35.461428],[-119.017888,35.461271],[-119.017104,35.461114],[-119.016320,35.461114],[-119.015222,35.460800],[-119.014281,35.460957],[-119.013653,35.460800],[-119.012712,35.460016],[-119.012085,35.459389],[-119.012085,35.458918],[-119.011771,35.458448],[-119.011301,35.456252],[-119.010987,35.454840],[-119.009889,35.455938],[-119.009105,35.456879],[-119.009105,35.458448],[-119.007380,35.458448],[-119.005498,35.459389],[-119.005341,35.459075],[-119.006439,35.458291],[-119.007536,35.457036],[-119.008164,35.455938],[-119.008007,35.455468],[-119.007223,35.456095],[-119.004243,35.456879],[-119.003615,35.456722],[-119.002831,35.457663],[-119.002361,35.457663],[-119.001890,35.457036],[-119.001577,35.456252],[-119.000949,35.455624],[-118.998753,35.455154],[-118.997342,35.455468],[-118.996871,35.455938],[-118.995303,35.455938],[-118.994676,35.455938],[-118.993107,35.455154],[-118.991696,35.453586],[-118.991382,35.452801],[-118.990598,35.449037],[-118.990755,35.447155],[-118.990755,35.445587],[-118.990284,35.444489],[-118.989186,35.443391],[-118.988402,35.440411],[-118.988716,35.438843],[-118.989029,35.438686],[-118.990284,35.438686],[-118.990441,35.438529],[-118.990598,35.438058],[-118.990127,35.435549],[-118.989500,35.435392],[-118.989657,35.434294],[-118.989500,35.432726],[-118.989970,35.430844],[-118.989657,35.429118],[-118.989500,35.426923],[-118.979305,35.426923],[-118.978050,35.427079],[-118.976012,35.427707],[-118.974757,35.427864],[-118.964719,35.427864],[-118.960955,35.427550],[-118.957975,35.427550],[-118.957191,35.428021],[-118.955936,35.428177],[-118.955152,35.428491],[-118.954368,35.429903],[-118.953897,35.431942],[-118.952642,35.432726],[-118.951231,35.434137],[-118.949506,35.434765],[-118.949662,35.441509],[-118.957818,35.441509],[-118.957504,35.454997],[-118.957191,35.454840],[-118.957348,35.456252],[-118.957191,35.456409],[-118.955152,35.454056],[-118.954211,35.454370],[-118.951544,35.454056],[-118.947780,35.452488],[-118.944957,35.449665],[-118.943859,35.450449],[-118.943075,35.450762],[-118.940095,35.451233],[-118.937115,35.451233],[-118.937272,35.451703],[-118.936958,35.452488],[-118.937899,35.454840],[-118.939468,35.458291],[-118.939311,35.460173],[-118.939468,35.460643],[-118.940095,35.461584],[-118.940409,35.463466],[-118.941350,35.464878],[-118.942761,35.466760],[-118.944173,35.469270],[-118.944487,35.469897],[-118.944330,35.470367],[-118.944487,35.471308],[-118.945271,35.472250],[-118.945114,35.473034],[-118.943702,35.474759],[-118.943232,35.476014],[-118.941820,35.477268],[-118.940722,35.478837],[-118.939625,35.479307],[-118.938997,35.479935],[-118.938997,35.480405],[-118.939781,35.482287],[-118.939625,35.483228],[-118.939938,35.484640],[-118.939625,35.485267],[-118.938840,35.486208],[-118.937742,35.486836],[-118.937429,35.487620],[-118.936958,35.489659],[-118.936331,35.490129],[-118.934449,35.490600],[-118.931939,35.491384],[-118.930685,35.492482],[-118.930371,35.492325],[-118.929587,35.492639],[-118.929587,35.492325],[-118.928803,35.492796],[-118.928646,35.493109],[-118.929116,35.494991],[-118.929273,35.495305],[-118.930214,35.495462],[-118.930841,35.495776],[-118.931312,35.496717],[-118.931155,35.497187],[-118.930841,35.497501],[-118.930371,35.497501],[-118.928646,35.497971],[-118.927862,35.498128],[-118.926764,35.497501],[-118.926293,35.497658],[-118.925823,35.498285],[-118.925509,35.498442],[-118.924882,35.498285],[-118.923784,35.498756],[-118.922843,35.498756],[-118.922058,35.498285],[-118.921431,35.498285],[-118.921431,35.497971],[-118.921274,35.497501],[-118.920333,35.496717],[-118.920804,35.496717],[-118.921117,35.496403],[-118.921117,35.496246],[-118.920804,35.495932],[-118.916883,35.496717],[-118.914844,35.496717],[-118.913903,35.496560],[-118.912962,35.497187],[-118.910766,35.497344],[-118.909982,35.497815],[-118.909668,35.498599],[-118.909668,35.499226],[-118.909198,35.499540],[-118.908256,35.499540],[-118.907943,35.499383],[-118.907943,35.499540],[-118.905747,35.499383],[-118.905277,35.499226],[-118.904806,35.499226],[-118.899787,35.499383],[-118.900414,35.500167],[-118.900728,35.500951],[-118.901512,35.501422],[-118.901199,35.501892],[-118.901042,35.503461],[-118.901355,35.505029],[-118.901512,35.506754],[-118.901669,35.506911],[-118.902610,35.507225],[-118.903551,35.508793],[-118.903551,35.510048],[-118.903394,35.510362],[-118.903081,35.510675],[-118.902297,35.510832],[-118.900885,35.512087],[-118.901042,35.513342],[-118.900414,35.514596],[-118.900414,35.514910],[-118.901199,35.515067],[-118.902610,35.515067],[-118.905433,35.514126],[-118.907002,35.514283],[-118.910452,35.515381],[-118.915314,35.517890],[-118.918294,35.518674],[-118.919235,35.518674],[-118.919392,35.519615],[-118.919863,35.519929],[-118.919706,35.533731],[-118.919863,35.563844],[-118.920333,35.563531],[-118.920490,35.563687],[-118.920961,35.564158],[-118.921117,35.564785],[-118.921588,35.564472],[-118.922058,35.564001],[-118.922372,35.564001],[-118.922843,35.564472],[-118.922843,35.564785],[-118.922215,35.565256],[-118.922372,35.565883],[-118.922215,35.566511],[-118.922372,35.566824],[-118.922999,35.567138],[-118.924097,35.568393],[-118.924097,35.569177],[-118.924725,35.571216],[-118.925195,35.571530],[-118.925352,35.571843],[-118.924725,35.572627],[-118.922686,35.573412],[-118.922372,35.573568],[-118.922529,35.574039],[-118.920961,35.573882],[-118.920490,35.574353],[-118.920333,35.574823],[-118.920490,35.575607],[-118.920020,35.576392],[-118.920020,35.576705],[-118.921431,35.577803],[-118.921745,35.578901],[-118.921274,35.580156],[-118.920490,35.581567],[-118.920333,35.582038],[-118.920333,35.585645],[-118.920333,35.586743],[-118.919706,35.586743],[-118.919706,35.588311],[-118.918137,35.588311],[-118.917353,35.588625],[-118.916255,35.588311],[-118.915628,35.588468],[-118.916726,35.588782],[-118.917667,35.590037],[-118.917824,35.590664],[-118.917667,35.592076],[-118.918608,35.592860],[-118.918922,35.593487],[-118.918765,35.594428],[-118.918294,35.594742],[-118.917667,35.595212],[-118.918137,35.595840],[-118.918922,35.596310],[-118.919706,35.597251],[-118.919549,35.601016],[-118.919863,35.602270],[-118.919706,35.603368],[-118.919706,35.605250],[-118.919706,35.605721],[-118.920020,35.606348],[-118.919706,35.606505],[-118.919706,35.610583],[-118.917824,35.610583],[-118.914687,35.609799],[-118.910766,35.610112],[-118.905747,35.609014],[-118.900258,35.609328],[-118.895552,35.608701],[-118.894768,35.608858],[-118.893984,35.609014],[-118.892572,35.609955],[-118.890534,35.610896],[-118.888338,35.610740],[-118.888338,35.616543],[-118.891318,35.616543],[-118.891788,35.616072],[-118.893513,35.615131],[-118.896023,35.614347],[-118.897591,35.613563],[-118.899473,35.612779],[-118.900885,35.612622],[-118.901512,35.612779],[-118.903394,35.613720],[-118.906061,35.613876],[-118.907629,35.614347],[-118.912334,35.614504],[-118.912805,35.614504],[-118.913119,35.614190],[-118.914216,35.615288],[-118.915942,35.616543],[-118.924254,35.616543],[-118.923784,35.618111],[-118.925352,35.619052],[-118.925823,35.619680],[-118.926293,35.619993],[-118.926450,35.620307],[-118.925509,35.621405],[-118.925352,35.622659],[-118.924725,35.623444],[-118.924882,35.623914],[-118.926136,35.625169],[-118.926136,35.625639],[-118.926450,35.626267],[-118.925979,35.627835],[-118.925352,35.628933],[-118.925509,35.630502],[-118.925352,35.631756],[-118.925509,35.632854],[-118.925509,35.633638],[-118.925352,35.633952],[-118.925509,35.634109],[-118.926607,35.635364],[-118.928018,35.635991],[-118.927705,35.636305],[-118.928018,35.636305],[-118.928803,35.635364],[-118.929273,35.634423],[-118.929587,35.634109],[-118.930528,35.634266],[-118.930685,35.634109],[-118.930841,35.632854],[-118.931312,35.632540],[-118.931939,35.632697],[-118.932096,35.633011],[-118.932410,35.633325],[-118.933978,35.633325],[-118.934919,35.633481],[-118.935860,35.633952],[-118.937899,35.634266],[-118.938527,35.635520],[-118.938370,35.636148],[-118.937899,35.637089],[-118.938370,35.638187],[-118.940252,35.641010],[-118.940095,35.645088],[-118.940409,35.645401],[-118.940409,35.646029],[-118.940095,35.646342],[-118.940095,35.646970],[-118.939938,35.664379],[-118.938997,35.664379],[-118.937429,35.664693],[-118.934606,35.665947],[-118.931939,35.666261],[-118.929116,35.666261],[-118.927391,35.666418]]]]}}
,{"id":93311,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-119.179434,35.005179],[-119.178963,35.005492],[-119.179120,35.005022],[-119.178649,35.003297],[-119.178336,35.002199],[-119.175669,34.998435],[-119.175042,34.997180],[-119.174885,34.996709],[-119.175983,34.994827],[-119.176767,34.994043],[-119.178336,34.993573],[-119.179747,34.992632],[-119.181629,34.988867],[-119.185550,34.983848],[-119.186178,34.983692],[-119.186491,34.982907],[-119.187276,34.984005],[-119.191981,34.989495],[-119.196529,34.991220],[-119.196843,34.997964],[-119.192765,34.998278],[-119.190883,34.999689],[-119.190099,34.999846],[-119.185864,35.002512],[-119.184139,35.004708],[-119.183511,35.005179],[-119.182727,35.005492],[-119.180061,35.005649],[-119.179590,35.005336],[-119.179434,35.005179]]],[[[-119.092073,35.321683],[-119.092230,35.318232],[-119.092230,35.310704],[-119.097563,35.310704],[-119.098661,35.310547],[-119.099288,35.310233],[-119.098974,35.310233],[-119.099915,35.308665],[-119.100857,35.307724],[-119.100700,35.296118],[-119.092230,35.296118],[-119.092230,35.295334],[-119.092858,35.293922],[-119.099445,35.289844],[-119.100700,35.287648],[-119.100700,35.285296],[-119.101170,35.285296],[-119.101170,35.270710],[-119.092073,35.270710],[-119.092073,35.267102],[-119.101170,35.267102],[-119.101327,35.243263],[-119.101170,35.237930],[-119.092230,35.238087],[-119.092230,35.236362],[-119.092230,35.236362],[-119.092387,35.235891],[-119.092858,35.235577],[-119.093799,35.234636],[-119.093956,35.233695],[-119.094269,35.233068],[-119.093956,35.231029],[-119.093956,35.230715],[-119.095367,35.229774],[-119.096151,35.229461],[-119.096308,35.228990],[-119.096779,35.228676],[-119.096779,35.227265],[-119.101170,35.227108],[-119.101170,35.223501],[-119.101013,35.223501],[-119.101013,35.223187],[-119.101170,35.223187],[-119.101327,35.186486],[-119.101484,35.184291],[-119.101641,35.183506],[-119.102268,35.182565],[-119.103052,35.181938],[-119.103993,35.181154],[-119.104778,35.180683],[-119.106189,35.180370],[-119.109953,35.180056],[-119.109953,35.179428],[-119.074507,35.179428],[-119.074507,35.178017],[-119.057725,35.168763],[-119.056941,35.168763],[-119.056784,35.168606],[-119.056941,35.165313],[-119.092073,35.165313],[-119.092073,35.151511],[-119.092230,35.151511],[-119.092073,35.146021],[-119.092073,35.144924],[-119.092230,35.144610],[-119.092387,35.137238],[-119.084075,35.137238],[-119.074978,35.128926],[-119.075292,35.128298],[-119.075292,35.127514],[-119.075135,35.127044],[-119.074507,35.126416],[-119.074350,35.125632],[-119.074194,35.115124],[-119.074350,35.109321],[-119.074194,35.094735],[-119.109953,35.094578],[-119.110894,35.092853],[-119.125324,35.077639],[-119.133009,35.067131],[-119.127676,35.066347],[-119.125010,35.066660],[-119.123598,35.066660],[-119.113874,35.065092],[-119.113090,35.064935],[-119.113247,35.064621],[-119.113874,35.064621],[-119.113874,35.064308],[-119.118109,35.064935],[-119.118109,35.061328],[-119.125324,35.061328],[-119.125324,35.058818],[-119.135989,35.058818],[-119.135832,35.051604],[-119.144144,35.051447],[-119.144772,35.050819],[-119.144929,35.058818],[-119.141635,35.058818],[-119.141792,35.067601],[-119.146027,35.068856],[-119.147909,35.069013],[-119.158103,35.071679],[-119.167200,35.073561],[-119.167043,35.058661],[-119.193706,35.058505],[-119.193706,35.055054],[-119.184923,35.055054],[-119.184766,35.047839],[-119.215821,35.047683],[-119.215821,35.054897],[-119.220212,35.054897],[-119.220369,35.058348],[-119.215664,35.058348],[-119.215821,35.060230],[-119.215821,35.069326],[-119.211586,35.069326],[-119.211586,35.074502],[-119.215350,35.074659],[-119.216291,35.074502],[-119.230093,35.074345],[-119.230720,35.074032],[-119.231975,35.073718],[-119.232446,35.072934],[-119.232916,35.072463],[-119.233544,35.072306],[-119.233700,35.083756],[-119.242640,35.083599],[-119.242483,35.076384],[-119.260677,35.076071],[-119.260677,35.076384],[-119.261932,35.076541],[-119.263030,35.076855],[-119.263500,35.076698],[-119.274008,35.080933],[-119.276204,35.081560],[-119.278714,35.082187],[-119.279184,35.082501],[-119.281537,35.083128],[-119.284046,35.083599],[-119.296123,35.085795],[-119.296123,35.085167],[-119.304122,35.086736],[-119.313846,35.087363],[-119.313846,35.085638],[-119.312434,35.085638],[-119.309925,35.082031],[-119.308827,35.081560],[-119.306945,35.081403],[-119.306945,35.081090],[-119.308356,35.079835],[-119.309611,35.079364],[-119.312121,35.077012],[-119.312905,35.076384],[-119.313218,35.076071],[-119.313846,35.076071],[-119.313846,35.076227],[-119.315101,35.076071],[-119.327020,35.075914],[-119.328902,35.075914],[-119.329844,35.076071],[-119.340352,35.068542],[-119.337372,35.067131],[-119.336744,35.066660],[-119.336274,35.065719],[-119.338313,35.066033],[-119.339568,35.061798],[-119.340195,35.061171],[-119.340352,35.060543],[-119.340038,35.060700],[-119.336901,35.063367],[-119.335803,35.063680],[-119.335803,35.058191],[-119.350390,35.058191],[-119.350390,35.057250],[-119.350860,35.056936],[-119.350703,35.055838],[-119.351487,35.055681],[-119.352115,35.055681],[-119.352585,35.055368],[-119.352585,35.057250],[-119.352899,35.058191],[-119.356193,35.058348],[-119.356663,35.059602],[-119.355722,35.059289],[-119.354467,35.059289],[-119.353526,35.059446],[-119.352115,35.060073],[-119.341607,35.067601],[-119.342077,35.068542],[-119.342861,35.069640],[-119.349292,35.069797],[-119.349292,35.075600],[-119.351644,35.075600],[-119.352742,35.075286],[-119.356663,35.075286],[-119.356820,35.079364],[-119.359016,35.079992],[-119.359957,35.081874],[-119.360114,35.082658],[-119.360114,35.083442],[-119.360427,35.083756],[-119.361368,35.084383],[-119.364662,35.084383],[-119.364819,35.084540],[-119.365133,35.086108],[-119.365760,35.086736],[-119.365760,35.087206],[-119.364819,35.087677],[-119.363721,35.087834],[-119.362623,35.087049],[-119.361368,35.087363],[-119.360271,35.087206],[-119.359643,35.087363],[-119.359330,35.087834],[-119.359330,35.087991],[-119.359957,35.088932],[-119.354624,35.086893],[-119.353056,35.086422],[-119.351644,35.086265],[-119.350703,35.086265],[-119.349292,35.086579],[-119.334392,35.087677],[-119.331569,35.087677],[-119.331726,35.094107],[-119.305220,35.093950],[-119.295966,35.100538],[-119.295966,35.093950],[-119.261304,35.093794],[-119.261147,35.100851],[-119.252521,35.101008],[-119.252364,35.106184],[-119.252208,35.108066],[-119.252208,35.115438],[-119.269930,35.115438],[-119.269930,35.119515],[-119.241229,35.140218],[-119.238719,35.142571],[-119.237465,35.143983],[-119.236837,35.145237],[-119.235582,35.147904],[-119.235112,35.150884],[-119.235269,35.166097],[-119.234955,35.174723],[-119.235112,35.175037],[-119.235112,35.176292],[-119.234485,35.178174],[-119.234485,35.181624],[-119.234485,35.182408],[-119.234641,35.182722],[-119.234485,35.186800],[-119.199039,35.186800],[-119.199039,35.194328],[-119.232759,35.194328],[-119.232759,35.209071],[-119.235426,35.209071],[-119.235426,35.210326],[-119.235739,35.210640],[-119.235582,35.212051],[-119.246875,35.223971],[-119.252051,35.228676],[-119.254403,35.230402],[-119.256285,35.230872],[-119.257383,35.230872],[-119.258324,35.231029],[-119.259736,35.231656],[-119.268676,35.231656],[-119.270244,35.231813],[-119.271813,35.232284],[-119.276675,35.234166],[-119.278870,35.234636],[-119.280752,35.234793],[-119.286399,35.234636],[-119.286399,35.237459],[-119.282164,35.238714],[-119.282007,35.240439],[-119.274165,35.240439],[-119.274165,35.243890],[-119.262873,35.243890],[-119.262716,35.247184],[-119.263030,35.247811],[-119.263343,35.247968],[-119.274165,35.248125],[-119.274165,35.257221],[-119.280439,35.257378],[-119.280596,35.260044],[-119.282635,35.261299],[-119.282791,35.261613],[-119.282791,35.262397],[-119.283576,35.263181],[-119.282948,35.263809],[-119.282948,35.264122],[-119.283262,35.264279],[-119.284360,35.263652],[-119.288281,35.266945],[-119.288438,35.267573],[-119.252678,35.267416],[-119.252364,35.306783],[-119.252364,35.306940],[-119.245620,35.305058],[-119.243268,35.305371],[-119.243111,35.305685],[-119.218957,35.307881],[-119.213311,35.310861],[-119.201078,35.317919],[-119.197784,35.320114],[-119.197470,35.319957],[-119.197000,35.320271],[-119.187119,35.321683],[-119.181002,35.323878],[-119.181002,35.335485],[-119.179747,35.335798],[-119.177081,35.336739],[-119.175826,35.337210],[-119.175669,35.337524],[-119.175669,35.338465],[-119.175356,35.338935],[-119.175199,35.339563],[-119.174885,35.339876],[-119.173003,35.339563],[-119.172219,35.339876],[-119.171435,35.340347],[-119.171435,35.340817],[-119.170807,35.341445],[-119.170494,35.342386],[-119.169866,35.343327],[-119.168298,35.344425],[-119.167514,35.344738],[-119.166729,35.344738],[-119.165004,35.344895],[-119.162808,35.344581],[-119.162024,35.344111],[-119.160926,35.343640],[-119.159985,35.343640],[-119.158260,35.343954],[-119.157633,35.343640],[-119.155907,35.343640],[-119.152614,35.344895],[-119.151673,35.345052],[-119.149163,35.345366],[-119.148065,35.345052],[-119.146654,35.345052],[-119.145870,35.345522],[-119.145556,35.346150],[-119.145556,35.348346],[-119.144458,35.349287],[-119.143674,35.349600],[-119.140851,35.350228],[-119.137400,35.351482],[-119.135205,35.351953],[-119.133793,35.352580],[-119.132695,35.351796],[-119.130813,35.352580],[-119.128460,35.352737],[-119.128147,35.352894],[-119.129401,35.353364],[-119.127676,35.354149],[-119.124539,35.354462],[-119.122344,35.354776],[-119.120462,35.355403],[-119.118579,35.355403],[-119.117795,35.355717],[-119.117011,35.355717],[-119.115756,35.356188],[-119.114815,35.353208],[-119.111678,35.354149],[-119.110581,35.354462],[-119.104150,35.354462],[-119.103366,35.354776],[-119.097877,35.354933],[-119.096935,35.355247],[-119.095994,35.355717],[-119.092230,35.359638],[-119.092230,35.359168],[-119.094269,35.357129],[-119.095053,35.355874],[-119.096151,35.355090],[-119.096465,35.354462],[-119.092230,35.354306],[-119.092073,35.321683]]]]}}
,{"id":93220,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-118.799409,35.325761],[-118.807565,35.325761],[-118.807408,35.318389],[-118.817289,35.318546],[-118.818387,35.318232],[-118.818387,35.317919],[-118.817446,35.315723],[-118.830307,35.315723],[-118.830150,35.317605],[-118.834385,35.317605],[-118.834385,35.320428],[-118.838619,35.320428],[-118.838776,35.320899],[-118.843011,35.321055],[-118.843011,35.325604],[-118.852108,35.325447],[-118.860891,35.325447],[-118.860891,35.345052],[-118.864655,35.345836],[-118.864812,35.345522],[-118.866066,35.345366],[-118.866223,35.344895],[-118.866851,35.345209],[-118.867478,35.345366],[-118.869360,35.345366],[-118.868890,35.346777],[-118.871869,35.347405],[-118.872811,35.348189],[-118.874222,35.348502],[-118.873595,35.350228],[-118.867635,35.348659],[-118.867635,35.351953],[-118.862459,35.352110],[-118.861204,35.351796],[-118.860891,35.354619],[-118.838933,35.354619],[-118.838933,35.351953],[-118.838149,35.351953],[-118.837521,35.352267],[-118.836894,35.352110],[-118.834385,35.352110],[-118.834228,35.351169],[-118.830150,35.351169],[-118.829993,35.343797],[-118.834385,35.343797],[-118.834385,35.340974],[-118.835169,35.340660],[-118.835639,35.340033],[-118.856656,35.345052],[-118.856813,35.344425],[-118.851951,35.343327],[-118.851951,35.341288],[-118.852264,35.340347],[-118.806153,35.329211],[-118.804271,35.328584],[-118.802389,35.327800],[-118.799409,35.325761]]],[[[-118.829523,35.380341],[-118.827954,35.380812],[-118.827013,35.381596],[-118.827170,35.381909],[-118.827013,35.383321],[-118.827327,35.383792],[-118.827327,35.384733],[-118.826386,35.387085],[-118.828268,35.387869],[-118.829836,35.388810],[-118.831405,35.388497],[-118.833287,35.388340],[-118.833757,35.388967],[-118.833914,35.389751],[-118.832659,35.389751],[-118.830150,35.390379],[-118.828268,35.390222],[-118.826229,35.390379],[-118.825758,35.392575],[-118.825602,35.392731],[-118.825445,35.392261],[-118.825602,35.391477],[-118.825131,35.390693],[-118.825131,35.390065],[-118.824974,35.390065],[-118.822622,35.388810],[-118.822308,35.387556],[-118.821681,35.387556],[-118.821837,35.385830],[-118.819485,35.386772],[-118.817132,35.388497],[-118.817132,35.388810],[-118.817446,35.389281],[-118.817603,35.389595],[-118.817289,35.390065],[-118.816662,35.390222],[-118.816662,35.390379],[-118.817603,35.390849],[-118.818073,35.393359],[-118.817132,35.394770],[-118.815721,35.396025],[-118.814466,35.396652],[-118.812584,35.397750],[-118.811800,35.397907],[-118.811015,35.397593],[-118.809761,35.396652],[-118.808820,35.394770],[-118.808349,35.394300],[-118.807251,35.393986],[-118.805840,35.394143],[-118.805369,35.394300],[-118.804585,35.395398],[-118.803487,35.396182],[-118.802546,35.397123],[-118.800821,35.397750],[-118.800193,35.398064],[-118.799723,35.399162],[-118.799566,35.399789],[-118.799252,35.400103],[-118.797998,35.400573],[-118.797057,35.401201],[-118.796586,35.401515],[-118.794547,35.402612],[-118.793449,35.402612],[-118.791724,35.402769],[-118.791097,35.402612],[-118.789999,35.402769],[-118.788274,35.402299],[-118.786705,35.402456],[-118.785607,35.401671],[-118.784509,35.401201],[-118.782000,35.400887],[-118.780118,35.399789],[-118.779177,35.399162],[-118.777765,35.399162],[-118.774628,35.400417],[-118.774001,35.400887],[-118.773374,35.401985],[-118.772903,35.401828],[-118.772903,35.400573],[-118.772433,35.400260],[-118.772119,35.401201],[-118.771492,35.401671],[-118.771178,35.402769],[-118.771492,35.402926],[-118.772119,35.403083],[-118.772276,35.403710],[-118.772746,35.404808],[-118.772746,35.404965],[-118.771805,35.404965],[-118.771178,35.405122],[-118.771021,35.405279],[-118.771492,35.405906],[-118.771492,35.406063],[-118.770080,35.406063],[-118.770080,35.406220],[-118.770394,35.407004],[-118.770394,35.407161],[-118.769139,35.406847],[-118.768825,35.407004],[-118.768198,35.407474],[-118.766943,35.407474],[-118.766630,35.408259],[-118.766002,35.408415],[-118.765375,35.409357],[-118.763650,35.410298],[-118.762238,35.410611],[-118.761454,35.411866],[-118.760356,35.412023],[-118.760199,35.411709],[-118.760826,35.410298],[-118.761768,35.409043],[-118.761611,35.408259],[-118.761297,35.407945],[-118.760826,35.409043],[-118.759885,35.409513],[-118.757847,35.411239],[-118.757062,35.411709],[-118.755808,35.412807],[-118.754710,35.412964],[-118.754239,35.413748],[-118.753769,35.414062],[-118.753612,35.413905],[-118.752984,35.413121],[-118.751887,35.412807],[-118.751573,35.412336],[-118.751573,35.411709],[-118.751259,35.411552],[-118.750161,35.411709],[-118.749220,35.412023],[-118.747966,35.411709],[-118.746711,35.412023],[-118.746554,35.412336],[-118.746868,35.412807],[-118.747025,35.414846],[-118.747338,35.415630],[-118.747966,35.416258],[-118.748122,35.416885],[-118.747809,35.417042],[-118.747495,35.416571],[-118.747181,35.416571],[-118.746711,35.417042],[-118.746397,35.417826],[-118.745927,35.417669],[-118.745613,35.417669],[-118.744201,35.418296],[-118.743574,35.419237],[-118.743417,35.420649],[-118.742006,35.422217],[-118.740594,35.422845],[-118.740437,35.422531],[-118.740594,35.421590],[-118.740594,35.421276],[-118.739183,35.421120],[-118.738398,35.421747],[-118.736987,35.422217],[-118.735261,35.422061],[-118.734791,35.422688],[-118.733693,35.423315],[-118.733693,35.423629],[-118.734164,35.424256],[-118.734164,35.424413],[-118.733066,35.424884],[-118.732282,35.425668],[-118.731654,35.425511],[-118.731340,35.424413],[-118.731027,35.424413],[-118.729929,35.424884],[-118.729772,35.425354],[-118.730086,35.426452],[-118.728674,35.427393],[-118.728674,35.427707],[-118.729145,35.428648],[-118.728831,35.428962],[-118.728204,35.428962],[-118.728047,35.429118],[-118.727890,35.429432],[-118.727733,35.430373],[-118.728674,35.432098],[-118.728988,35.432255],[-118.728831,35.432883],[-118.729458,35.433667],[-118.730399,35.433980],[-118.730713,35.434294],[-118.730556,35.434608],[-118.730243,35.434451],[-118.729302,35.434451],[-118.729145,35.434608],[-118.728988,35.434922],[-118.729458,35.435549],[-118.729302,35.436176],[-118.729302,35.436647],[-118.729772,35.437117],[-118.730399,35.438215],[-118.730556,35.438686],[-118.730399,35.439470],[-118.730086,35.439470],[-118.729929,35.438843],[-118.729615,35.438529],[-118.728988,35.438215],[-118.728361,35.438215],[-118.727419,35.438686],[-118.727106,35.439313],[-118.726635,35.438999],[-118.726008,35.438999],[-118.724910,35.439940],[-118.724283,35.440097],[-118.724440,35.440411],[-118.724126,35.440725],[-118.723498,35.440411],[-118.722401,35.440568],[-118.720832,35.441352],[-118.719421,35.441822],[-118.717852,35.441352],[-118.716597,35.441979],[-118.714872,35.441822],[-118.714872,35.442450],[-118.714559,35.442607],[-118.713774,35.441979],[-118.713931,35.442764],[-118.713931,35.443391],[-118.713147,35.443861],[-118.712049,35.443548],[-118.711892,35.443705],[-118.712363,35.444018],[-118.712833,35.445430],[-118.712676,35.445587],[-118.711579,35.445587],[-118.712206,35.446214],[-118.712363,35.446685],[-118.711735,35.447626],[-118.711422,35.447939],[-118.711422,35.448096],[-118.711892,35.448253],[-118.712049,35.448567],[-118.711892,35.449037],[-118.711892,35.449508],[-118.711579,35.449978],[-118.711579,35.450606],[-118.711265,35.451547],[-118.711108,35.451547],[-118.710481,35.451076],[-118.710010,35.451547],[-118.709697,35.451390],[-118.709226,35.451703],[-118.709383,35.452488],[-118.709383,35.452801],[-118.708442,35.452331],[-118.708285,35.452958],[-118.707814,35.453115],[-118.707344,35.453115],[-118.706873,35.453272],[-118.706246,35.452958],[-118.705775,35.451233],[-118.705619,35.451390],[-118.705462,35.451703],[-118.705775,35.452174],[-118.705462,35.453115],[-118.705619,35.453742],[-118.704991,35.453899],[-118.706089,35.454527],[-118.705932,35.455624],[-118.705619,35.455624],[-118.704834,35.455468],[-118.704364,35.455781],[-118.704050,35.455938],[-118.704207,35.456252],[-118.704050,35.457036],[-118.704050,35.457193],[-118.704364,35.457036],[-118.704991,35.457036],[-118.705619,35.457507],[-118.705305,35.458448],[-118.705619,35.458604],[-118.705775,35.458761],[-118.704834,35.459702],[-118.704207,35.459859],[-118.705619,35.460330],[-118.705462,35.462212],[-118.706089,35.462212],[-118.706246,35.462369],[-118.706246,35.462525],[-118.705932,35.462839],[-118.704678,35.463310],[-118.705148,35.463780],[-118.704364,35.464094],[-118.704050,35.463937],[-118.703580,35.463937],[-118.703266,35.463466],[-118.702796,35.463623],[-118.702482,35.463310],[-118.701384,35.463623],[-118.700757,35.463153],[-118.700129,35.463466],[-118.699659,35.462996],[-118.699188,35.463466],[-118.698561,35.463780],[-118.698247,35.463466],[-118.697620,35.463466],[-118.697463,35.463310],[-118.697463,35.462996],[-118.696836,35.462682],[-118.696208,35.462996],[-118.696051,35.463310],[-118.695895,35.463153],[-118.695738,35.462839],[-118.694797,35.462682],[-118.694169,35.462839],[-118.694012,35.463153],[-118.692915,35.462996],[-118.692915,35.463310],[-118.692444,35.463623],[-118.691974,35.463466],[-118.691660,35.462996],[-118.691032,35.463153],[-118.690405,35.462682],[-118.689621,35.462369],[-118.689307,35.462055],[-118.686641,35.461114],[-118.685543,35.460957],[-118.684916,35.461271],[-118.684288,35.461271],[-118.683818,35.461584],[-118.683347,35.461271],[-118.682877,35.461271],[-118.680681,35.458604],[-118.680681,35.458291],[-118.680838,35.457820],[-118.679113,35.457663],[-118.678172,35.457036],[-118.678172,35.456722],[-118.677387,35.456252],[-118.677231,35.455624],[-118.676133,35.455311],[-118.676133,35.454840],[-118.674721,35.453742],[-118.674407,35.453115],[-118.673937,35.452801],[-118.672525,35.452488],[-118.672212,35.452174],[-118.671898,35.452174],[-118.671898,35.451703],[-118.671584,35.451547],[-118.671584,35.451076],[-118.672055,35.450135],[-118.671898,35.449037],[-118.670486,35.448880],[-118.669545,35.448567],[-118.668134,35.448567],[-118.667820,35.448410],[-118.667663,35.447939],[-118.667977,35.446685],[-118.669389,35.445430],[-118.669389,35.444959],[-118.667193,35.444018],[-118.665311,35.442920],[-118.662958,35.442136],[-118.661076,35.440254],[-118.661233,35.439940],[-118.660762,35.439470],[-118.660605,35.438999],[-118.660449,35.438843],[-118.659978,35.437745],[-118.660135,35.437117],[-118.661233,35.435863],[-118.662644,35.435706],[-118.662958,35.435392],[-118.664056,35.435078],[-118.664526,35.434765],[-118.665311,35.433510],[-118.665781,35.433039],[-118.665938,35.432569],[-118.666565,35.431628],[-118.667193,35.431314],[-118.668291,35.431314],[-118.668291,35.431157],[-118.667663,35.430687],[-118.667663,35.430373],[-118.668134,35.430059],[-118.669545,35.429432],[-118.669859,35.429118],[-118.669702,35.428491],[-118.669859,35.428334],[-118.671271,35.428177],[-118.671427,35.428021],[-118.672682,35.426138],[-118.672839,35.425825],[-118.673153,35.425354],[-118.672996,35.425041],[-118.673310,35.424413],[-118.673780,35.424256],[-118.674094,35.423315],[-118.675662,35.423002],[-118.676603,35.423002],[-118.677074,35.422061],[-118.677387,35.421747],[-118.677858,35.421904],[-118.678642,35.420649],[-118.678799,35.420492],[-118.679426,35.420806],[-118.679740,35.421276],[-118.680524,35.421747],[-118.680838,35.422374],[-118.680681,35.423158],[-118.680995,35.423315],[-118.682720,35.423002],[-118.683190,35.422374],[-118.684602,35.421904],[-118.685073,35.422061],[-118.685229,35.422374],[-118.685386,35.422217],[-118.685700,35.421747],[-118.686798,35.421590],[-118.687111,35.421276],[-118.686641,35.419237],[-118.686955,35.418924],[-118.688366,35.419081],[-118.689621,35.418767],[-118.689621,35.418610],[-118.689464,35.418296],[-118.688837,35.418140],[-118.688837,35.417669],[-118.688994,35.417355],[-118.688837,35.417042],[-118.688680,35.416571],[-118.688837,35.416101],[-118.689935,35.416258],[-118.691503,35.415787],[-118.692287,35.414846],[-118.692287,35.414062],[-118.693542,35.413121],[-118.693542,35.413434],[-118.693856,35.413748],[-118.694169,35.414219],[-118.694640,35.414219],[-118.695895,35.413591],[-118.697933,35.412807],[-118.698718,35.412180],[-118.699816,35.411866],[-118.700286,35.411552],[-118.701070,35.411239],[-118.701227,35.406690],[-118.701384,35.389595],[-118.701698,35.389438],[-118.703893,35.389595],[-118.704364,35.389438],[-118.704678,35.388810],[-118.705148,35.388340],[-118.705775,35.388497],[-118.706246,35.389438],[-118.706246,35.390693],[-118.707501,35.392731],[-118.707658,35.393829],[-118.708128,35.394143],[-118.708912,35.394300],[-118.709383,35.394770],[-118.710481,35.394770],[-118.711735,35.394457],[-118.712206,35.394457],[-118.713147,35.394927],[-118.713618,35.394770],[-118.713931,35.394457],[-118.714245,35.394300],[-118.714559,35.394614],[-118.714872,35.394927],[-118.715343,35.395084],[-118.715813,35.395398],[-118.717225,35.395084],[-118.718950,35.393986],[-118.719891,35.393829],[-118.720362,35.393202],[-118.721303,35.393045],[-118.721460,35.392575],[-118.721616,35.392575],[-118.722714,35.393359],[-118.723342,35.393359],[-118.725067,35.393986],[-118.726008,35.393986],[-118.726949,35.394457],[-118.727106,35.394614],[-118.727106,35.395241],[-118.726478,35.395711],[-118.726635,35.395868],[-118.728047,35.395555],[-118.728517,35.395241],[-118.728674,35.394770],[-118.729615,35.394614],[-118.729929,35.394770],[-118.730399,35.394770],[-118.731654,35.393516],[-118.731811,35.393045],[-118.731811,35.391947],[-118.731968,35.390849],[-118.730870,35.389751],[-118.730713,35.389281],[-118.731027,35.389124],[-118.732752,35.389281],[-118.733850,35.389751],[-118.735261,35.389595],[-118.735889,35.389281],[-118.737300,35.389438],[-118.738555,35.390379],[-118.738869,35.391320],[-118.740124,35.392104],[-118.740908,35.392888],[-118.742790,35.393986],[-118.742947,35.393829],[-118.742476,35.393202],[-118.742476,35.392888],[-118.742947,35.392575],[-118.743260,35.392731],[-118.743574,35.392261],[-118.744201,35.392261],[-118.744201,35.391634],[-118.744829,35.391634],[-118.745142,35.391320],[-118.744986,35.390849],[-118.744358,35.390379],[-118.744515,35.389751],[-118.745613,35.389595],[-118.745927,35.389281],[-118.747025,35.388654],[-118.747338,35.388654],[-118.748279,35.390065],[-118.749377,35.390379],[-118.750632,35.390379],[-118.751887,35.389595],[-118.753455,35.390065],[-118.753612,35.389908],[-118.754239,35.389751],[-118.754239,35.389124],[-118.754553,35.389124],[-118.755964,35.389751],[-118.757533,35.389908],[-118.758317,35.390379],[-118.759415,35.389908],[-118.760983,35.390222],[-118.761768,35.390065],[-118.761924,35.389908],[-118.761768,35.388967],[-118.761924,35.388497],[-118.763022,35.388497],[-118.763493,35.388026],[-118.763336,35.387713],[-118.763022,35.387399],[-118.762709,35.386458],[-118.763179,35.386301],[-118.763336,35.386301],[-118.764277,35.386928],[-118.765532,35.386615],[-118.765845,35.386144],[-118.765845,35.385674],[-118.766316,35.385517],[-118.766630,35.385830],[-118.766943,35.385830],[-118.767414,35.385517],[-118.768355,35.385203],[-118.769453,35.384419],[-118.770237,35.384262],[-118.770707,35.384419],[-118.771021,35.384889],[-118.771178,35.386144],[-118.771805,35.386615],[-118.772590,35.386772],[-118.772903,35.386772],[-118.774001,35.385987],[-118.775256,35.385674],[-118.776040,35.385674],[-118.776667,35.385987],[-118.775883,35.385517],[-118.774315,35.385046],[-118.773060,35.385360],[-118.772119,35.385830],[-118.771648,35.385674],[-118.772119,35.383792],[-118.773060,35.382537],[-118.773060,35.382066],[-118.772433,35.380968],[-118.772903,35.380184],[-118.772903,35.378929],[-118.772276,35.377047],[-118.771805,35.376263],[-118.771492,35.375636],[-118.770237,35.374381],[-118.771805,35.373440],[-118.772590,35.373440],[-118.773060,35.373754],[-118.773687,35.373597],[-118.773844,35.373126],[-118.774472,35.372970],[-118.775413,35.373911],[-118.778393,35.373754],[-118.779177,35.372970],[-118.780432,35.372342],[-118.781373,35.371401],[-118.782157,35.371244],[-118.782784,35.370617],[-118.783098,35.369833],[-118.783568,35.369049],[-118.782470,35.368735],[-118.782314,35.368578],[-118.782470,35.368264],[-118.784509,35.368578],[-118.787333,35.367951],[-118.789058,35.367794],[-118.792351,35.367010],[-118.794704,35.368107],[-118.795331,35.368264],[-118.796586,35.368107],[-118.798154,35.368735],[-118.799096,35.368578],[-118.801134,35.368735],[-118.802546,35.368578],[-118.804271,35.367951],[-118.806938,35.366853],[-118.807408,35.366382],[-118.807565,35.365912],[-118.808035,35.365912],[-118.808035,35.368892],[-118.833287,35.369049],[-118.833444,35.369205],[-118.835012,35.369205],[-118.836110,35.369676],[-118.836267,35.369833],[-118.836267,35.370303],[-118.838462,35.372970],[-118.837835,35.373126],[-118.837365,35.372970],[-118.834071,35.373754],[-118.833444,35.373754],[-118.832816,35.373440],[-118.829523,35.371401],[-118.827013,35.372029],[-118.826699,35.372185],[-118.826856,35.373597],[-118.827954,35.375008],[-118.828582,35.375322],[-118.829836,35.375479],[-118.831562,35.374538],[-118.835169,35.374695],[-118.835953,35.375322],[-118.836267,35.375636],[-118.833600,35.377047],[-118.831248,35.377988],[-118.828582,35.377518],[-118.826543,35.377047],[-118.825915,35.376420],[-118.825602,35.376420],[-118.824817,35.376420],[-118.823719,35.377047],[-118.822151,35.377361],[-118.820740,35.377047],[-118.819485,35.376577],[-118.819014,35.377832],[-118.819328,35.378302],[-118.817446,35.378929],[-118.815877,35.380027],[-118.815407,35.381125],[-118.814623,35.382066],[-118.814623,35.382380],[-118.815093,35.382223],[-118.816975,35.382380],[-118.818073,35.382850],[-118.820740,35.383007],[-118.821367,35.383164],[-118.822151,35.382850],[-118.822935,35.383321],[-118.823249,35.383478],[-118.824504,35.382223],[-118.825445,35.381596],[-118.826072,35.380655],[-118.827170,35.379714],[-118.827327,35.379557],[-118.828738,35.379871],[-118.829523,35.380341]]]]}}
,{"id":93518,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-118.627355,35.263652],[-118.627042,35.261927],[-118.625316,35.255967],[-118.625630,35.256123],[-118.625787,35.257064],[-118.626885,35.257378],[-118.627512,35.258162],[-118.629081,35.259417],[-118.629551,35.259574],[-118.630492,35.259574],[-118.630963,35.259103],[-118.630806,35.258633],[-118.630492,35.258319],[-118.630963,35.258006],[-118.630649,35.257535],[-118.630806,35.257535],[-118.631119,35.257849],[-118.631276,35.258162],[-118.631590,35.258319],[-118.633158,35.259888],[-118.633315,35.260829],[-118.635040,35.260672],[-118.635511,35.260515],[-118.636138,35.259574],[-118.638491,35.259103],[-118.641628,35.259260],[-118.643039,35.259574],[-118.644137,35.260201],[-118.645549,35.260515],[-118.647274,35.260672],[-118.646960,35.261770],[-118.646490,35.262397],[-118.646490,35.263338],[-118.646176,35.263338],[-118.645706,35.263652],[-118.641941,35.262868],[-118.640373,35.262711],[-118.638961,35.262711],[-118.634727,35.263652],[-118.629081,35.263809],[-118.627355,35.263652]]],[[[-118.521331,35.588468],[-118.518351,35.589096],[-118.510823,35.582352],[-118.508000,35.572941],[-118.507059,35.568863],[-118.507059,35.569491],[-118.506588,35.568079],[-118.505647,35.567295],[-118.505333,35.567138],[-118.503765,35.566981],[-118.503138,35.567138],[-118.502667,35.567452],[-118.502197,35.569177],[-118.501883,35.569647],[-118.501726,35.569804],[-118.500785,35.569334],[-118.500001,35.568863],[-118.499530,35.567765],[-118.499374,35.567609],[-118.499374,35.568236],[-118.499217,35.569020],[-118.499530,35.569647],[-118.499217,35.569647],[-118.498903,35.569177],[-118.498746,35.568079],[-118.497962,35.567609],[-118.497805,35.567295],[-118.497648,35.566197],[-118.497335,35.565726],[-118.497335,35.564785],[-118.497021,35.564315],[-118.496080,35.563531],[-118.496237,35.562276],[-118.496550,35.561649],[-118.495609,35.560551],[-118.495296,35.560708],[-118.495452,35.561178],[-118.495296,35.561649],[-118.493884,35.563531],[-118.493414,35.564472],[-118.493100,35.564629],[-118.491688,35.564629],[-118.490904,35.564158],[-118.490590,35.563531],[-118.490434,35.563374],[-118.488708,35.563374],[-118.486042,35.563687],[-118.484787,35.562903],[-118.484160,35.563374],[-118.483846,35.564001],[-118.483533,35.564158],[-118.482592,35.563531],[-118.482121,35.562903],[-118.482748,35.561962],[-118.482748,35.561649],[-118.482592,35.561335],[-118.481494,35.560551],[-118.481494,35.558825],[-118.481180,35.558041],[-118.484160,35.558041],[-118.483219,35.526046],[-118.482748,35.516479],[-118.482435,35.513812],[-118.447773,35.513969],[-118.448087,35.482130],[-118.448087,35.457663],[-118.430050,35.457977],[-118.430991,35.443391],[-118.421110,35.443391],[-118.420953,35.426452],[-118.413739,35.426295],[-118.413111,35.425354],[-118.412641,35.425197],[-118.413425,35.424413],[-118.414837,35.423786],[-118.415307,35.423629],[-118.415934,35.424100],[-118.416562,35.423786],[-118.416719,35.423472],[-118.417346,35.423472],[-118.417973,35.423472],[-118.418758,35.423786],[-118.419542,35.423629],[-118.420796,35.423786],[-118.421424,35.424100],[-118.422051,35.424256],[-118.422835,35.424570],[-118.422992,35.424413],[-118.422051,35.423629],[-118.421581,35.423629],[-118.421424,35.423158],[-118.420640,35.422688],[-118.421424,35.421433],[-118.421110,35.420806],[-118.421267,35.420492],[-118.421737,35.420022],[-118.421110,35.419708],[-118.421110,35.419237],[-118.420640,35.418924],[-118.420953,35.417826],[-118.420640,35.417512],[-118.420012,35.417199],[-118.420012,35.415944],[-118.420169,35.415473],[-118.419699,35.415160],[-118.419385,35.415160],[-118.419071,35.415473],[-118.419071,35.415944],[-118.418758,35.416101],[-118.418130,35.415316],[-118.415621,35.414219],[-118.413739,35.412180],[-118.413268,35.411239],[-118.412484,35.410925],[-118.412013,35.410454],[-118.412170,35.409984],[-118.412484,35.409670],[-118.412954,35.408886],[-118.413582,35.408572],[-118.413739,35.406847],[-118.413425,35.405906],[-118.413895,35.405592],[-118.413895,35.404651],[-118.414209,35.404651],[-118.414680,35.404965],[-118.414993,35.404651],[-118.414993,35.404024],[-118.414837,35.403240],[-118.415150,35.402926],[-118.415150,35.402769],[-118.414680,35.401671],[-118.414680,35.401358],[-118.414523,35.401201],[-118.414523,35.400573],[-118.414366,35.400103],[-118.414680,35.399632],[-118.414680,35.398691],[-118.413739,35.397750],[-118.413739,35.396966],[-118.412954,35.396966],[-118.412327,35.396182],[-118.411386,35.395555],[-118.411229,35.394614],[-118.411229,35.394143],[-118.410759,35.393672],[-118.410916,35.393045],[-118.410759,35.392261],[-118.410759,35.391634],[-118.410445,35.391006],[-118.410288,35.390222],[-118.409661,35.389751],[-118.408877,35.390065],[-118.408249,35.389751],[-118.408563,35.388967],[-118.407779,35.387713],[-118.407465,35.387713],[-118.407151,35.388026],[-118.406838,35.387713],[-118.406210,35.388183],[-118.406053,35.388654],[-118.405583,35.388810],[-118.404642,35.388654],[-118.404328,35.388967],[-118.403701,35.389281],[-118.403387,35.389281],[-118.402917,35.388810],[-118.400878,35.388497],[-118.400094,35.387713],[-118.399780,35.387713],[-118.399152,35.387399],[-118.398211,35.387556],[-118.396800,35.387085],[-118.395075,35.386928],[-118.393663,35.386458],[-118.392251,35.386301],[-118.390840,35.386615],[-118.388801,35.386144],[-118.388174,35.386301],[-118.387703,35.387085],[-118.387389,35.387085],[-118.387076,35.387556],[-118.386448,35.388183],[-118.385194,35.388340],[-118.383782,35.389124],[-118.382371,35.389281],[-118.382057,35.389595],[-118.382057,35.389908],[-118.381900,35.390222],[-118.381743,35.390536],[-118.380645,35.391947],[-118.380018,35.391790],[-118.378763,35.391947],[-118.378293,35.392418],[-118.378136,35.378459],[-118.377195,35.378616],[-118.375940,35.378459],[-118.374685,35.378773],[-118.373901,35.379400],[-118.372646,35.380027],[-118.371549,35.380968],[-118.368569,35.381282],[-118.367784,35.380968],[-118.366843,35.380968],[-118.364177,35.380655],[-118.363236,35.380812],[-118.362609,35.380498],[-118.361511,35.380655],[-118.359472,35.380027],[-118.357903,35.379400],[-118.357747,35.379714],[-118.357903,35.380341],[-118.357590,35.380812],[-118.357276,35.380655],[-118.356335,35.378929],[-118.355080,35.378929],[-118.354453,35.378302],[-118.353826,35.378145],[-118.352885,35.377204],[-118.351944,35.377047],[-118.351316,35.377518],[-118.350846,35.377204],[-118.350532,35.377675],[-118.349591,35.377988],[-118.348179,35.378145],[-118.347238,35.378616],[-118.345984,35.378145],[-118.345670,35.377675],[-118.345199,35.377361],[-118.345356,35.376577],[-118.343631,35.376891],[-118.342690,35.377361],[-118.342376,35.377204],[-118.342219,35.376734],[-118.341592,35.376577],[-118.341435,35.376891],[-118.341749,35.377204],[-118.341906,35.377518],[-118.341278,35.378302],[-118.341435,35.380027],[-118.341122,35.380655],[-118.341122,35.381125],[-118.339867,35.381125],[-118.338142,35.382694],[-118.337828,35.382694],[-118.337357,35.383164],[-118.336416,35.383164],[-118.335946,35.383007],[-118.335475,35.382694],[-118.334848,35.382694],[-118.334064,35.383007],[-118.334377,35.383635],[-118.334064,35.383792],[-118.334064,35.384262],[-118.333750,35.384419],[-118.332652,35.384105],[-118.332182,35.384262],[-118.331868,35.384105],[-118.331397,35.384105],[-118.330770,35.384733],[-118.330456,35.384889],[-118.329986,35.384733],[-118.329202,35.385046],[-118.329045,35.385360],[-118.328574,35.385360],[-118.327163,35.385987],[-118.326849,35.386615],[-118.326535,35.386772],[-118.326379,35.387556],[-118.326692,35.388340],[-118.327947,35.388810],[-118.329202,35.389124],[-118.329202,35.389281],[-118.329202,35.389908],[-118.328261,35.390693],[-118.328104,35.391006],[-118.328261,35.391634],[-118.327947,35.392104],[-118.327947,35.393045],[-118.328417,35.394457],[-118.328104,35.395241],[-118.328104,35.395711],[-118.328574,35.396182],[-118.328731,35.396809],[-118.329202,35.397123],[-118.329986,35.398378],[-118.329986,35.399005],[-118.330143,35.399162],[-118.329986,35.399632],[-118.330613,35.399789],[-118.330770,35.399946],[-118.330613,35.400260],[-118.329829,35.401358],[-118.328731,35.401828],[-118.327947,35.402612],[-118.327947,35.403083],[-118.328417,35.403710],[-118.328731,35.404338],[-118.329358,35.404494],[-118.330143,35.405122],[-118.331554,35.406533],[-118.331084,35.406533],[-118.330770,35.406847],[-118.329986,35.406690],[-118.328417,35.406847],[-118.327163,35.406533],[-118.326849,35.406690],[-118.326222,35.407318],[-118.323085,35.406690],[-118.321046,35.405749],[-118.320105,35.405592],[-118.319478,35.405279],[-118.317439,35.405279],[-118.317125,35.405436],[-118.316811,35.406063],[-118.315400,35.406533],[-118.314615,35.407004],[-118.311792,35.405749],[-118.310067,35.406220],[-118.309597,35.406220],[-118.309440,35.406690],[-118.309126,35.406690],[-118.308656,35.406377],[-118.308812,35.406063],[-118.308028,35.405436],[-118.308342,35.405122],[-118.308342,35.404808],[-118.307715,35.403867],[-118.308499,35.402456],[-118.308812,35.402142],[-118.307087,35.401671],[-118.307715,35.401201],[-118.308185,35.401044],[-118.308656,35.401201],[-118.308812,35.401044],[-118.308812,35.400730],[-118.307401,35.399946],[-118.307244,35.399632],[-118.307558,35.399319],[-118.308185,35.399162],[-118.308342,35.398691],[-118.308342,35.397750],[-118.308028,35.397280],[-118.307871,35.396809],[-118.308185,35.396182],[-118.308185,35.395398],[-118.307244,35.394770],[-118.307087,35.394457],[-118.306930,35.393829],[-118.306773,35.393672],[-118.306303,35.393672],[-118.305989,35.393986],[-118.305048,35.393672],[-118.304107,35.393829],[-118.303480,35.394143],[-118.303166,35.393986],[-118.303166,35.393829],[-118.303480,35.393672],[-118.303480,35.392888],[-118.304107,35.391320],[-118.303950,35.390849],[-118.303166,35.390849],[-118.302382,35.391163],[-118.300500,35.390536],[-118.299402,35.390693],[-118.298618,35.390065],[-118.298461,35.389751],[-118.298618,35.389124],[-118.298618,35.388183],[-118.297990,35.386928],[-118.297990,35.386615],[-118.298618,35.386144],[-118.297520,35.385517],[-118.297363,35.384889],[-118.296736,35.384576],[-118.296579,35.384262],[-118.296265,35.384262],[-118.295167,35.384419],[-118.293913,35.383321],[-118.293442,35.380968],[-118.292501,35.379400],[-118.292344,35.378616],[-118.293128,35.377361],[-118.291560,35.378145],[-118.291403,35.378929],[-118.290776,35.379557],[-118.290619,35.380341],[-118.290305,35.379714],[-118.289992,35.380341],[-118.289364,35.380655],[-118.289207,35.380498],[-118.289521,35.380184],[-118.289364,35.379714],[-118.289051,35.379871],[-118.288266,35.380027],[-118.287639,35.380341],[-118.287482,35.380184],[-118.287639,35.379557],[-118.287012,35.379871],[-118.286384,35.380655],[-118.286227,35.380655],[-118.286384,35.379714],[-118.286071,35.379243],[-118.286384,35.378616],[-118.285757,35.379086],[-118.285443,35.379557],[-118.284973,35.379557],[-118.285286,35.379400],[-118.285286,35.379086],[-118.284973,35.378145],[-118.284816,35.377832],[-118.284973,35.377204],[-118.284659,35.377361],[-118.284188,35.377832],[-118.284032,35.377832],[-118.283875,35.377047],[-118.284032,35.376577],[-118.283404,35.376106],[-118.282306,35.375950],[-118.281836,35.375008],[-118.280738,35.373911],[-118.280424,35.373911],[-118.280267,35.374224],[-118.280581,35.375165],[-118.280424,35.375165],[-118.279797,35.374538],[-118.278856,35.374381],[-118.278072,35.373911],[-118.277287,35.373597],[-118.276190,35.373283],[-118.275405,35.373440],[-118.274308,35.372970],[-118.273994,35.372499],[-118.272896,35.372185],[-118.272582,35.371558],[-118.270386,35.371087],[-118.269289,35.370931],[-118.267250,35.370303],[-118.266465,35.369519],[-118.266152,35.368892],[-118.265211,35.368578],[-118.264897,35.368264],[-118.264270,35.367323],[-118.264113,35.366539],[-118.263956,35.366382],[-118.262231,35.365755],[-118.261760,35.365912],[-118.260976,35.366069],[-118.258937,35.364971],[-118.257996,35.364814],[-118.253605,35.363402],[-118.252507,35.362775],[-118.251722,35.361677],[-118.249997,35.360579],[-118.247645,35.359324],[-118.247017,35.358854],[-118.246233,35.358854],[-118.245763,35.358697],[-118.245449,35.358697],[-118.243567,35.357913],[-118.243567,35.357129],[-118.243253,35.357129],[-118.241685,35.358227],[-118.240744,35.358854],[-118.239175,35.359168],[-118.237450,35.359795],[-118.232588,35.359481],[-118.230706,35.359795],[-118.229451,35.360422],[-118.229137,35.360893],[-118.228667,35.361991],[-118.228667,35.364500],[-118.228196,35.367010],[-118.228040,35.368735],[-118.226942,35.370146],[-118.226785,35.371087],[-118.226157,35.372499],[-118.226001,35.374067],[-118.224746,35.376263],[-118.223178,35.377675],[-118.217061,35.377832],[-118.216904,35.362932],[-118.217374,35.362148],[-118.217374,35.361363],[-118.217531,35.360893],[-118.218002,35.360109],[-118.218472,35.359481],[-118.218629,35.359168],[-118.218629,35.354933],[-118.218159,35.353208],[-118.219884,35.352110],[-118.221295,35.351326],[-118.221452,35.351012],[-118.221609,35.350385],[-118.222393,35.348973],[-118.222393,35.347091],[-118.222080,35.344895],[-118.222080,35.342856],[-118.223021,35.340974],[-118.223178,35.339876],[-118.223648,35.338778],[-118.224119,35.338308],[-118.224275,35.337837],[-118.224903,35.337367],[-118.225060,35.337053],[-118.224275,35.335328],[-118.223805,35.334544],[-118.223648,35.333603],[-118.224432,35.332191],[-118.224119,35.331721],[-118.224119,35.331407],[-118.224903,35.330623],[-118.224903,35.329838],[-118.225844,35.328584],[-118.226628,35.326388],[-118.226628,35.325761],[-118.226471,35.324820],[-118.227099,35.323722],[-118.226942,35.322467],[-118.227099,35.321683],[-118.228824,35.321683],[-118.230392,35.321055],[-118.231647,35.320899],[-118.234627,35.318703],[-118.234627,35.318389],[-118.235568,35.317134],[-118.235568,35.316507],[-118.235568,35.316193],[-118.235725,35.315723],[-118.236352,35.315566],[-118.236823,35.314468],[-118.239018,35.311959],[-118.239803,35.310704],[-118.239959,35.310077],[-118.240273,35.309449],[-118.241371,35.308822],[-118.243253,35.306940],[-118.243880,35.306156],[-118.243880,35.305999],[-118.245292,35.304744],[-118.246076,35.304273],[-118.245919,35.303960],[-118.246233,35.303489],[-118.246390,35.303019],[-118.248743,35.301137],[-118.248899,35.300823],[-118.249527,35.298000],[-118.249527,35.295490],[-118.250311,35.294863],[-118.251252,35.294706],[-118.251566,35.294393],[-118.251409,35.294079],[-118.250781,35.293608],[-118.249213,35.292667],[-118.248899,35.292197],[-118.248115,35.292197],[-118.246547,35.291256],[-118.245135,35.291099],[-118.244978,35.290158],[-118.245449,35.289374],[-118.245919,35.288746],[-118.246860,35.287962],[-118.246547,35.287492],[-118.246233,35.283727],[-118.246390,35.283257],[-118.246704,35.282473],[-118.246860,35.282159],[-118.247017,35.280591],[-118.247488,35.279493],[-118.248429,35.279806],[-118.248115,35.279022],[-118.248586,35.278081],[-118.247331,35.277297],[-118.246233,35.276826],[-118.245606,35.276199],[-118.245135,35.275258],[-118.268661,35.275258],[-118.268504,35.270553],[-118.268504,35.246399],[-118.268348,35.243733],[-118.268504,35.241224],[-118.268504,35.224599],[-118.344101,35.224285],[-118.344415,35.224599],[-118.344572,35.225383],[-118.345356,35.225853],[-118.345984,35.226794],[-118.345984,35.227108],[-118.343945,35.226637],[-118.343004,35.225853],[-118.342847,35.225853],[-118.342219,35.226794],[-118.341278,35.226951],[-118.339710,35.226010],[-118.339239,35.225696],[-118.338142,35.226167],[-118.338142,35.226324],[-118.338298,35.226794],[-118.338298,35.227108],[-118.337671,35.227108],[-118.337357,35.226951],[-118.337044,35.226951],[-118.337044,35.227265],[-118.338769,35.228833],[-118.339083,35.229461],[-118.339083,35.230088],[-118.340965,35.231029],[-118.341906,35.231970],[-118.341906,35.232284],[-118.341592,35.234009],[-118.341749,35.234323],[-118.342533,35.234793],[-118.342533,35.235264],[-118.343160,35.235421],[-118.344101,35.236362],[-118.343945,35.237146],[-118.344415,35.237459],[-118.346454,35.238714],[-118.346768,35.239028],[-118.349120,35.240126],[-118.350218,35.240910],[-118.351473,35.241067],[-118.351787,35.241380],[-118.351630,35.242792],[-118.351473,35.243106],[-118.351630,35.243419],[-118.352571,35.243106],[-118.355080,35.244047],[-118.356962,35.244517],[-118.359315,35.244831],[-118.361511,35.245458],[-118.362295,35.246242],[-118.363707,35.246242],[-118.365275,35.247184],[-118.366843,35.247027],[-118.367784,35.247340],[-118.367784,35.247497],[-118.367941,35.249222],[-118.368412,35.250007],[-118.369510,35.250477],[-118.369196,35.251105],[-118.369353,35.251732],[-118.370451,35.252516],[-118.372490,35.253143],[-118.372960,35.253457],[-118.372960,35.255026],[-118.373431,35.255339],[-118.372960,35.256437],[-118.373274,35.258006],[-118.374215,35.259260],[-118.374372,35.259888],[-118.374842,35.260201],[-118.374842,35.261456],[-118.374372,35.263024],[-118.375156,35.263652],[-118.375626,35.263809],[-118.376254,35.264122],[-118.377352,35.266318],[-118.377665,35.267259],[-118.377508,35.267730],[-118.376567,35.268357],[-118.376411,35.268984],[-118.376411,35.269925],[-118.376881,35.270710],[-118.377038,35.271964],[-118.377665,35.272278],[-118.377822,35.269141],[-118.378293,35.269612],[-118.378920,35.269298],[-118.379704,35.268671],[-118.415621,35.268828],[-118.416091,35.272435],[-118.416719,35.274317],[-118.417346,35.276983],[-118.417032,35.277454],[-118.416562,35.277767],[-118.416248,35.278081],[-118.416248,35.278552],[-118.416562,35.279022],[-118.417032,35.279493],[-118.417816,35.278865],[-118.418758,35.278238],[-118.419228,35.277297],[-118.421424,35.278081],[-118.422679,35.278081],[-118.422679,35.277454],[-118.422992,35.276983],[-118.423149,35.276356],[-118.422835,35.275101],[-118.422365,35.273846],[-118.422208,35.272905],[-118.421581,35.271807],[-118.421581,35.271494],[-118.422208,35.270553],[-118.422208,35.269612],[-118.422835,35.268828],[-118.490120,35.269141],[-118.522429,35.268828],[-118.547367,35.268200],[-118.570265,35.267886],[-118.590811,35.267573],[-118.599281,35.267730],[-118.623277,35.267573],[-118.623434,35.267886],[-118.622964,35.268671],[-118.623121,35.269141],[-118.623748,35.269298],[-118.623748,35.269925],[-118.623905,35.270553],[-118.625316,35.271494],[-118.626414,35.271964],[-118.626257,35.272121],[-118.629708,35.273846],[-118.631590,35.275728],[-118.632374,35.276042],[-118.633786,35.275885],[-118.635040,35.275101],[-118.635982,35.274787],[-118.637236,35.274944],[-118.639589,35.275572],[-118.640373,35.275415],[-118.641471,35.274944],[-118.643039,35.273690],[-118.643980,35.272749],[-118.644608,35.272435],[-118.645549,35.272278],[-118.646960,35.272749],[-118.647588,35.273376],[-118.647745,35.273846],[-118.647745,35.274474],[-118.647588,35.274944],[-118.645706,35.276826],[-118.645392,35.277767],[-118.645706,35.278865],[-118.646490,35.279493],[-118.648215,35.279963],[-118.649627,35.281061],[-118.650568,35.281218],[-118.651822,35.281061],[-118.652607,35.281375],[-118.653077,35.282002],[-118.653704,35.283100],[-118.655743,35.284668],[-118.656214,35.285609],[-118.656057,35.286237],[-118.655743,35.286707],[-118.655273,35.287021],[-118.654489,35.287335],[-118.653704,35.287178],[-118.649156,35.285766],[-118.648215,35.285766],[-118.645862,35.286394],[-118.644294,35.287021],[-118.643667,35.287492],[-118.642569,35.289060],[-118.641471,35.289374],[-118.640216,35.289217],[-118.637393,35.287492],[-118.634570,35.287021],[-118.632531,35.287021],[-118.629865,35.287962],[-118.629237,35.287962],[-118.627512,35.287492],[-118.627042,35.287492],[-118.627355,35.287962],[-118.628767,35.288746],[-118.628924,35.289217],[-118.628767,35.289530],[-118.628453,35.290001],[-118.627512,35.290315],[-118.625160,35.291099],[-118.624532,35.291413],[-118.627669,35.290785],[-118.632531,35.289530],[-118.633629,35.289530],[-118.634570,35.289844],[-118.640530,35.292824],[-118.641628,35.293138],[-118.644921,35.293608],[-118.645862,35.293922],[-118.646803,35.294706],[-118.647901,35.295804],[-118.649156,35.296431],[-118.649940,35.296588],[-118.651979,35.296431],[-118.652920,35.296431],[-118.653548,35.296588],[-118.655273,35.297529],[-118.655900,35.297686],[-118.657155,35.297529],[-118.658723,35.296902],[-118.659508,35.296745],[-118.662174,35.297059],[-118.663429,35.297059],[-118.664683,35.296745],[-118.667036,35.295961],[-118.667820,35.295961],[-118.668604,35.296118],[-118.669389,35.296745],[-118.669702,35.297216],[-118.669859,35.297843],[-118.669702,35.299098],[-118.670016,35.300039],[-118.670486,35.300823],[-118.672525,35.302235],[-118.674407,35.303176],[-118.677231,35.304273],[-118.682563,35.307253],[-118.691503,35.311645],[-118.693385,35.312272],[-118.698090,35.312429],[-118.699816,35.312900],[-118.700757,35.313527],[-118.701698,35.314311],[-118.704678,35.318389],[-118.706089,35.319644],[-118.708128,35.320899],[-118.713774,35.323251],[-118.715186,35.323722],[-118.717539,35.324035],[-118.717695,35.332975],[-118.712049,35.331407],[-118.711108,35.331250],[-118.710010,35.331564],[-118.709226,35.332191],[-118.708755,35.332975],[-118.708755,35.333289],[-118.709383,35.334387],[-118.708912,35.335171],[-118.707030,35.334387],[-118.706089,35.334544],[-118.705619,35.334700],[-118.705148,35.335171],[-118.704834,35.335171],[-118.702011,35.334700],[-118.701070,35.334387],[-118.699972,35.334387],[-118.699659,35.333446],[-118.699345,35.333289],[-118.699031,35.333289],[-118.698875,35.333446],[-118.699188,35.334230],[-118.699031,35.334544],[-118.698404,35.334700],[-118.698247,35.335014],[-118.697463,35.335014],[-118.697306,35.335328],[-118.696051,35.335328],[-118.695738,35.335014],[-118.695110,35.335171],[-118.694954,35.335328],[-118.695110,35.335798],[-118.694640,35.336426],[-118.695110,35.337053],[-118.695895,35.337524],[-118.696836,35.337680],[-118.696365,35.338778],[-118.696522,35.338935],[-118.696992,35.338935],[-118.697463,35.339092],[-118.697463,35.339406],[-118.697306,35.339563],[-118.696365,35.339876],[-118.695110,35.340033],[-118.694326,35.340660],[-118.692601,35.341288],[-118.692287,35.341445],[-118.692130,35.341915],[-118.691974,35.341915],[-118.691503,35.341915],[-118.691032,35.341601],[-118.690876,35.341915],[-118.691346,35.342856],[-118.691346,35.343170],[-118.690719,35.343170],[-118.689778,35.342543],[-118.689150,35.342543],[-118.688994,35.342699],[-118.688837,35.343170],[-118.688680,35.343327],[-118.687739,35.343640],[-118.687268,35.344268],[-118.686798,35.343797],[-118.686484,35.343640],[-118.685386,35.342543],[-118.684916,35.342699],[-118.684132,35.343327],[-118.682720,35.342229],[-118.682563,35.341758],[-118.681622,35.341601],[-118.680995,35.341915],[-118.679583,35.341288],[-118.678485,35.340347],[-118.677544,35.340033],[-118.676603,35.340033],[-118.675976,35.339563],[-118.675035,35.339092],[-118.673466,35.338935],[-118.672368,35.339249],[-118.669389,35.338935],[-118.669232,35.338778],[-118.669075,35.338465],[-118.667820,35.337837],[-118.666879,35.337210],[-118.665781,35.337367],[-118.664997,35.337053],[-118.664683,35.336583],[-118.664526,35.335642],[-118.663899,35.334857],[-118.662488,35.334387],[-118.660292,35.334700],[-118.659194,35.335642],[-118.658253,35.335798],[-118.657939,35.336426],[-118.656998,35.337210],[-118.656371,35.336896],[-118.655587,35.336583],[-118.654489,35.337210],[-118.653548,35.337367],[-118.652920,35.337524],[-118.651822,35.338465],[-118.651666,35.338308],[-118.651038,35.337837],[-118.650881,35.337837],[-118.650254,35.338935],[-118.648999,35.339563],[-118.648372,35.339406],[-118.648058,35.338778],[-118.647745,35.338621],[-118.647117,35.338621],[-118.646176,35.337837],[-118.644294,35.337053],[-118.642882,35.337053],[-118.642412,35.336269],[-118.641314,35.335485],[-118.641157,35.335642],[-118.641471,35.336269],[-118.641314,35.336426],[-118.641157,35.335798],[-118.640687,35.335642],[-118.640530,35.335328],[-118.639903,35.335014],[-118.639432,35.334387],[-118.639118,35.334387],[-118.638648,35.334857],[-118.638177,35.334857],[-118.637236,35.333603],[-118.635982,35.333759],[-118.634727,35.333603],[-118.633158,35.334230],[-118.632688,35.334230],[-118.626257,35.331407],[-118.625630,35.331721],[-118.625473,35.332348],[-118.624062,35.333446],[-118.623434,35.334544],[-118.621552,35.335642],[-118.620611,35.336583],[-118.619670,35.337210],[-118.618729,35.337524],[-118.617788,35.337524],[-118.616220,35.338778],[-118.615435,35.339092],[-118.613710,35.339563],[-118.613083,35.340033],[-118.611671,35.341601],[-118.610730,35.343797],[-118.610573,35.343954],[-118.609789,35.344111],[-118.606809,35.344268],[-118.606339,35.344425],[-118.605868,35.345052],[-118.604927,35.345522],[-118.603359,35.345209],[-118.602731,35.344738],[-118.602418,35.344738],[-118.601633,35.345366],[-118.599281,35.345366],[-118.598810,35.345993],[-118.598810,35.346620],[-118.598653,35.347091],[-118.598967,35.347561],[-118.598183,35.348659],[-118.597085,35.348973],[-118.596458,35.348973],[-118.594889,35.349443],[-118.594105,35.350541],[-118.593321,35.350698],[-118.593007,35.351012],[-118.592380,35.351953],[-118.592223,35.352423],[-118.592537,35.353208],[-118.591439,35.353992],[-118.591439,35.354462],[-118.591282,35.354462],[-118.590184,35.354306],[-118.589243,35.354462],[-118.588459,35.354149],[-118.587675,35.354306],[-118.586577,35.354149],[-118.585949,35.354776],[-118.585165,35.354619],[-118.583910,35.354619],[-118.582969,35.354776],[-118.582342,35.355403],[-118.581715,35.355247],[-118.580617,35.355403],[-118.579362,35.354776],[-118.578107,35.355090],[-118.577637,35.355403],[-118.562580,35.355560],[-118.562737,35.356188],[-118.562580,35.356501],[-118.561482,35.356658],[-118.560541,35.356501],[-118.559757,35.356972],[-118.558502,35.357129],[-118.555366,35.359168],[-118.553013,35.359952],[-118.553013,35.360579],[-118.552386,35.360736],[-118.552386,35.361050],[-118.553013,35.361991],[-118.553013,35.362304],[-118.553013,35.362461],[-118.552386,35.362461],[-118.552072,35.362775],[-118.552542,35.363089],[-118.552542,35.363559],[-118.553327,35.363716],[-118.553327,35.364186],[-118.553797,35.364500],[-118.554268,35.365284],[-118.555209,35.365284],[-118.555836,35.365755],[-118.557404,35.365912],[-118.557404,35.367010],[-118.557718,35.368578],[-118.558032,35.369205],[-118.558659,35.369362],[-118.558816,35.369519],[-118.558816,35.371087],[-118.558032,35.372029],[-118.557875,35.373126],[-118.558032,35.373440],[-118.558816,35.373754],[-118.558816,35.374695],[-118.559443,35.375165],[-118.559600,35.375479],[-118.558973,35.375950],[-118.557718,35.377518],[-118.556150,35.380812],[-118.555052,35.383164],[-118.555366,35.384419],[-118.554895,35.385674],[-118.556463,35.386144],[-118.556777,35.386458],[-118.556934,35.387085],[-118.557248,35.387399],[-118.558816,35.387556],[-118.560384,35.387242],[-118.561169,35.386772],[-118.561796,35.386301],[-118.561796,35.385987],[-118.562110,35.385830],[-118.562267,35.385046],[-118.562110,35.384105],[-118.562267,35.383478],[-118.562737,35.383164],[-118.564149,35.383007],[-118.565246,35.382380],[-118.566972,35.381909],[-118.566972,35.381596],[-118.567285,35.381282],[-118.567129,35.380812],[-118.567129,35.379557],[-118.566972,35.378929],[-118.567285,35.378773],[-118.567285,35.378302],[-118.567442,35.377988],[-118.567913,35.377988],[-118.568383,35.378459],[-118.568383,35.379400],[-118.568697,35.379871],[-118.570422,35.380341],[-118.570893,35.380184],[-118.570736,35.379714],[-118.571206,35.378616],[-118.572304,35.378459],[-118.572932,35.377832],[-118.574343,35.377988],[-118.575284,35.377204],[-118.576539,35.376263],[-118.577794,35.376577],[-118.578892,35.377047],[-118.579833,35.377204],[-118.580931,35.376734],[-118.582499,35.376577],[-118.583597,35.376420],[-118.585322,35.375479],[-118.585949,35.374381],[-118.586263,35.374067],[-118.588929,35.373440],[-118.590498,35.372970],[-118.591282,35.372813],[-118.591596,35.372970],[-118.591753,35.373283],[-118.591596,35.373911],[-118.591753,35.374695],[-118.593321,35.375793],[-118.594576,35.375636],[-118.595203,35.375165],[-118.595830,35.375165],[-118.596771,35.374695],[-118.597085,35.374381],[-118.595987,35.425354],[-118.595830,35.442450],[-118.587675,35.442450],[-118.586577,35.455938],[-118.586890,35.491227],[-118.587675,35.553022],[-118.586734,35.553179],[-118.585636,35.553022],[-118.584852,35.553179],[-118.584067,35.553022],[-118.583126,35.553336],[-118.582813,35.553650],[-118.581401,35.553807],[-118.579989,35.554277],[-118.580146,35.556316],[-118.579676,35.556630],[-118.579205,35.556787],[-118.578735,35.557257],[-118.578107,35.557571],[-118.578107,35.557884],[-118.580460,35.561021],[-118.580617,35.561962],[-118.581715,35.562903],[-118.582499,35.564001],[-118.582185,35.564315],[-118.580774,35.565256],[-118.580146,35.565726],[-118.579519,35.566667],[-118.579048,35.566824],[-118.578421,35.566667],[-118.577166,35.566981],[-118.576539,35.566824],[-118.575598,35.566667],[-118.574030,35.565883],[-118.572304,35.565726],[-118.571991,35.565413],[-118.571834,35.564785],[-118.571520,35.564629],[-118.571206,35.564785],[-118.570422,35.565726],[-118.569795,35.565883],[-118.569324,35.566197],[-118.569011,35.566197],[-118.568540,35.565726],[-118.567442,35.565883],[-118.566815,35.566667],[-118.566815,35.566981],[-118.567285,35.567452],[-118.567285,35.567765],[-118.566658,35.569020],[-118.566344,35.570275],[-118.566031,35.570745],[-118.565717,35.571373],[-118.565090,35.571686],[-118.563521,35.572157],[-118.562894,35.571843],[-118.562267,35.571843],[-118.561953,35.572471],[-118.561012,35.572627],[-118.560071,35.573412],[-118.559287,35.573568],[-118.558189,35.574353],[-118.557875,35.575294],[-118.556934,35.575607],[-118.556777,35.576548],[-118.556620,35.576705],[-118.554895,35.576392],[-118.554268,35.575921],[-118.552542,35.575607],[-118.550974,35.575137],[-118.549562,35.575294],[-118.548778,35.574666],[-118.545171,35.574509],[-118.545014,35.574666],[-118.544700,35.575137],[-118.543759,35.575451],[-118.542505,35.576078],[-118.542348,35.576862],[-118.542191,35.577019],[-118.540936,35.577333],[-118.539838,35.577176],[-118.539681,35.577489],[-118.539995,35.578274],[-118.539995,35.579058],[-118.539368,35.579528],[-118.539054,35.579528],[-118.538584,35.579372],[-118.538427,35.578901],[-118.537799,35.578587],[-118.537486,35.577960],[-118.536702,35.577489],[-118.536388,35.576862],[-118.535760,35.576235],[-118.534819,35.575921],[-118.533878,35.575451],[-118.532310,35.575294],[-118.528546,35.573412],[-118.527605,35.573412],[-118.526350,35.574039],[-118.524625,35.575451],[-118.524468,35.575607],[-118.524625,35.575921],[-118.525409,35.576078],[-118.525880,35.576705],[-118.525880,35.577176],[-118.525566,35.578274],[-118.525409,35.578430],[-118.524625,35.578587],[-118.524311,35.578744],[-118.524468,35.579685],[-118.524311,35.580156],[-118.522900,35.580626],[-118.522586,35.581097],[-118.522743,35.582665],[-118.521488,35.584077],[-118.521331,35.585018],[-118.521488,35.585645],[-118.522115,35.586429],[-118.522115,35.586900],[-118.522429,35.587370],[-118.521959,35.587998],[-118.521488,35.588155],[-118.521331,35.588468]]]]}}
,{"id":93251,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-119.785779,35.441038],[-119.788759,35.441195],[-119.792680,35.440881],[-119.796601,35.441038],[-119.796601,35.445587],[-119.796757,35.445900],[-119.796444,35.446371],[-119.796287,35.454683],[-119.795973,35.455468],[-119.796444,35.455468],[-119.796444,35.460800],[-119.796757,35.461428],[-119.796601,35.462369],[-119.796757,35.462839],[-119.796601,35.464408],[-119.796757,35.465035],[-119.796601,35.465505],[-119.796757,35.470367],[-119.797071,35.483856],[-119.797228,35.484326],[-119.796914,35.484483],[-119.788915,35.484640],[-119.780289,35.487934],[-119.779034,35.487463],[-119.779034,35.484483],[-119.776839,35.484483],[-119.776682,35.484326],[-119.775584,35.482601],[-119.775427,35.480876],[-119.766958,35.480876],[-119.765860,35.479151],[-119.769781,35.473661],[-119.770095,35.473661],[-119.770095,35.473191],[-119.762253,35.470054],[-119.760684,35.471152],[-119.760370,35.470838],[-119.760214,35.469897],[-119.759586,35.469740],[-119.759429,35.469113],[-119.759900,35.468956],[-119.760057,35.468642],[-119.758959,35.467858],[-119.758488,35.466446],[-119.758332,35.466290],[-119.755822,35.466290],[-119.755508,35.466133],[-119.756293,35.464251],[-119.756449,35.462996],[-119.756920,35.462839],[-119.752999,35.452958],[-119.751431,35.448096],[-119.750960,35.447782],[-119.750490,35.446998],[-119.748137,35.441822],[-119.747980,35.440881],[-119.766801,35.441038],[-119.766958,35.436176],[-119.766801,35.432255],[-119.767428,35.432255],[-119.767585,35.436647],[-119.770251,35.435549],[-119.773702,35.435078],[-119.775113,35.435078],[-119.775584,35.435235],[-119.776055,35.435863],[-119.776211,35.437274],[-119.776996,35.436960],[-119.780446,35.435549],[-119.781073,35.436176],[-119.785151,35.438058],[-119.785465,35.438529],[-119.782485,35.438686],[-119.782485,35.441195],[-119.785779,35.441038]]],[[[-119.711123,35.449508],[-119.711279,35.450762],[-119.709554,35.450449],[-119.708613,35.450762],[-119.704378,35.454370],[-119.704222,35.454683],[-119.703594,35.454683],[-119.702967,35.454840],[-119.715044,35.467074],[-119.716612,35.468799],[-119.739354,35.499069],[-119.733864,35.499069],[-119.716141,35.499069],[-119.716298,35.506441],[-119.707515,35.506441],[-119.707515,35.521027],[-119.700457,35.521027],[-119.702340,35.528712],[-119.698889,35.528712],[-119.698889,35.535927],[-119.707358,35.535927],[-119.707358,35.543141],[-119.698889,35.543141],[-119.698889,35.557728],[-119.689949,35.557728],[-119.689792,35.528869],[-119.672069,35.529026],[-119.672069,35.521184],[-119.689792,35.521027],[-119.689635,35.506598],[-119.654190,35.506598],[-119.654346,35.499383],[-119.689635,35.499069],[-119.685087,35.491698],[-119.685087,35.491541],[-119.684930,35.491227],[-119.680382,35.484640],[-119.671756,35.484640],[-119.671599,35.473191],[-119.671128,35.472093],[-119.670658,35.470054],[-119.662816,35.470054],[-119.662816,35.462996],[-119.654190,35.462839],[-119.653719,35.441195],[-119.662032,35.441195],[-119.660777,35.400730],[-119.660149,35.399476],[-119.659993,35.399319],[-119.647916,35.406533],[-119.648073,35.407004],[-119.652151,35.412180],[-119.642740,35.412180],[-119.642740,35.441195],[-119.625017,35.441352],[-119.625017,35.430373],[-119.613254,35.430373],[-119.610588,35.427550],[-119.603530,35.421590],[-119.602589,35.420335],[-119.599923,35.416728],[-119.598511,35.415473],[-119.587532,35.408259],[-119.586121,35.407631],[-119.565261,35.401044],[-119.563536,35.399946],[-119.557105,35.393359],[-119.556164,35.392731],[-119.548950,35.392104],[-119.546597,35.391477],[-119.545342,35.391006],[-119.569966,35.370460],[-119.572319,35.368578],[-119.574985,35.367010],[-119.590826,35.358070],[-119.592394,35.357129],[-119.594904,35.355090],[-119.600236,35.350071],[-119.601962,35.348032],[-119.606196,35.340033],[-119.606824,35.339876],[-119.606824,35.338935],[-119.611686,35.330152],[-119.610588,35.329995],[-119.609019,35.326858],[-119.608549,35.326231],[-119.607765,35.325447],[-119.606981,35.324506],[-119.606196,35.323878],[-119.604785,35.323094],[-119.604001,35.323094],[-119.602275,35.323408],[-119.601962,35.323251],[-119.601491,35.322781],[-119.601491,35.321840],[-119.602275,35.321212],[-119.602432,35.320585],[-119.603216,35.319801],[-119.603373,35.319016],[-119.603216,35.318075],[-119.602903,35.317762],[-119.602275,35.317448],[-119.602118,35.317134],[-119.601962,35.316664],[-119.602432,35.316193],[-119.602589,35.314625],[-119.604157,35.313527],[-119.605098,35.313057],[-119.606196,35.312900],[-119.606981,35.313057],[-119.607137,35.300196],[-119.586591,35.290785],[-119.586278,35.286394],[-119.586905,35.285453],[-119.589885,35.283257],[-119.590669,35.282002],[-119.591140,35.281688],[-119.591924,35.281532],[-119.592081,35.281375],[-119.592081,35.281218],[-119.591767,35.280904],[-119.591767,35.280747],[-119.592708,35.280120],[-119.593022,35.279650],[-119.593022,35.279179],[-119.591296,35.276670],[-119.588003,35.275885],[-119.587375,35.275572],[-119.587219,35.274944],[-119.588630,35.274787],[-119.590512,35.273846],[-119.590826,35.273846],[-119.591767,35.274787],[-119.592708,35.274474],[-119.593022,35.274787],[-119.594276,35.275885],[-119.596002,35.275728],[-119.595374,35.273846],[-119.595218,35.272749],[-119.595061,35.272435],[-119.593649,35.271494],[-119.593335,35.270710],[-119.591453,35.270239],[-119.590355,35.270710],[-119.590042,35.270239],[-119.588630,35.269925],[-119.586905,35.268828],[-119.585964,35.267573],[-119.589571,35.267416],[-119.597884,35.266789],[-119.641956,35.263652],[-119.666423,35.261927],[-119.666580,35.261613],[-119.666737,35.262554],[-119.809462,35.263652],[-119.809305,35.350855],[-119.821538,35.351012],[-119.821852,35.351169],[-119.821852,35.351326],[-119.820127,35.351639],[-119.819813,35.352110],[-119.820597,35.352580],[-119.821381,35.352894],[-119.822322,35.353364],[-119.822950,35.354306],[-119.822950,35.355247],[-119.823420,35.355560],[-119.825302,35.356344],[-119.826243,35.356501],[-119.827028,35.356344],[-119.827969,35.355874],[-119.829067,35.355403],[-119.829223,35.355874],[-119.828753,35.356972],[-119.828282,35.357599],[-119.827969,35.357599],[-119.823263,35.357442],[-119.821852,35.357599],[-119.820597,35.358227],[-119.819499,35.358227],[-119.818088,35.358697],[-119.816362,35.357913],[-119.815892,35.356501],[-119.814480,35.355874],[-119.813853,35.355874],[-119.812128,35.355090],[-119.811344,35.355403],[-119.808677,35.355247],[-119.807579,35.354619],[-119.805697,35.354306],[-119.804129,35.353678],[-119.804129,35.353992],[-119.804756,35.354306],[-119.805227,35.354776],[-119.805384,35.355090],[-119.805227,35.355403],[-119.804286,35.355247],[-119.803972,35.355403],[-119.803031,35.356188],[-119.801306,35.357129],[-119.801149,35.357442],[-119.800835,35.358070],[-119.799894,35.357756],[-119.799581,35.357442],[-119.799110,35.357442],[-119.797855,35.358854],[-119.796444,35.359481],[-119.795973,35.360265],[-119.795503,35.360265],[-119.795503,35.361050],[-119.795346,35.361363],[-119.793307,35.362618],[-119.791895,35.364030],[-119.791425,35.364186],[-119.790641,35.364186],[-119.792836,35.368421],[-119.792680,35.369362],[-119.792209,35.370303],[-119.787974,35.375008],[-119.787347,35.376734],[-119.786249,35.378459],[-119.786092,35.380655],[-119.786092,35.381125],[-119.786563,35.381909],[-119.786563,35.382380],[-119.787190,35.383164],[-119.787190,35.384105],[-119.787974,35.383792],[-119.788759,35.384262],[-119.788759,35.384733],[-119.788131,35.385360],[-119.787974,35.386301],[-119.788445,35.388183],[-119.787504,35.388340],[-119.787033,35.387556],[-119.786563,35.387242],[-119.786092,35.387242],[-119.785465,35.387556],[-119.783897,35.387713],[-119.783112,35.388026],[-119.782642,35.388026],[-119.781701,35.387713],[-119.780132,35.387869],[-119.778564,35.387399],[-119.775898,35.387713],[-119.775741,35.388026],[-119.775270,35.388497],[-119.774016,35.390536],[-119.772447,35.391477],[-119.769938,35.392888],[-119.768212,35.394300],[-119.767428,35.394614],[-119.767115,35.394927],[-119.767271,35.395241],[-119.767115,35.395398],[-119.766644,35.395555],[-119.766487,35.395398],[-119.766487,35.397123],[-119.766330,35.400417],[-119.761939,35.401044],[-119.760841,35.400887],[-119.759586,35.401358],[-119.759116,35.401358],[-119.758332,35.400573],[-119.757861,35.399162],[-119.755979,35.398064],[-119.752215,35.397907],[-119.751587,35.397750],[-119.749235,35.397437],[-119.749705,35.396809],[-119.749705,35.396182],[-119.750490,35.396025],[-119.754411,35.388967],[-119.755195,35.387869],[-119.755508,35.386772],[-119.757077,35.384576],[-119.757391,35.383164],[-119.758488,35.381439],[-119.758488,35.381125],[-119.758332,35.380968],[-119.759273,35.380341],[-119.761312,35.379400],[-119.763194,35.377988],[-119.764291,35.377518],[-119.766487,35.377204],[-119.766330,35.368578],[-119.739511,35.368264],[-119.736531,35.368421],[-119.735433,35.367794],[-119.734335,35.367480],[-119.732923,35.366539],[-119.732139,35.366382],[-119.726493,35.364343],[-119.724297,35.363716],[-119.722572,35.363089],[-119.721631,35.363089],[-119.719906,35.362461],[-119.718337,35.361363],[-119.716926,35.360736],[-119.716141,35.360109],[-119.715200,35.359795],[-119.713632,35.359795],[-119.713318,35.359481],[-119.713162,35.353835],[-119.695909,35.353835],[-119.696066,35.329682],[-119.696223,35.314468],[-119.694184,35.316193],[-119.690733,35.318389],[-119.689165,35.318546],[-119.688381,35.319016],[-119.685871,35.319487],[-119.683048,35.320271],[-119.681950,35.320899],[-119.680852,35.321683],[-119.679284,35.322624],[-119.678970,35.321683],[-119.678343,35.320899],[-119.675520,35.318703],[-119.674736,35.318703],[-119.673167,35.319173],[-119.671285,35.319016],[-119.670658,35.318860],[-119.669717,35.318232],[-119.669246,35.317134],[-119.668462,35.316193],[-119.665168,35.314782],[-119.663443,35.313370],[-119.661561,35.313057],[-119.659679,35.313684],[-119.659679,35.314154],[-119.660306,35.314625],[-119.660463,35.315566],[-119.660934,35.316193],[-119.660777,35.317605],[-119.660306,35.318232],[-119.659993,35.319016],[-119.659836,35.319957],[-119.660777,35.320742],[-119.660777,35.321055],[-119.660777,35.321683],[-119.659993,35.322624],[-119.659679,35.323722],[-119.659679,35.324349],[-119.660306,35.325917],[-119.660306,35.326702],[-119.664070,35.326858],[-119.664070,35.330779],[-119.664384,35.330936],[-119.666580,35.333132],[-119.668305,35.334387],[-119.668148,35.338621],[-119.668462,35.339876],[-119.667991,35.339719],[-119.666894,35.339876],[-119.667678,35.341131],[-119.666580,35.342856],[-119.666580,35.344268],[-119.663757,35.345993],[-119.663443,35.346620],[-119.663443,35.347718],[-119.662816,35.348816],[-119.662973,35.349600],[-119.663914,35.350071],[-119.664384,35.351012],[-119.664698,35.351169],[-119.665639,35.350855],[-119.665953,35.351482],[-119.666109,35.352737],[-119.665796,35.353364],[-119.665639,35.353992],[-119.666266,35.354933],[-119.666580,35.355560],[-119.665953,35.356658],[-119.665168,35.357286],[-119.665168,35.357599],[-119.665482,35.358383],[-119.665796,35.358854],[-119.666109,35.359952],[-119.665796,35.360265],[-119.664855,35.360893],[-119.662032,35.361207],[-119.663914,35.362932],[-119.665639,35.364030],[-119.670030,35.367637],[-119.670971,35.368264],[-119.670971,35.370303],[-119.671442,35.371244],[-119.670344,35.371872],[-119.670658,35.372813],[-119.670344,35.373597],[-119.670815,35.373911],[-119.670971,35.374381],[-119.670971,35.374695],[-119.670501,35.375479],[-119.670501,35.375793],[-119.678029,35.375793],[-119.678029,35.380341],[-119.685087,35.380341],[-119.685558,35.380027],[-119.686655,35.379871],[-119.686812,35.380027],[-119.686812,35.380341],[-119.687440,35.380498],[-119.689165,35.380498],[-119.690576,35.380184],[-119.692615,35.380184],[-119.692772,35.380968],[-119.693086,35.381596],[-119.692772,35.382380],[-119.693556,35.382694],[-119.694497,35.382537],[-119.694654,35.382380],[-119.694811,35.381909],[-119.695909,35.381596],[-119.695909,35.380341],[-119.695595,35.379557],[-119.696380,35.378459],[-119.704849,35.378459],[-119.705790,35.380027],[-119.705790,35.383007],[-119.704535,35.383007],[-119.704535,35.386615],[-119.700144,35.386772],[-119.700144,35.387713],[-119.699987,35.387399],[-119.699046,35.386772],[-119.698889,35.386301],[-119.699046,35.385674],[-119.697477,35.385674],[-119.697634,35.391006],[-119.699830,35.391006],[-119.699830,35.391790],[-119.702026,35.391790],[-119.702026,35.392731],[-119.703437,35.392731],[-119.703437,35.391163],[-119.703751,35.390849],[-119.703751,35.390222],[-119.710652,35.390222],[-119.713475,35.393516],[-119.713632,35.391320],[-119.713475,35.390222],[-119.721317,35.390222],[-119.720847,35.390849],[-119.722729,35.391947],[-119.722729,35.391790],[-119.723356,35.391477],[-119.724140,35.391320],[-119.725081,35.390693],[-119.725395,35.390693],[-119.725709,35.391163],[-119.726963,35.391163],[-119.727905,35.390693],[-119.728061,35.390849],[-119.727748,35.391477],[-119.727591,35.392731],[-119.726963,35.393202],[-119.725238,35.394143],[-119.727591,35.395555],[-119.727591,35.396025],[-119.728218,35.395868],[-119.729159,35.396496],[-119.730414,35.396182],[-119.731512,35.396182],[-119.731512,35.397907],[-119.733394,35.398691],[-119.734021,35.399632],[-119.735119,35.400260],[-119.736217,35.401828],[-119.736217,35.402142],[-119.735590,35.402142],[-119.734962,35.402612],[-119.731669,35.404808],[-119.730728,35.404965],[-119.730257,35.404024],[-119.730100,35.403867],[-119.722572,35.403867],[-119.719592,35.399789],[-119.718965,35.398848],[-119.709084,35.400887],[-119.707045,35.398378],[-119.707045,35.397593],[-119.686812,35.397593],[-119.687126,35.421276],[-119.689635,35.421276],[-119.690106,35.421904],[-119.690576,35.421904],[-119.690576,35.425354],[-119.691047,35.426609],[-119.693870,35.426609],[-119.693713,35.434137],[-119.692772,35.434294],[-119.692302,35.434137],[-119.690576,35.434137],[-119.690576,35.435706],[-119.695282,35.436490],[-119.695595,35.436647],[-119.699987,35.437588],[-119.701085,35.437588],[-119.701712,35.438058],[-119.701712,35.438999],[-119.703908,35.438999],[-119.703908,35.434451],[-119.704222,35.434608],[-119.706731,35.434608],[-119.706731,35.433824],[-119.710809,35.433667],[-119.710652,35.435863],[-119.710809,35.438843],[-119.708613,35.438843],[-119.710652,35.440881],[-119.711123,35.449508]]]]}}
,{"id":93226,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.757062,35.790165],[-118.630022,35.789538],[-118.626728,35.789851],[-118.625787,35.790322],[-118.625944,35.790479],[-118.622493,35.789851],[-118.589243,35.789695],[-118.589557,35.747348],[-118.589714,35.747191],[-118.590498,35.747191],[-118.590811,35.746877],[-118.590968,35.747191],[-118.591439,35.747348],[-118.591909,35.746720],[-118.592537,35.746720],[-118.594105,35.745936],[-118.594732,35.745936],[-118.595830,35.744995],[-118.596144,35.744995],[-118.596928,35.745309],[-118.597242,35.745152],[-118.597712,35.744838],[-118.598497,35.744681],[-118.598810,35.744054],[-118.599751,35.743740],[-118.600065,35.743427],[-118.600536,35.743113],[-118.601790,35.743113],[-118.603045,35.743583],[-118.603359,35.743427],[-118.603045,35.742642],[-118.603516,35.742486],[-118.604770,35.742642],[-118.605554,35.742015],[-118.606025,35.742486],[-118.606339,35.742642],[-118.606966,35.741858],[-118.607123,35.741231],[-118.607907,35.741074],[-118.608064,35.740917],[-118.613396,35.741074],[-118.620297,35.741074],[-118.620768,35.740603],[-118.621082,35.739976],[-118.622023,35.738878],[-118.622336,35.738565],[-118.622964,35.738721],[-118.623905,35.737937],[-118.624532,35.737153],[-118.624846,35.736526],[-118.624846,35.736212],[-118.625944,35.734800],[-118.625944,35.734173],[-118.626257,35.733546],[-118.626414,35.732448],[-118.626885,35.731977],[-118.626885,35.731507],[-118.627512,35.731507],[-118.627355,35.730095],[-118.627512,35.728997],[-118.627826,35.728997],[-118.628296,35.729154],[-118.627826,35.728527],[-118.627826,35.728370],[-118.628296,35.728213],[-118.628139,35.726958],[-118.627512,35.726174],[-118.627042,35.725860],[-118.626728,35.724606],[-118.626414,35.724292],[-118.626414,35.723194],[-118.626728,35.723037],[-118.627198,35.723351],[-118.627355,35.722881],[-118.627042,35.721939],[-118.626571,35.721469],[-118.626571,35.720371],[-118.626414,35.720057],[-118.625630,35.719430],[-118.625160,35.719273],[-118.625160,35.718803],[-118.624218,35.716293],[-118.624532,35.715666],[-118.623905,35.715666],[-118.623591,35.715980],[-118.623905,35.715509],[-118.625473,35.714882],[-118.625787,35.714411],[-118.626257,35.714568],[-118.626885,35.714254],[-118.627669,35.714097],[-118.627355,35.713627],[-118.627198,35.713470],[-118.628924,35.713627],[-118.629708,35.713627],[-118.630335,35.712843],[-118.632060,35.712059],[-118.632374,35.711431],[-118.633002,35.711117],[-118.633472,35.710490],[-118.635197,35.709392],[-118.635825,35.709392],[-118.636766,35.709706],[-118.638177,35.710020],[-118.638648,35.709235],[-118.639589,35.708922],[-118.639432,35.708451],[-118.639589,35.708138],[-118.640687,35.707667],[-118.641471,35.706883],[-118.641628,35.706412],[-118.641314,35.705785],[-118.641941,35.705471],[-118.642412,35.705471],[-118.642726,35.706255],[-118.643039,35.706412],[-118.643980,35.706726],[-118.643824,35.707040],[-118.643196,35.707353],[-118.643353,35.707667],[-118.643980,35.707981],[-118.644451,35.707667],[-118.644921,35.706726],[-118.645706,35.706099],[-118.647117,35.706255],[-118.647431,35.706569],[-118.647431,35.707040],[-118.648215,35.707510],[-118.648842,35.707510],[-118.650411,35.706726],[-118.650725,35.706412],[-118.650411,35.705785],[-118.650411,35.705628],[-118.650881,35.705158],[-118.651979,35.705314],[-118.652607,35.705628],[-118.653077,35.706412],[-118.653548,35.706569],[-118.653861,35.706412],[-118.653861,35.705471],[-118.655116,35.705471],[-118.656998,35.704687],[-118.657782,35.704217],[-118.658723,35.704687],[-118.660135,35.704844],[-118.661076,35.704530],[-118.661546,35.704060],[-118.662017,35.703903],[-118.662488,35.704373],[-118.662488,35.705785],[-118.663115,35.705942],[-118.663585,35.705628],[-118.664370,35.704373],[-118.666095,35.704060],[-118.666252,35.703119],[-118.666565,35.702648],[-118.667506,35.703275],[-118.669702,35.703432],[-118.670173,35.704060],[-118.670800,35.703589],[-118.670486,35.702962],[-118.670330,35.701864],[-118.670330,35.701550],[-118.671271,35.700452],[-118.672996,35.699668],[-118.673937,35.699668],[-118.674721,35.699511],[-118.674721,35.699354],[-118.674564,35.698413],[-118.673310,35.697786],[-118.670643,35.695277],[-118.669702,35.695120],[-118.669859,35.694806],[-118.670643,35.694649],[-118.670173,35.694022],[-118.669859,35.693238],[-118.670016,35.692767],[-118.670486,35.692767],[-118.670957,35.692767],[-118.671584,35.692610],[-118.671427,35.691669],[-118.670800,35.691042],[-118.671271,35.690728],[-118.671584,35.689630],[-118.671584,35.689160],[-118.671427,35.688846],[-118.671898,35.688376],[-118.672055,35.688219],[-118.673153,35.688532],[-118.673466,35.688846],[-118.673623,35.689317],[-118.674407,35.689787],[-118.676289,35.690415],[-118.677544,35.691199],[-118.678015,35.692140],[-118.678485,35.692610],[-118.678799,35.693081],[-118.678956,35.693708],[-118.679269,35.694022],[-118.679740,35.694179],[-118.679897,35.694649],[-118.679583,35.694963],[-118.679583,35.695277],[-118.679426,35.695590],[-118.680838,35.696218],[-118.681152,35.696845],[-118.680995,35.697316],[-118.680995,35.697472],[-118.681936,35.696688],[-118.681622,35.695747],[-118.681622,35.695120],[-118.682093,35.694492],[-118.682563,35.693708],[-118.685073,35.693551],[-118.685386,35.692924],[-118.686170,35.692610],[-118.686641,35.692453],[-118.687268,35.691983],[-118.687739,35.691042],[-118.687425,35.690101],[-118.687582,35.689787],[-118.687582,35.689474],[-118.687739,35.688846],[-118.688837,35.687748],[-118.689464,35.687435],[-118.690091,35.687435],[-118.690876,35.687591],[-118.691346,35.687278],[-118.691974,35.687435],[-118.693071,35.687435],[-118.693542,35.686807],[-118.694797,35.686964],[-118.696365,35.686494],[-118.697463,35.685709],[-118.698090,35.685396],[-118.698561,35.684925],[-118.699345,35.684611],[-118.699972,35.684611],[-118.700600,35.684925],[-118.701854,35.683984],[-118.702952,35.683827],[-118.703423,35.683514],[-118.703737,35.683043],[-118.704364,35.682729],[-118.704678,35.682259],[-118.704991,35.682259],[-118.707187,35.682102],[-118.707658,35.682102],[-118.707814,35.682259],[-118.707814,35.683043],[-118.707971,35.683670],[-118.709226,35.683984],[-118.709853,35.683984],[-118.710010,35.683043],[-118.710324,35.682729],[-118.711422,35.682573],[-118.713618,35.682886],[-118.714245,35.682886],[-118.715343,35.682259],[-118.715813,35.681631],[-118.715970,35.681475],[-118.715656,35.680690],[-118.715813,35.680377],[-118.716284,35.680220],[-118.717068,35.680377],[-118.718009,35.680377],[-118.718793,35.680063],[-118.719107,35.679436],[-118.718793,35.678965],[-118.718950,35.677867],[-118.719264,35.677554],[-118.719734,35.677554],[-118.720205,35.677710],[-118.720832,35.677397],[-118.721146,35.677083],[-118.721460,35.676613],[-118.722087,35.675672],[-118.722244,35.675515],[-118.721930,35.675358],[-118.721930,35.674887],[-118.722244,35.673789],[-118.722087,35.673633],[-118.725694,35.673476],[-118.726322,35.673946],[-118.727419,35.674103],[-118.729458,35.673319],[-118.729929,35.673319],[-118.731027,35.673633],[-118.734007,35.673946],[-118.735732,35.673946],[-118.736987,35.674260],[-118.739810,35.673005],[-118.740437,35.672535],[-118.743260,35.669555],[-118.744986,35.668457],[-118.745770,35.667673],[-118.746397,35.665634],[-118.746397,35.665006],[-118.745927,35.663752],[-118.745142,35.663124],[-118.744986,35.662967],[-118.745299,35.662654],[-118.746397,35.661870],[-118.747338,35.660772],[-118.748279,35.660458],[-118.749534,35.660929],[-118.750004,35.660929],[-118.752357,35.659674],[-118.754867,35.659203],[-118.755808,35.658105],[-118.759415,35.655282],[-118.763963,35.653714],[-118.768355,35.653087],[-118.769296,35.652773],[-118.769453,35.653243],[-118.771021,35.653871],[-118.772119,35.654812],[-118.773531,35.654812],[-118.773531,35.655596],[-118.773217,35.656380],[-118.772590,35.656851],[-118.771178,35.657321],[-118.770080,35.657321],[-118.769296,35.657164],[-118.769139,35.657635],[-118.768825,35.657949],[-118.766159,35.658890],[-118.763336,35.660301],[-118.762865,35.660772],[-118.762238,35.661870],[-118.762238,35.662811],[-118.762238,35.663438],[-118.762709,35.664379],[-118.762709,35.664693],[-118.761611,35.666261],[-118.761297,35.667359],[-118.760670,35.668143],[-118.760826,35.668614],[-118.761140,35.669241],[-118.762395,35.669398],[-118.762709,35.669712],[-118.762709,35.670025],[-118.763336,35.669868],[-118.765375,35.670182],[-118.765689,35.665947],[-118.766473,35.659046],[-118.787333,35.658576],[-118.798311,35.658733],[-118.799409,35.658890],[-118.799096,35.663281],[-118.799096,35.665947],[-118.809447,35.666261],[-118.809918,35.665634],[-118.809761,35.665320],[-118.810859,35.665634],[-118.812427,35.665634],[-118.816819,35.664379],[-118.816819,35.659360],[-118.843168,35.659203],[-118.843638,35.659831],[-118.843952,35.660929],[-118.845050,35.662340],[-118.845677,35.664536],[-118.847402,35.665947],[-118.848030,35.667045],[-118.849441,35.668614],[-118.848343,35.668457],[-118.845834,35.668614],[-118.844109,35.669084],[-118.843795,35.668927],[-118.840972,35.668614],[-118.840815,35.668771],[-118.840972,35.669084],[-118.840972,35.669398],[-118.840501,35.670025],[-118.838149,35.670339],[-118.837365,35.671123],[-118.837365,35.671751],[-118.837051,35.672064],[-118.835483,35.673319],[-118.833757,35.674103],[-118.832816,35.674260],[-118.831091,35.675044],[-118.829836,35.675358],[-118.828425,35.676926],[-118.827954,35.677397],[-118.827170,35.677554],[-118.825758,35.677554],[-118.824190,35.677867],[-118.822308,35.677554],[-118.821994,35.677867],[-118.821681,35.678652],[-118.820426,35.679593],[-118.817760,35.679593],[-118.817289,35.679906],[-118.816034,35.681475],[-118.816034,35.682886],[-118.815407,35.683670],[-118.815877,35.683984],[-118.815877,35.684298],[-118.815250,35.684925],[-118.813525,35.685082],[-118.813054,35.685396],[-118.813054,35.685866],[-118.812741,35.686023],[-118.811329,35.685866],[-118.810545,35.686180],[-118.810231,35.686807],[-118.810074,35.686964],[-118.809290,35.686650],[-118.808506,35.687278],[-118.806624,35.686964],[-118.804114,35.687905],[-118.803958,35.688532],[-118.803330,35.688689],[-118.803017,35.689317],[-118.802546,35.689630],[-118.802703,35.690885],[-118.803017,35.691512],[-118.803644,35.691669],[-118.803017,35.691826],[-118.802860,35.692140],[-118.802546,35.693081],[-118.802546,35.694336],[-118.801605,35.694806],[-118.801448,35.695120],[-118.800664,35.695590],[-118.800507,35.696845],[-118.800193,35.697316],[-118.799096,35.697786],[-118.797841,35.697472],[-118.797057,35.698413],[-118.796272,35.698727],[-118.796116,35.699041],[-118.794861,35.699668],[-118.793606,35.699511],[-118.792351,35.699982],[-118.790626,35.700139],[-118.789685,35.700766],[-118.788901,35.701864],[-118.788901,35.702178],[-118.789215,35.703119],[-118.788430,35.705628],[-118.788274,35.707353],[-118.789215,35.708451],[-118.789371,35.709863],[-118.789842,35.710804],[-118.789842,35.711274],[-118.788744,35.712215],[-118.788117,35.712529],[-118.787176,35.712686],[-118.785921,35.712529],[-118.787333,35.713156],[-118.788430,35.713156],[-118.789058,35.714411],[-118.789685,35.714568],[-118.789999,35.715195],[-118.790156,35.715352],[-118.791254,35.715509],[-118.791254,35.716764],[-118.791724,35.717077],[-118.791567,35.717705],[-118.791881,35.718175],[-118.793763,35.719273],[-118.794861,35.719587],[-118.795802,35.719587],[-118.796743,35.720214],[-118.797841,35.720214],[-118.798154,35.719744],[-118.798625,35.719587],[-118.798939,35.719901],[-118.799096,35.720214],[-118.799566,35.720685],[-118.799880,35.720685],[-118.800350,35.720214],[-118.800664,35.720214],[-118.800978,35.720371],[-118.800978,35.720998],[-118.801605,35.721155],[-118.802076,35.720842],[-118.802076,35.720371],[-118.802232,35.720057],[-118.804428,35.719116],[-118.804899,35.719116],[-118.805369,35.719587],[-118.805683,35.719587],[-118.806467,35.719116],[-118.807251,35.719116],[-118.807722,35.718489],[-118.808506,35.718489],[-118.808820,35.718332],[-118.808663,35.717862],[-118.808976,35.717705],[-118.809290,35.717705],[-118.810074,35.718175],[-118.810388,35.718018],[-118.811800,35.718960],[-118.812113,35.719587],[-118.811800,35.720214],[-118.809133,35.722724],[-118.808820,35.723194],[-118.808820,35.723665],[-118.809604,35.724292],[-118.809918,35.725390],[-118.820740,35.729468],[-118.820426,35.730095],[-118.821210,35.730095],[-118.821681,35.730723],[-118.822465,35.730409],[-118.823719,35.731350],[-118.824504,35.731350],[-118.825288,35.731507],[-118.826856,35.732761],[-118.827640,35.733546],[-118.828111,35.734487],[-118.828582,35.734800],[-118.830934,35.735114],[-118.832032,35.735585],[-118.832973,35.735585],[-118.834385,35.734957],[-118.834698,35.734016],[-118.835012,35.733859],[-118.835796,35.733389],[-118.836267,35.733389],[-118.836894,35.733232],[-118.838149,35.732291],[-118.838933,35.732605],[-118.839717,35.731664],[-118.841129,35.731507],[-118.842697,35.730095],[-118.843011,35.729468],[-118.843168,35.728527],[-118.843168,35.727899],[-118.842697,35.726958],[-118.843952,35.725076],[-118.843325,35.722567],[-118.842697,35.721783],[-118.843952,35.720214],[-118.844893,35.718332],[-118.845677,35.717705],[-118.846148,35.717391],[-118.846305,35.716764],[-118.846932,35.716293],[-118.847559,35.715509],[-118.849128,35.713941],[-118.849441,35.713627],[-118.851167,35.713627],[-118.852735,35.713000],[-118.855558,35.712686],[-118.856499,35.712843],[-118.858538,35.713627],[-118.860106,35.713941],[-118.860734,35.714254],[-118.861361,35.714882],[-118.861361,35.715352],[-118.861361,35.716450],[-118.860734,35.717862],[-118.857754,35.723351],[-118.856185,35.725547],[-118.856029,35.725860],[-118.856029,35.727115],[-118.856499,35.728370],[-118.859009,35.730723],[-118.859479,35.731193],[-118.859950,35.733232],[-118.859165,35.734487],[-118.859165,35.736682],[-118.859793,35.737310],[-118.862302,35.738094],[-118.863086,35.740133],[-118.863714,35.741074],[-118.864184,35.742172],[-118.865125,35.743113],[-118.865439,35.744054],[-118.867635,35.745309],[-118.868419,35.746563],[-118.869203,35.747504],[-118.869674,35.748289],[-118.853362,35.742015],[-118.852735,35.743113],[-118.851010,35.745309],[-118.848814,35.748602],[-118.847716,35.749073],[-118.847089,35.749700],[-118.843952,35.751425],[-118.842540,35.753621],[-118.840815,35.755503],[-118.839404,35.757856],[-118.839560,35.759424],[-118.838933,35.760679],[-118.838619,35.760836],[-118.836110,35.760522],[-118.835326,35.760679],[-118.835012,35.760993],[-118.833130,35.761463],[-118.832816,35.761777],[-118.832973,35.763659],[-118.832659,35.764600],[-118.831875,35.765071],[-118.831405,35.765698],[-118.831248,35.766168],[-118.830620,35.766796],[-118.830150,35.766953],[-118.829993,35.767423],[-118.829366,35.767737],[-118.828895,35.767580],[-118.828582,35.767737],[-118.828425,35.768207],[-118.827954,35.768835],[-118.827954,35.769305],[-118.829366,35.770089],[-118.830620,35.771031],[-118.830934,35.772285],[-118.830777,35.773226],[-118.830934,35.773540],[-118.832189,35.774011],[-118.834071,35.774638],[-118.834228,35.774795],[-118.833914,35.775422],[-118.834698,35.775736],[-118.835953,35.775265],[-118.835953,35.776520],[-118.835483,35.777147],[-118.835639,35.777461],[-118.836267,35.777304],[-118.836737,35.776834],[-118.837365,35.776834],[-118.837678,35.777147],[-118.838776,35.777461],[-118.839560,35.778245],[-118.840658,35.779029],[-118.838619,35.781853],[-118.838462,35.783578],[-118.837521,35.785930],[-118.836580,35.786715],[-118.835796,35.787185],[-118.834228,35.787028],[-118.833130,35.787499],[-118.831875,35.788754],[-118.831248,35.790165],[-118.830934,35.790322],[-118.829836,35.790165],[-118.829052,35.790479],[-118.757062,35.790165]]]}}
,{"id":93245,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-119.959087,36.313542],[-119.959558,36.329696],[-119.959715,36.360907],[-119.960028,36.375023],[-119.960028,36.379101],[-119.959244,36.386315],[-119.943717,36.386315],[-119.942305,36.386159],[-119.941207,36.385845],[-119.940423,36.385374],[-119.932424,36.379101],[-119.927876,36.379258],[-119.927876,36.383179],[-119.926308,36.383179],[-119.925523,36.383806],[-119.925210,36.384120],[-119.926621,36.383963],[-119.927562,36.383649],[-119.927876,36.383806],[-119.927719,36.384433],[-119.925367,36.385218],[-119.925210,36.385531],[-119.925210,36.386159],[-119.925523,36.386159],[-119.926778,36.385218],[-119.927249,36.385374],[-119.927406,36.385688],[-119.927562,36.386002],[-119.927249,36.386472],[-119.926308,36.386786],[-119.925994,36.387257],[-119.926464,36.387570],[-119.927406,36.387257],[-119.927719,36.387570],[-119.927406,36.388041],[-119.927249,36.388198],[-119.925994,36.388511],[-119.926151,36.388825],[-119.926935,36.389139],[-119.927092,36.389923],[-119.925367,36.389766],[-119.924112,36.388825],[-119.924112,36.397922],[-119.923171,36.396040],[-119.921916,36.394314],[-119.919877,36.392746],[-119.918779,36.392275],[-119.917211,36.392432],[-119.914701,36.393530],[-119.910310,36.393373],[-119.907800,36.392119],[-119.906703,36.391334],[-119.903566,36.388982],[-119.902625,36.387884],[-119.901527,36.387100],[-119.897920,36.385061],[-119.896978,36.384747],[-119.893057,36.383963],[-119.888823,36.383492],[-119.887411,36.383492],[-119.878785,36.386002],[-119.875648,36.386629],[-119.870316,36.385688],[-119.870629,36.385531],[-119.871257,36.385688],[-119.870316,36.385531],[-119.868120,36.384904],[-119.865924,36.383963],[-119.864669,36.383022],[-119.863728,36.382865],[-119.862317,36.382708],[-119.860278,36.383022],[-119.856670,36.385374],[-119.855259,36.385845],[-119.853534,36.386002],[-119.850397,36.385688],[-119.848985,36.386002],[-119.847887,36.386786],[-119.847103,36.387884],[-119.846319,36.388511],[-119.843339,36.390080],[-119.842712,36.390393],[-119.841927,36.390393],[-119.840359,36.390237],[-119.839104,36.389452],[-119.837693,36.388982],[-119.836752,36.388982],[-119.834556,36.388982],[-119.834242,36.388668],[-119.833144,36.388198],[-119.830478,36.387884],[-119.829067,36.386472],[-119.828126,36.385845],[-119.826087,36.385688],[-119.825146,36.385218],[-119.825146,36.387727],[-119.822322,36.387100],[-119.820284,36.387570],[-119.818401,36.387570],[-119.818401,36.384120],[-119.816676,36.384120],[-119.815892,36.384277],[-119.811657,36.386315],[-119.809618,36.386629],[-119.809462,36.386472],[-119.809462,36.385374],[-119.798640,36.385061],[-119.797071,36.385218],[-119.796757,36.385061],[-119.795660,36.384120],[-119.794875,36.383963],[-119.792993,36.384433],[-119.793150,36.385218],[-119.793150,36.386315],[-119.792052,36.386472],[-119.791111,36.387100],[-119.788445,36.386943],[-119.787818,36.386786],[-119.787504,36.386472],[-119.786876,36.386159],[-119.786563,36.386159],[-119.784367,36.385531],[-119.781387,36.385374],[-119.780289,36.385061],[-119.779034,36.385688],[-119.776839,36.385845],[-119.773702,36.386786],[-119.772604,36.387257],[-119.771820,36.388668],[-119.771349,36.387884],[-119.770565,36.387570],[-119.769310,36.386472],[-119.770251,36.385218],[-119.771506,36.384277],[-119.771820,36.383806],[-119.771506,36.382865],[-119.771349,36.382081],[-119.771663,36.381453],[-119.772604,36.380512],[-119.774486,36.379415],[-119.774016,36.379258],[-119.772604,36.379885],[-119.770879,36.381924],[-119.768683,36.382394],[-119.763194,36.382238],[-119.762723,36.342557],[-119.744686,36.342557],[-119.744843,36.338950],[-119.735903,36.338950],[-119.736060,36.328128],[-119.726807,36.328128],[-119.726963,36.313542],[-119.721788,36.313542],[-119.719435,36.313855],[-119.718337,36.313698],[-119.716455,36.313542],[-119.716455,36.313071],[-119.715828,36.313071],[-119.715671,36.312757],[-119.715044,36.310091],[-119.715200,36.307738],[-119.715357,36.307268],[-119.727120,36.304445],[-119.726963,36.283742],[-119.735903,36.284056],[-119.736060,36.276841],[-119.726963,36.276998],[-119.726650,36.240140],[-119.744530,36.240297],[-119.744373,36.189167],[-119.780289,36.189481],[-119.780289,36.196695],[-119.798169,36.196695],[-119.798169,36.204067],[-119.804286,36.204067],[-119.804913,36.204224],[-119.805227,36.204067],[-119.808677,36.204067],[-119.816049,36.204067],[-119.816049,36.206106],[-119.816519,36.206576],[-119.817147,36.204694],[-119.817931,36.203126],[-119.822636,36.196695],[-119.833929,36.196852],[-119.834085,36.226181],[-119.836438,36.225868],[-119.847887,36.225554],[-119.848515,36.226025],[-119.851652,36.226025],[-119.851965,36.238729],[-119.855416,36.237944],[-119.855416,36.238886],[-119.856200,36.239042],[-119.858396,36.238572],[-119.858866,36.238415],[-119.860121,36.239199],[-119.860748,36.239983],[-119.861219,36.241081],[-119.861219,36.240768],[-119.859650,36.238415],[-119.859494,36.237631],[-119.859650,36.235435],[-119.861062,36.232926],[-119.861376,36.231357],[-119.861062,36.230730],[-119.860278,36.229946],[-119.858866,36.226025],[-119.872982,36.226025],[-119.872041,36.189794],[-119.871884,36.189481],[-119.874237,36.189481],[-119.883333,36.189324],[-119.883490,36.189794],[-119.883647,36.193559],[-119.883647,36.195284],[-119.883333,36.195598],[-119.883490,36.196068],[-119.905448,36.196068],[-119.905134,36.220692],[-119.923171,36.206733],[-119.923014,36.255197],[-119.904977,36.255354],[-119.904977,36.255511],[-119.905134,36.263196],[-119.912976,36.263039],[-119.914074,36.263353],[-119.914858,36.264137],[-119.915799,36.265548],[-119.918152,36.269940],[-119.917995,36.270097],[-119.917211,36.270254],[-119.905134,36.270254],[-119.896194,36.269940],[-119.879099,36.269940],[-119.877687,36.288447],[-119.872511,36.289702],[-119.872511,36.290015],[-119.867492,36.290643],[-119.865297,36.290800],[-119.865140,36.290172],[-119.864983,36.289859],[-119.864199,36.289545],[-119.863571,36.290172],[-119.863101,36.290329],[-119.862630,36.290172],[-119.862630,36.289859],[-119.863258,36.288761],[-119.863258,36.287977],[-119.862317,36.286722],[-119.861376,36.286408],[-119.861219,36.286565],[-119.861062,36.287192],[-119.860435,36.287349],[-119.860121,36.287192],[-119.859807,36.286722],[-119.859650,36.285624],[-119.859964,36.284683],[-119.860591,36.283428],[-119.859964,36.282487],[-119.859964,36.282173],[-119.860278,36.281546],[-119.860278,36.281232],[-119.860121,36.281076],[-119.859023,36.280919],[-119.858866,36.280762],[-119.858709,36.280135],[-119.859180,36.276057],[-119.860121,36.273861],[-119.860278,36.271351],[-119.859964,36.270881],[-119.859180,36.270410],[-119.858709,36.269626],[-119.858082,36.268215],[-119.858082,36.267587],[-119.858553,36.267587],[-119.859180,36.267744],[-119.859807,36.267744],[-119.860121,36.267587],[-119.860278,36.266960],[-119.859807,36.266176],[-119.858553,36.265548],[-119.858553,36.265235],[-119.859180,36.264764],[-119.859180,36.264294],[-119.858866,36.264137],[-119.857455,36.264294],[-119.856984,36.263980],[-119.856670,36.263509],[-119.856670,36.263039],[-119.857768,36.261784],[-119.858082,36.260843],[-119.857925,36.260373],[-119.837693,36.269313],[-119.836909,36.269626],[-119.836281,36.269626],[-119.835183,36.270097],[-119.834870,36.288447],[-119.835340,36.288761],[-119.835654,36.288604],[-119.835811,36.287977],[-119.836124,36.287820],[-119.837693,36.287977],[-119.837693,36.295034],[-119.834713,36.295505],[-119.834870,36.313385],[-119.868277,36.313855],[-119.867963,36.314639],[-119.867963,36.315267],[-119.868590,36.316051],[-119.868747,36.316678],[-119.868747,36.317619],[-119.868434,36.318090],[-119.868434,36.318560],[-119.868747,36.319658],[-119.868590,36.320443],[-119.866865,36.321854],[-119.865924,36.321697],[-119.865140,36.322168],[-119.864826,36.324050],[-119.864669,36.324520],[-119.863415,36.324677],[-119.862944,36.324834],[-119.862160,36.325618],[-119.857298,36.327187],[-119.856514,36.327657],[-119.856200,36.328285],[-119.856200,36.328598],[-119.869218,36.328598],[-119.869218,36.321227],[-119.880510,36.321227],[-119.879412,36.321697],[-119.878158,36.322638],[-119.877060,36.324520],[-119.876903,36.326716],[-119.875805,36.327657],[-119.875021,36.328598],[-119.875334,36.328598],[-119.875491,36.328128],[-119.878001,36.326246],[-119.877687,36.324677],[-119.878001,36.323736],[-119.879099,36.322325],[-119.880197,36.321540],[-119.882079,36.320756],[-119.883020,36.320129],[-119.883333,36.319658],[-119.883177,36.317933],[-119.884902,36.319031],[-119.888980,36.320286],[-119.890234,36.320756],[-119.890705,36.321227],[-119.891960,36.322481],[-119.892901,36.324834],[-119.892116,36.328128],[-119.893057,36.330323],[-119.893214,36.331108],[-119.892587,36.333303],[-119.892430,36.334088],[-119.892587,36.337068],[-119.892901,36.337852],[-119.893685,36.339263],[-119.894312,36.340989],[-119.895096,36.343498],[-119.895253,36.343498],[-119.895253,36.343812],[-119.895567,36.344596],[-119.896194,36.345694],[-119.896978,36.349929],[-119.897606,36.350870],[-119.898233,36.352438],[-119.897606,36.357614],[-119.897292,36.365769],[-119.896351,36.367495],[-119.895096,36.368906],[-119.893999,36.369847],[-119.887254,36.374082],[-119.887254,36.374552],[-119.895096,36.369377],[-119.896978,36.367024],[-119.897449,36.365769],[-119.897606,36.358555],[-119.898233,36.354320],[-119.898390,36.352752],[-119.904193,36.356359],[-119.905605,36.356673],[-119.906389,36.357771],[-119.907173,36.358398],[-119.915015,36.362476],[-119.915799,36.363260],[-119.919563,36.368279],[-119.923171,36.369063],[-119.923328,36.369220],[-119.929288,36.369220],[-119.932424,36.370318],[-119.932268,36.350085],[-119.923955,36.350085],[-119.923955,36.347105],[-119.929758,36.347105],[-119.930072,36.346949],[-119.929915,36.337695],[-119.930229,36.336597],[-119.929915,36.336440],[-119.929758,36.329696],[-119.931327,36.329226],[-119.931797,36.328755],[-119.932111,36.328285],[-119.931797,36.301308],[-119.931797,36.300681],[-119.932581,36.299896],[-119.933052,36.299583],[-119.933993,36.299426],[-119.934150,36.299112],[-119.934934,36.299269],[-119.935561,36.299269],[-119.935718,36.299112],[-119.958930,36.299112],[-119.959087,36.313542]]]}}
,{"id":93266,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-119.990299,36.137723],[-119.977281,36.137723],[-119.977124,36.168150],[-119.959244,36.181325],[-119.958930,36.181482],[-119.959087,36.182266],[-119.958930,36.196068],[-119.941207,36.196068],[-119.941207,36.193245],[-119.941051,36.192774],[-119.945285,36.189324],[-119.945128,36.189324],[-119.941051,36.189324],[-119.941364,36.166739],[-119.923328,36.166896],[-119.923171,36.189324],[-119.905448,36.189324],[-119.905605,36.152153],[-119.905605,36.137723],[-119.949991,36.137723],[-119.949834,36.123137],[-119.967870,36.123294],[-119.967870,36.123137],[-119.967714,36.101336],[-119.958930,36.101180],[-119.958930,36.094592],[-119.958774,36.094279],[-119.967714,36.094279],[-119.967714,36.086750],[-119.976653,36.087064],[-119.976810,36.094279],[-119.985593,36.094279],[-119.985593,36.101336],[-119.976810,36.101336],[-119.976653,36.115923],[-119.985750,36.116079],[-119.985750,36.123137],[-119.990299,36.123137],[-119.990299,36.137723]]],[[[-119.874237,36.189481],[-119.871884,36.189481],[-119.872041,36.189794],[-119.872982,36.226025],[-119.858866,36.226025],[-119.860278,36.229946],[-119.861062,36.230730],[-119.861376,36.231357],[-119.861062,36.232926],[-119.859650,36.235435],[-119.859494,36.237631],[-119.859650,36.238415],[-119.861219,36.240768],[-119.861219,36.241081],[-119.860748,36.239983],[-119.860121,36.239199],[-119.858866,36.238415],[-119.858396,36.238572],[-119.856200,36.239042],[-119.855416,36.238886],[-119.855416,36.237944],[-119.851965,36.238729],[-119.851652,36.226025],[-119.848515,36.226025],[-119.847887,36.225554],[-119.836438,36.225868],[-119.834085,36.226181],[-119.833929,36.196852],[-119.822636,36.196695],[-119.817931,36.203126],[-119.817147,36.204694],[-119.816519,36.206576],[-119.816049,36.206106],[-119.816049,36.204067],[-119.808677,36.204067],[-119.805227,36.204067],[-119.804913,36.204224],[-119.804286,36.204067],[-119.798169,36.204067],[-119.798169,36.196695],[-119.780289,36.196695],[-119.780289,36.189481],[-119.744373,36.189167],[-119.744373,36.142115],[-119.750960,36.143683],[-119.769154,36.147604],[-119.779976,36.150898],[-119.780132,36.138037],[-119.824832,36.138037],[-119.826557,36.136626],[-119.829694,36.137880],[-119.831419,36.137723],[-119.860905,36.137880],[-119.861062,36.110433],[-119.860905,36.109022],[-119.860435,36.108708],[-119.860278,36.079379],[-119.860278,36.049736],[-119.878158,36.049736],[-119.878158,36.079222],[-119.878471,36.092240],[-119.878314,36.108865],[-119.878628,36.109022],[-119.895567,36.109022],[-119.896351,36.116550],[-119.893214,36.121726],[-119.896351,36.121726],[-119.896978,36.131136],[-119.896978,36.137880],[-119.878471,36.138037],[-119.851652,36.160936],[-119.851652,36.167366],[-119.876276,36.167209],[-119.876432,36.181011],[-119.874080,36.181168],[-119.874080,36.187442],[-119.874237,36.189481]]]]}}
,{"id":93202,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-119.715357,36.307268],[-119.715200,36.307738],[-119.715044,36.310091],[-119.715671,36.312757],[-119.715828,36.313071],[-119.716455,36.313071],[-119.716455,36.313542],[-119.718337,36.313698],[-119.718024,36.313698],[-119.718024,36.317149],[-119.715514,36.317149],[-119.715671,36.318247],[-119.713946,36.318247],[-119.713946,36.319031],[-119.711907,36.318874],[-119.711907,36.319501],[-119.709397,36.319501],[-119.709711,36.319815],[-119.708927,36.319658],[-119.708927,36.322481],[-119.707358,36.322325],[-119.707358,36.320286],[-119.705947,36.320286],[-119.706104,36.316208],[-119.702967,36.316835],[-119.702967,36.321854],[-119.697007,36.321854],[-119.698732,36.320129],[-119.699203,36.319188],[-119.699203,36.317306],[-119.699673,36.317306],[-119.699516,36.316678],[-119.697634,36.316835],[-119.698889,36.316365],[-119.701085,36.315894],[-119.701242,36.313542],[-119.701869,36.313542],[-119.701869,36.315894],[-119.705790,36.315267],[-119.705476,36.313542],[-119.702026,36.313542],[-119.702026,36.311189],[-119.703594,36.310718],[-119.703594,36.310562],[-119.703751,36.310562],[-119.703281,36.310248],[-119.702026,36.310248],[-119.702026,36.305700],[-119.713162,36.305856],[-119.713789,36.305700],[-119.715514,36.305700],[-119.715514,36.306797],[-119.715357,36.307268]]]}}
,{"id":95485,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.865654,39.127729],[-122.862517,39.126004],[-122.859851,39.124279],[-122.860321,39.121926],[-122.862047,39.122083],[-122.862360,39.120985],[-122.863615,39.121142],[-122.866909,39.122553],[-122.868948,39.123494],[-122.869732,39.123494],[-122.871143,39.123024],[-122.872398,39.124279],[-122.872555,39.127572],[-122.865654,39.127729]]],[[[-123.006026,39.235949],[-122.994890,39.235949],[-122.994420,39.243321],[-122.994734,39.245830],[-122.994734,39.249437],[-122.994263,39.249908],[-122.994420,39.256809],[-123.001164,39.256809],[-123.003673,39.257436],[-123.004458,39.278139],[-123.019671,39.277982],[-123.019671,39.317663],[-123.019514,39.316722],[-123.019671,39.316408],[-123.019514,39.315781],[-123.018260,39.315467],[-123.018103,39.314840],[-123.017162,39.314212],[-123.015750,39.312801],[-123.014652,39.312487],[-123.012770,39.312644],[-123.012457,39.312487],[-123.012300,39.311860],[-123.011986,39.311703],[-123.011202,39.312017],[-123.010418,39.312017],[-123.008849,39.311389],[-123.008222,39.311232],[-123.006183,39.309507],[-123.004301,39.309194],[-123.003203,39.309194],[-123.002576,39.309507],[-123.002105,39.310605],[-123.001791,39.310919],[-123.001007,39.310919],[-122.999125,39.310762],[-122.998498,39.310919],[-122.998341,39.311389],[-122.997557,39.312017],[-122.996773,39.312017],[-122.996459,39.312330],[-122.995988,39.312330],[-122.995361,39.312801],[-122.994263,39.312801],[-122.993636,39.312487],[-122.993008,39.312487],[-122.992224,39.312958],[-122.992067,39.312801],[-122.992538,39.312174],[-122.993322,39.311860],[-122.994420,39.311076],[-122.990342,39.310919],[-122.988146,39.310605],[-122.987676,39.310135],[-122.987205,39.310291],[-122.986735,39.309978],[-122.986264,39.310448],[-122.985323,39.310291],[-122.984382,39.309507],[-122.983912,39.310135],[-122.983755,39.309821],[-122.984068,39.309350],[-122.985166,39.309507],[-122.985637,39.309350],[-122.986107,39.309037],[-122.986264,39.308409],[-122.986892,39.308252],[-122.987519,39.307625],[-122.987676,39.307311],[-122.985951,39.307155],[-122.983755,39.307311],[-122.982814,39.306998],[-122.982500,39.307155],[-122.982500,39.307782],[-122.982030,39.307939],[-122.981402,39.307939],[-122.980932,39.308409],[-122.980147,39.308409],[-122.979363,39.307782],[-122.979206,39.307782],[-122.979050,39.307939],[-122.978736,39.308723],[-122.978265,39.308880],[-122.977481,39.309350],[-122.977011,39.309507],[-122.975756,39.309194],[-122.975599,39.309194],[-122.976070,39.310291],[-122.977167,39.311860],[-122.977011,39.312330],[-122.976383,39.312644],[-122.974972,39.312644],[-122.974501,39.312958],[-122.974344,39.313428],[-122.974344,39.313585],[-122.975285,39.313742],[-122.975285,39.313899],[-122.975285,39.314056],[-122.974344,39.313899],[-122.973560,39.313115],[-122.972933,39.313115],[-122.972462,39.313428],[-122.972462,39.313742],[-122.972776,39.314056],[-122.973090,39.314056],[-122.973403,39.313585],[-122.973717,39.313585],[-122.974031,39.314526],[-122.974501,39.314997],[-122.974344,39.315310],[-122.974658,39.315467],[-122.974658,39.315938],[-122.974972,39.316251],[-122.974187,39.317036],[-122.974815,39.318918],[-122.974815,39.319545],[-122.974658,39.320172],[-122.975129,39.321427],[-122.974658,39.322368],[-122.974344,39.322682],[-122.974344,39.322995],[-122.973717,39.323623],[-122.973717,39.324407],[-122.973246,39.325505],[-122.972933,39.324721],[-122.971521,39.324250],[-122.971364,39.323623],[-122.971208,39.323309],[-122.969325,39.323466],[-122.967914,39.323466],[-122.967287,39.322995],[-122.966502,39.323152],[-122.964777,39.321741],[-122.964777,39.321270],[-122.964463,39.320486],[-122.963993,39.320643],[-122.963209,39.321113],[-122.962581,39.321113],[-122.961170,39.319545],[-122.961013,39.319074],[-122.960072,39.318918],[-122.959444,39.318133],[-122.959444,39.317977],[-122.959915,39.317506],[-122.959758,39.317349],[-122.959601,39.317192],[-122.957719,39.317820],[-122.957876,39.318604],[-122.957876,39.319859],[-122.958347,39.320486],[-122.958660,39.321270],[-122.958503,39.321898],[-122.958190,39.322368],[-122.957562,39.321898],[-122.956308,39.321741],[-122.955523,39.321270],[-122.955837,39.321113],[-122.957249,39.321113],[-122.957562,39.320957],[-122.957562,39.320643],[-122.956308,39.320016],[-122.956151,39.319231],[-122.955523,39.318918],[-122.954896,39.318918],[-122.954582,39.318447],[-122.953798,39.318290],[-122.953641,39.317977],[-122.953485,39.317349],[-122.952857,39.317349],[-122.951602,39.316565],[-122.951132,39.316722],[-122.950975,39.316565],[-122.949564,39.316408],[-122.948466,39.316722],[-122.947995,39.316722],[-122.947525,39.317192],[-122.946427,39.317192],[-122.946427,39.317663],[-122.946584,39.318290],[-122.946270,39.318604],[-122.945643,39.318290],[-122.945329,39.317820],[-122.944231,39.318133],[-122.944231,39.318133],[-122.944701,39.318604],[-122.945015,39.320329],[-122.946584,39.322211],[-122.946897,39.323152],[-122.946584,39.322995],[-122.945799,39.322368],[-122.945015,39.322054],[-122.944701,39.321270],[-122.944231,39.320957],[-122.943917,39.320172],[-122.943760,39.320016],[-122.942663,39.320016],[-122.942349,39.320486],[-122.941878,39.320329],[-122.941408,39.320643],[-122.940467,39.320643],[-122.939996,39.320643],[-122.939212,39.320172],[-122.939369,39.319859],[-122.938742,39.319388],[-122.938585,39.318604],[-122.939369,39.318290],[-122.939526,39.317977],[-122.939996,39.317820],[-122.939839,39.317506],[-122.939839,39.317349],[-122.941565,39.316565],[-122.941565,39.316251],[-122.941408,39.315938],[-122.941094,39.315938],[-122.940467,39.316251],[-122.939055,39.316095],[-122.939212,39.315467],[-122.937957,39.315153],[-122.938114,39.314526],[-122.938428,39.314056],[-122.938428,39.313742],[-122.938114,39.313585],[-122.937801,39.313585],[-122.937487,39.314056],[-122.937173,39.314056],[-122.936703,39.313428],[-122.936546,39.312801],[-122.935762,39.312958],[-122.935134,39.313428],[-122.934821,39.313428],[-122.934507,39.313271],[-122.934350,39.312958],[-122.933566,39.312958],[-122.933252,39.312801],[-122.933252,39.313428],[-122.933723,39.313742],[-122.933409,39.314212],[-122.933566,39.314683],[-122.932938,39.315467],[-122.932625,39.315781],[-122.932311,39.316251],[-122.931841,39.316408],[-122.931056,39.317192],[-122.930272,39.317192],[-122.929802,39.316879],[-122.929331,39.316879],[-122.929174,39.317036],[-122.929645,39.317349],[-122.929174,39.317663],[-122.928547,39.317036],[-122.927449,39.316722],[-122.926822,39.316095],[-122.926351,39.316095],[-122.926037,39.315938],[-122.924626,39.315781],[-122.923999,39.315467],[-122.923999,39.315310],[-122.924469,39.314526],[-122.924312,39.314369],[-122.923685,39.314840],[-122.922901,39.315938],[-122.921960,39.316565],[-122.921175,39.316722],[-122.919607,39.315938],[-122.915529,39.315781],[-122.914118,39.314997],[-122.912706,39.314997],[-122.912079,39.314683],[-122.910040,39.314369],[-122.909569,39.314212],[-122.909256,39.313742],[-122.909256,39.313115],[-122.908315,39.312644],[-122.907844,39.312174],[-122.907217,39.312017],[-122.906746,39.311703],[-122.906589,39.311546],[-122.904707,39.311389],[-122.903139,39.311546],[-122.901257,39.311232],[-122.899061,39.311232],[-122.897336,39.311546],[-122.895610,39.312487],[-122.892003,39.313585],[-122.890121,39.314056],[-122.884318,39.314526],[-122.883691,39.314840],[-122.883063,39.314683],[-122.882750,39.314526],[-122.881181,39.314369],[-122.880083,39.314056],[-122.879142,39.313115],[-122.878515,39.312801],[-122.877260,39.312801],[-122.876633,39.312958],[-122.873182,39.312644],[-122.872712,39.312644],[-122.872241,39.312958],[-122.871457,39.310919],[-122.870516,39.309664],[-122.870045,39.309507],[-122.868007,39.309507],[-122.869104,39.308566],[-122.870202,39.308409],[-122.871457,39.308096],[-122.871771,39.307782],[-122.872555,39.307311],[-122.874123,39.307155],[-122.875378,39.306527],[-122.876790,39.306057],[-122.877731,39.305900],[-122.878201,39.305743],[-122.879142,39.305429],[-122.881024,39.305586],[-122.882436,39.305273],[-122.883063,39.304802],[-122.885416,39.304018],[-122.886827,39.304018],[-122.887925,39.303547],[-122.888709,39.303390],[-122.890278,39.302920],[-122.890748,39.302606],[-122.891689,39.302449],[-122.893258,39.301508],[-122.893885,39.300724],[-122.894826,39.300567],[-122.896081,39.301038],[-122.897022,39.300881],[-122.897336,39.300724],[-122.898120,39.300724],[-122.898434,39.301195],[-122.899061,39.301508],[-122.899531,39.301352],[-122.900316,39.301665],[-122.901884,39.301508],[-122.903139,39.301822],[-122.903766,39.302920],[-122.904394,39.303077],[-122.904550,39.303704],[-122.905021,39.304018],[-122.904864,39.304802],[-122.905178,39.305586],[-122.906903,39.305429],[-122.907373,39.305586],[-122.908315,39.306057],[-122.908942,39.306214],[-122.910510,39.305586],[-122.911451,39.305900],[-122.912392,39.305900],[-122.913804,39.306370],[-122.916627,39.306684],[-122.917725,39.306684],[-122.919293,39.305900],[-122.919293,39.306214],[-122.919921,39.306684],[-122.920078,39.307311],[-122.920862,39.306998],[-122.921960,39.306057],[-122.922430,39.306057],[-122.923528,39.305116],[-122.924783,39.305116],[-122.925410,39.305586],[-122.926822,39.305586],[-122.926979,39.305900],[-122.927292,39.306527],[-122.927920,39.306527],[-122.928704,39.306998],[-122.928861,39.306684],[-122.928390,39.306370],[-122.928076,39.305900],[-122.928076,39.305586],[-122.928390,39.305273],[-122.929174,39.305116],[-122.928547,39.304802],[-122.928704,39.304175],[-122.928233,39.303861],[-122.928704,39.302920],[-122.928076,39.302763],[-122.927606,39.302293],[-122.927449,39.302136],[-122.926979,39.301979],[-122.926822,39.300567],[-122.926508,39.300097],[-122.926665,39.299469],[-122.927292,39.299156],[-122.927920,39.299469],[-122.928390,39.299313],[-122.928547,39.298999],[-122.927920,39.298058],[-122.926508,39.297117],[-122.926508,39.296803],[-122.926979,39.296019],[-122.926979,39.295705],[-122.926822,39.294764],[-122.926194,39.294137],[-122.926037,39.293823],[-122.926037,39.292882],[-122.925567,39.292568],[-122.924469,39.292255],[-122.924312,39.292098],[-122.924469,39.291627],[-122.924469,39.290530],[-122.924940,39.289902],[-122.926194,39.289118],[-122.926508,39.288177],[-122.926979,39.287393],[-122.926979,39.286765],[-122.924783,39.287393],[-122.920548,39.290530],[-122.919764,39.290530],[-122.918823,39.290216],[-122.917725,39.289275],[-122.917411,39.288020],[-122.917882,39.286452],[-122.918980,39.284413],[-122.919293,39.283629],[-122.919607,39.283158],[-122.920391,39.282688],[-122.920705,39.282374],[-122.920548,39.282060],[-122.920234,39.281903],[-122.918352,39.282531],[-122.916941,39.282531],[-122.916313,39.283001],[-122.915372,39.282688],[-122.914745,39.283001],[-122.914588,39.282844],[-122.914274,39.282374],[-122.916157,39.280492],[-122.916313,39.280178],[-122.915372,39.280021],[-122.914431,39.279864],[-122.913490,39.280178],[-122.912706,39.280021],[-122.913020,39.278610],[-122.912863,39.277041],[-122.913177,39.275630],[-122.913647,39.275002],[-122.913490,39.273904],[-122.913647,39.273434],[-122.913804,39.272179],[-122.914118,39.271395],[-122.914274,39.270297],[-122.913961,39.269827],[-122.914118,39.269042],[-122.914902,39.268886],[-122.915215,39.268572],[-122.916000,39.268101],[-122.917098,39.267317],[-122.916313,39.267003],[-122.915215,39.267003],[-122.915059,39.266219],[-122.915372,39.264965],[-122.915059,39.264337],[-122.914588,39.263867],[-122.914118,39.263710],[-122.913804,39.263396],[-122.913490,39.263396],[-122.913333,39.264023],[-122.912392,39.264494],[-122.912079,39.265121],[-122.911294,39.265435],[-122.910197,39.265592],[-122.909883,39.265435],[-122.909256,39.264965],[-122.908158,39.263239],[-122.907687,39.263239],[-122.907060,39.264023],[-122.906903,39.264180],[-122.905962,39.264023],[-122.905648,39.263867],[-122.905335,39.263082],[-122.905021,39.262769],[-122.904550,39.261828],[-122.904550,39.261044],[-122.904237,39.260573],[-122.903609,39.260102],[-122.903609,39.259005],[-122.902825,39.258220],[-122.902668,39.257907],[-122.902982,39.257436],[-122.902982,39.257123],[-122.901727,39.256652],[-122.901257,39.256652],[-122.901100,39.256338],[-122.903139,39.254927],[-122.903139,39.253515],[-122.902825,39.253515],[-122.902511,39.253986],[-122.901414,39.254143],[-122.900629,39.254613],[-122.899218,39.254770],[-122.898434,39.254770],[-122.898590,39.254456],[-122.898434,39.253986],[-122.897806,39.253986],[-122.897022,39.253672],[-122.896395,39.253515],[-122.895924,39.253515],[-122.895767,39.253829],[-122.895610,39.253829],[-122.894042,39.253829],[-122.893415,39.254770],[-122.893101,39.255554],[-122.893101,39.256181],[-122.892317,39.257123],[-122.891533,39.258220],[-122.890435,39.258377],[-122.889494,39.259005],[-122.889494,39.259789],[-122.888866,39.259789],[-122.888239,39.260259],[-122.887141,39.259789],[-122.886827,39.259475],[-122.885729,39.259789],[-122.885416,39.259632],[-122.885102,39.259632],[-122.884788,39.260259],[-122.884318,39.260416],[-122.884004,39.260887],[-122.883534,39.261514],[-122.883534,39.262141],[-122.883063,39.262298],[-122.882906,39.263553],[-122.882122,39.263553],[-122.881808,39.264023],[-122.881338,39.264180],[-122.881024,39.265749],[-122.880867,39.266062],[-122.880711,39.266062],[-122.879613,39.265592],[-122.879299,39.264965],[-122.878358,39.264180],[-122.876946,39.262298],[-122.876633,39.261200],[-122.876162,39.259318],[-122.875064,39.258377],[-122.874594,39.257907],[-122.874123,39.257907],[-122.873182,39.258220],[-122.871928,39.258377],[-122.871143,39.257750],[-122.870202,39.257593],[-122.869889,39.257123],[-122.868007,39.257436],[-122.867065,39.256809],[-122.865027,39.256181],[-122.863301,39.256181],[-122.861576,39.254770],[-122.860792,39.254613],[-122.859851,39.254770],[-122.858753,39.253986],[-122.857812,39.252731],[-122.856557,39.252260],[-122.855773,39.251476],[-122.855146,39.250535],[-122.855459,39.250065],[-122.855302,39.249280],[-122.854361,39.248339],[-122.853891,39.247555],[-122.854048,39.246614],[-122.853891,39.245673],[-122.853891,39.245046],[-122.852166,39.243948],[-122.850597,39.243477],[-122.850127,39.243164],[-122.851381,39.242536],[-122.852009,39.241752],[-122.855302,39.240341],[-122.856557,39.240184],[-122.858596,39.240184],[-122.859851,39.239556],[-122.858126,39.239086],[-122.858439,39.238772],[-122.857812,39.237517],[-122.857498,39.237047],[-122.856714,39.236890],[-122.856243,39.237204],[-122.856400,39.237988],[-122.856087,39.238302],[-122.855146,39.238145],[-122.854832,39.238302],[-122.854361,39.238615],[-122.854361,39.239243],[-122.854205,39.239400],[-122.852479,39.239400],[-122.852009,39.239713],[-122.850440,39.240027],[-122.849813,39.240341],[-122.849499,39.240968],[-122.849656,39.241282],[-122.849343,39.241438],[-122.849186,39.241595],[-122.849343,39.242380],[-122.848558,39.240654],[-122.847931,39.239870],[-122.847931,39.239086],[-122.847147,39.238145],[-122.846990,39.237204],[-122.846519,39.236733],[-122.846519,39.234851],[-122.846676,39.234224],[-122.846676,39.232812],[-122.846990,39.232185],[-122.846206,39.231087],[-122.844637,39.230146],[-122.843383,39.229832],[-122.842912,39.229048],[-122.841657,39.228107],[-122.841344,39.227480],[-122.840559,39.226539],[-122.840089,39.226225],[-122.838677,39.226068],[-122.837423,39.224500],[-122.837109,39.224343],[-122.836168,39.224343],[-122.832874,39.223402],[-122.832247,39.222931],[-122.831463,39.222931],[-122.830835,39.222618],[-122.830051,39.221833],[-122.830051,39.221520],[-122.830992,39.221206],[-122.831933,39.220422],[-122.832090,39.219951],[-122.832561,39.219638],[-122.833031,39.219324],[-122.833815,39.219481],[-122.834443,39.219010],[-122.834600,39.218697],[-122.834286,39.218226],[-122.834286,39.217912],[-122.835541,39.216815],[-122.835854,39.215873],[-122.836011,39.215560],[-122.836952,39.214932],[-122.837893,39.214148],[-122.838207,39.213207],[-122.839305,39.212266],[-122.839148,39.211325],[-122.839932,39.211168],[-122.840246,39.210698],[-122.840089,39.210227],[-122.839775,39.209914],[-122.839932,39.209286],[-122.841344,39.208502],[-122.842598,39.208345],[-122.843226,39.207875],[-122.843226,39.207718],[-122.843383,39.207561],[-122.845735,39.206934],[-122.846206,39.206463],[-122.846206,39.205679],[-122.846363,39.205522],[-122.846833,39.205365],[-122.847617,39.206620],[-122.848088,39.206620],[-122.848245,39.205836],[-122.847931,39.205208],[-122.847931,39.204581],[-122.848245,39.204267],[-122.848245,39.202856],[-122.850127,39.202228],[-122.850597,39.201915],[-122.849970,39.202072],[-122.848715,39.202072],[-122.847304,39.202228],[-122.847147,39.202385],[-122.847304,39.202856],[-122.846990,39.203169],[-122.846676,39.202856],[-122.846676,39.202072],[-122.845578,39.201758],[-122.845265,39.202072],[-122.844480,39.202228],[-122.844324,39.202385],[-122.842912,39.203013],[-122.842598,39.203483],[-122.842598,39.203954],[-122.842128,39.203954],[-122.841187,39.203954],[-122.839932,39.203326],[-122.838521,39.202072],[-122.838207,39.201130],[-122.837579,39.200660],[-122.837109,39.200346],[-122.836168,39.200189],[-122.834600,39.200346],[-122.833658,39.200660],[-122.833188,39.201130],[-122.832561,39.201130],[-122.832404,39.201601],[-122.831463,39.201758],[-122.831463,39.202385],[-122.829267,39.202228],[-122.829894,39.202856],[-122.829737,39.203169],[-122.829581,39.203169],[-122.828326,39.203013],[-122.827542,39.202542],[-122.826601,39.202542],[-122.825816,39.201915],[-122.824405,39.202072],[-122.822836,39.201601],[-122.822680,39.202072],[-122.822209,39.202385],[-122.822209,39.202542],[-122.822836,39.203640],[-122.822836,39.203954],[-122.823150,39.204738],[-122.822052,39.205679],[-122.820484,39.206620],[-122.821268,39.206934],[-122.821268,39.207090],[-122.821111,39.207718],[-122.822209,39.208031],[-122.822366,39.208502],[-122.822366,39.208816],[-122.821739,39.209129],[-122.820954,39.209286],[-122.818915,39.210384],[-122.818602,39.210227],[-122.818445,39.210698],[-122.818602,39.210855],[-122.818602,39.211325],[-122.819386,39.211639],[-122.819072,39.212580],[-122.819857,39.212580],[-122.819857,39.213050],[-122.820484,39.213207],[-122.820641,39.213521],[-122.820798,39.214462],[-122.822680,39.215717],[-122.822836,39.216344],[-122.822523,39.216344],[-122.821895,39.217128],[-122.820484,39.217285],[-122.820327,39.217599],[-122.820170,39.217756],[-122.820170,39.218540],[-122.819700,39.219167],[-122.819543,39.220108],[-122.819072,39.220579],[-122.818445,39.220892],[-122.817818,39.221520],[-122.816720,39.221677],[-122.802447,39.238459],[-122.803075,39.241909],[-122.801977,39.242536],[-122.800251,39.243164],[-122.799624,39.243634],[-122.796487,39.243634],[-122.794135,39.243007],[-122.793507,39.241752],[-122.792096,39.240968],[-122.790841,39.239556],[-122.789586,39.239086],[-122.788018,39.239086],[-122.786920,39.238772],[-122.785038,39.238772],[-122.784724,39.238615],[-122.784254,39.237831],[-122.783470,39.237047],[-122.781274,39.236106],[-122.780960,39.235479],[-122.780490,39.235322],[-122.779705,39.235479],[-122.779078,39.235165],[-122.777196,39.234694],[-122.775628,39.233596],[-122.774373,39.233126],[-122.772961,39.232028],[-122.771863,39.231401],[-122.771236,39.230616],[-122.769354,39.229675],[-122.768256,39.229519],[-122.766374,39.229675],[-122.763864,39.229675],[-122.763394,39.229362],[-122.762610,39.229362],[-122.759002,39.228264],[-122.758532,39.228264],[-122.757591,39.228578],[-122.756493,39.228421],[-122.755081,39.228734],[-122.754611,39.228421],[-122.754140,39.228107],[-122.753984,39.227480],[-122.754140,39.227009],[-122.753984,39.226852],[-122.751945,39.226852],[-122.751317,39.227166],[-122.750533,39.227323],[-122.749906,39.227009],[-122.749435,39.227323],[-122.748965,39.227480],[-122.748494,39.227323],[-122.748337,39.227009],[-122.747710,39.226539],[-122.747396,39.225911],[-122.747083,39.225911],[-122.746612,39.226225],[-122.746455,39.227009],[-122.745828,39.227009],[-122.745357,39.226539],[-122.746612,39.224970],[-122.746142,39.224970],[-122.745357,39.224186],[-122.743946,39.223716],[-122.743789,39.223402],[-122.743789,39.223088],[-122.743318,39.222774],[-122.742691,39.221833],[-122.741593,39.221206],[-122.742377,39.220892],[-122.743475,39.220736],[-122.743789,39.220265],[-122.744259,39.220108],[-122.745514,39.219951],[-122.746612,39.220265],[-122.746455,39.220108],[-122.746612,39.219795],[-122.747867,39.219638],[-122.747396,39.220108],[-122.748180,39.219951],[-122.749435,39.220108],[-122.749749,39.219795],[-122.749592,39.219324],[-122.749906,39.219167],[-122.750219,39.219324],[-122.751788,39.219481],[-122.752258,39.219324],[-122.752258,39.218853],[-122.752101,39.218697],[-122.751788,39.217756],[-122.751788,39.217442],[-122.752258,39.217442],[-122.753042,39.216971],[-122.753513,39.217128],[-122.753513,39.217599],[-122.754140,39.217285],[-122.754454,39.217285],[-122.756022,39.218069],[-122.758846,39.218853],[-122.759316,39.219010],[-122.759630,39.219324],[-122.761041,39.220108],[-122.761198,39.220422],[-122.760885,39.220736],[-122.761982,39.221520],[-122.762296,39.222461],[-122.762610,39.222618],[-122.763551,39.222774],[-122.765903,39.222461],[-122.766217,39.222304],[-122.766217,39.221990],[-122.765903,39.221990],[-122.765119,39.221520],[-122.764492,39.221363],[-122.764492,39.221206],[-122.765276,39.220892],[-122.765747,39.220422],[-122.766688,39.219638],[-122.767472,39.218697],[-122.769511,39.218226],[-122.774373,39.217756],[-122.775941,39.216971],[-122.776882,39.216971],[-122.778137,39.216501],[-122.778764,39.216187],[-122.779862,39.216030],[-122.780803,39.215246],[-122.782058,39.214932],[-122.783783,39.213207],[-122.783940,39.212423],[-122.785038,39.210855],[-122.785822,39.210227],[-122.786920,39.209914],[-122.787861,39.208816],[-122.788175,39.208345],[-122.789273,39.208031],[-122.790371,39.208345],[-122.791782,39.207561],[-122.792409,39.206620],[-122.791312,39.206777],[-122.790841,39.206620],[-122.790527,39.205679],[-122.790684,39.205208],[-122.789743,39.204738],[-122.789743,39.204424],[-122.789900,39.203954],[-122.790841,39.203326],[-122.790998,39.201915],[-122.790214,39.201444],[-122.789743,39.201444],[-122.789116,39.200974],[-122.788645,39.201130],[-122.788645,39.201758],[-122.788018,39.202228],[-122.787704,39.202228],[-122.787077,39.201915],[-122.786136,39.201915],[-122.786293,39.201444],[-122.787234,39.201601],[-122.788018,39.201287],[-122.788175,39.200974],[-122.788175,39.200189],[-122.788645,39.199562],[-122.789116,39.199562],[-122.789273,39.200346],[-122.789900,39.200660],[-122.790998,39.200503],[-122.791625,39.200189],[-122.792880,39.200033],[-122.793037,39.199562],[-122.793194,39.199562],[-122.794448,39.200033],[-122.794762,39.199562],[-122.794605,39.198621],[-122.795703,39.199092],[-122.795860,39.199092],[-122.796174,39.198464],[-122.796174,39.197366],[-122.796330,39.197053],[-122.796801,39.197209],[-122.797428,39.196896],[-122.797585,39.196896],[-122.797585,39.197837],[-122.798213,39.198935],[-122.798683,39.199248],[-122.799938,39.198151],[-122.800879,39.197053],[-122.801820,39.197994],[-122.802134,39.197994],[-122.803075,39.197680],[-122.803859,39.196896],[-122.804486,39.197053],[-122.805270,39.196582],[-122.806525,39.196425],[-122.808721,39.195484],[-122.811073,39.195641],[-122.811544,39.195484],[-122.812014,39.195641],[-122.812171,39.195171],[-122.810760,39.192504],[-122.810603,39.192504],[-122.810446,39.192975],[-122.811230,39.194386],[-122.811073,39.194700],[-122.810917,39.194700],[-122.809819,39.194543],[-122.809348,39.194073],[-122.809035,39.193445],[-122.807466,39.192975],[-122.806055,39.192034],[-122.804329,39.191250],[-122.804172,39.191093],[-122.804016,39.190152],[-122.802761,39.188897],[-122.801036,39.189367],[-122.800879,39.189211],[-122.800879,39.188583],[-122.800565,39.188426],[-122.798840,39.189211],[-122.797742,39.189211],[-122.797271,39.189367],[-122.796644,39.189054],[-122.795860,39.188740],[-122.795703,39.188897],[-122.795703,39.189211],[-122.795389,39.189211],[-122.795076,39.188897],[-122.794448,39.188583],[-122.793664,39.188740],[-122.793037,39.188270],[-122.792566,39.187485],[-122.789586,39.185760],[-122.789273,39.185446],[-122.786920,39.184349],[-122.785508,39.184035],[-122.784254,39.183408],[-122.783783,39.183408],[-122.783626,39.183721],[-122.782999,39.183251],[-122.782372,39.183564],[-122.781744,39.183251],[-122.781274,39.183251],[-122.781901,39.182780],[-122.783783,39.182310],[-122.785979,39.180741],[-122.786763,39.179800],[-122.787077,39.179330],[-122.787704,39.178545],[-122.788018,39.178075],[-122.788018,39.177761],[-122.788488,39.177291],[-122.788802,39.176193],[-122.789429,39.175409],[-122.788959,39.174624],[-122.789116,39.174154],[-122.789116,39.173840],[-122.788175,39.173056],[-122.786606,39.172586],[-122.786606,39.172272],[-122.787234,39.171488],[-122.786606,39.171017],[-122.785508,39.170547],[-122.785665,39.169919],[-122.785352,39.169606],[-122.785352,39.169135],[-122.785508,39.168978],[-122.786136,39.168665],[-122.785822,39.167880],[-122.785979,39.167253],[-122.785822,39.166626],[-122.786136,39.166155],[-122.786763,39.165841],[-122.787861,39.166312],[-122.788175,39.166782],[-122.788332,39.166782],[-122.789273,39.166469],[-122.789273,39.166312],[-122.788645,39.165841],[-122.788332,39.165371],[-122.789900,39.165528],[-122.790527,39.165371],[-122.790841,39.166155],[-122.791468,39.166155],[-122.791782,39.165841],[-122.792253,39.164900],[-122.792880,39.164430],[-122.793350,39.163332],[-122.794135,39.162861],[-122.795703,39.162077],[-122.796801,39.161920],[-122.797271,39.161607],[-122.797271,39.160823],[-122.797585,39.160666],[-122.799467,39.160352],[-122.799781,39.160038],[-122.799938,39.159411],[-122.800251,39.159254],[-122.800722,39.159254],[-122.801506,39.159411],[-122.802134,39.158940],[-122.803702,39.158940],[-122.804172,39.158470],[-122.805114,39.158313],[-122.805584,39.157999],[-122.807623,39.157529],[-122.809976,39.157843],[-122.811073,39.158470],[-122.811544,39.158627],[-122.812328,39.158313],[-122.812328,39.157843],[-122.812328,39.157843],[-122.812799,39.157999],[-122.813269,39.157843],[-122.814053,39.157843],[-122.814681,39.158940],[-122.815308,39.159097],[-122.815622,39.159568],[-122.816092,39.159568],[-122.816720,39.159881],[-122.818131,39.159568],[-122.820013,39.159725],[-122.820484,39.159411],[-122.821268,39.159725],[-122.821895,39.159254],[-122.822993,39.159254],[-122.823778,39.159254],[-122.825189,39.159725],[-122.827071,39.159568],[-122.828326,39.160195],[-122.829894,39.160195],[-122.832090,39.160823],[-122.832404,39.161136],[-122.832561,39.162077],[-122.833972,39.162234],[-122.834913,39.161764],[-122.835541,39.160979],[-122.836011,39.160823],[-122.836168,39.160038],[-122.837109,39.159411],[-122.839305,39.158784],[-122.841657,39.158784],[-122.841971,39.158627],[-122.842755,39.158313],[-122.842912,39.157686],[-122.844324,39.157843],[-122.844951,39.157686],[-122.845578,39.157215],[-122.846990,39.157529],[-122.847304,39.158156],[-122.847931,39.158156],[-122.850754,39.157372],[-122.853107,39.157058],[-122.853891,39.156588],[-122.856087,39.155960],[-122.857028,39.155960],[-122.857812,39.156274],[-122.857498,39.155804],[-122.856871,39.155490],[-122.856400,39.155019],[-122.855302,39.154863],[-122.854989,39.154392],[-122.853891,39.153922],[-122.853891,39.152667],[-122.853734,39.152196],[-122.851695,39.150785],[-122.850440,39.149216],[-122.850284,39.148432],[-122.849813,39.148118],[-122.849343,39.147177],[-122.848872,39.146864],[-122.847617,39.146393],[-122.846833,39.145138],[-122.845735,39.144041],[-122.844951,39.143413],[-122.843383,39.142629],[-122.842598,39.142315],[-122.841500,39.142315],[-122.840559,39.141688],[-122.840873,39.141845],[-122.841030,39.141531],[-122.841344,39.141688],[-122.841344,39.141217],[-122.841814,39.141531],[-122.842128,39.141374],[-122.842128,39.141061],[-122.842442,39.140904],[-122.841657,39.140120],[-122.841187,39.139963],[-122.842442,39.139335],[-122.843539,39.139335],[-122.844951,39.139649],[-122.846676,39.140433],[-122.847304,39.141061],[-122.848558,39.141531],[-122.849186,39.142315],[-122.850440,39.142786],[-122.852636,39.144668],[-122.853264,39.144982],[-122.852479,39.143100],[-122.851852,39.142786],[-122.852636,39.142786],[-122.853420,39.143413],[-122.854048,39.142472],[-122.855459,39.140747],[-122.855616,39.140747],[-122.855773,39.141217],[-122.856087,39.141531],[-122.857655,39.141374],[-122.857185,39.142002],[-122.857185,39.142786],[-122.857498,39.142943],[-122.857969,39.142629],[-122.858439,39.142158],[-122.859537,39.141688],[-122.861106,39.141531],[-122.861262,39.141531],[-122.861419,39.141374],[-122.861733,39.141061],[-122.862203,39.141217],[-122.862988,39.141217],[-122.863615,39.141688],[-122.863458,39.141217],[-122.864086,39.139335],[-122.864242,39.139022],[-122.864870,39.139022],[-122.865183,39.138551],[-122.864870,39.138708],[-122.865497,39.138394],[-122.874437,39.141531],[-122.874437,39.142315],[-122.876790,39.142315],[-122.879770,39.143413],[-122.880083,39.143256],[-122.880397,39.143570],[-122.880554,39.143256],[-122.880711,39.143256],[-122.881181,39.143256],[-122.881338,39.143570],[-122.881495,39.143413],[-122.881652,39.142943],[-122.881338,39.142315],[-122.879613,39.142315],[-122.880867,39.142158],[-122.880867,39.141688],[-122.882279,39.141688],[-122.882750,39.141531],[-122.880397,39.137924],[-122.877887,39.139335],[-122.877731,39.139022],[-122.876476,39.137767],[-122.875221,39.137296],[-122.872869,39.137924],[-122.870830,39.138081],[-122.870045,39.138081],[-122.870045,39.137453],[-122.869889,39.132434],[-122.870359,39.132434],[-122.870830,39.130395],[-122.870673,39.130395],[-122.874908,39.125377],[-122.876319,39.122867],[-122.876946,39.121142],[-122.877574,39.120515],[-122.878358,39.119887],[-122.879299,39.119573],[-122.885729,39.118476],[-122.886514,39.118162],[-122.886984,39.118632],[-122.887612,39.118476],[-122.889807,39.120671],[-122.892944,39.122867],[-122.894513,39.124592],[-122.898747,39.127729],[-122.898120,39.128043],[-122.898904,39.128043],[-122.899375,39.128200],[-122.899688,39.129768],[-122.898590,39.129768],[-122.897963,39.128670],[-122.897806,39.128827],[-122.897963,39.129141],[-122.899218,39.132121],[-122.900159,39.133375],[-122.900943,39.133846],[-122.901727,39.133846],[-122.902198,39.133689],[-122.902825,39.133375],[-122.903139,39.133219],[-122.904080,39.133846],[-122.904080,39.133532],[-122.904237,39.133375],[-122.905335,39.133219],[-122.906119,39.132905],[-122.906432,39.133219],[-122.906746,39.133689],[-122.906746,39.134003],[-122.905805,39.134944],[-122.903139,39.135101],[-122.902668,39.135101],[-122.902825,39.135571],[-122.902198,39.135101],[-122.902198,39.135728],[-122.902668,39.136669],[-122.903609,39.137453],[-122.903923,39.137924],[-122.904550,39.139806],[-122.905491,39.141061],[-122.906119,39.142943],[-122.906589,39.143727],[-122.908628,39.145452],[-122.910197,39.146080],[-122.911608,39.147021],[-122.911608,39.144825],[-122.911765,39.144354],[-122.911451,39.143256],[-122.911451,39.142315],[-122.908315,39.139806],[-122.908471,39.139179],[-122.907530,39.139022],[-122.907844,39.138237],[-122.908785,39.138394],[-122.908942,39.137767],[-122.909883,39.137610],[-122.909569,39.136512],[-122.910040,39.136512],[-122.915529,39.136355],[-122.914902,39.136826],[-122.913961,39.137140],[-122.913961,39.137453],[-122.914902,39.138081],[-122.914902,39.138237],[-122.914431,39.138708],[-122.914118,39.138865],[-122.913804,39.139179],[-122.913804,39.139649],[-122.911608,39.139806],[-122.918823,39.147021],[-122.919450,39.148118],[-122.919764,39.149687],[-122.916313,39.147962],[-122.911765,39.147177],[-122.912706,39.147962],[-122.914745,39.148275],[-122.915529,39.149059],[-122.917254,39.150942],[-122.917882,39.151726],[-122.918195,39.153294],[-122.918509,39.153922],[-122.920234,39.155804],[-122.920391,39.156117],[-122.920234,39.156901],[-122.920862,39.157529],[-122.920862,39.156431],[-122.922273,39.156431],[-122.923685,39.156274],[-122.924469,39.156588],[-122.924940,39.156745],[-122.925096,39.156901],[-122.925881,39.156274],[-122.926194,39.155647],[-122.926665,39.155176],[-122.932154,39.155019],[-122.933566,39.155176],[-122.933880,39.155647],[-122.934350,39.156588],[-122.935291,39.157843],[-122.935762,39.157999],[-122.936703,39.157999],[-122.937173,39.157843],[-122.937957,39.156588],[-122.939212,39.155960],[-122.940310,39.155019],[-122.941094,39.154706],[-122.942506,39.154863],[-122.942976,39.155019],[-122.943760,39.155960],[-122.944858,39.156274],[-122.946427,39.156588],[-122.947054,39.156901],[-122.947525,39.157058],[-122.948309,39.156745],[-122.949093,39.157058],[-122.949407,39.157215],[-122.949877,39.158313],[-122.951916,39.160666],[-122.953798,39.162391],[-122.959915,39.161920],[-122.965718,39.163175],[-122.967757,39.163959],[-122.969012,39.164744],[-122.970266,39.165371],[-122.972149,39.165685],[-122.973246,39.165685],[-122.974815,39.165998],[-122.975442,39.165998],[-122.976226,39.165371],[-122.977324,39.165214],[-122.978422,39.164744],[-122.979834,39.164273],[-122.980147,39.163802],[-122.980461,39.162548],[-122.980147,39.161920],[-122.980304,39.161450],[-122.979991,39.160979],[-122.979991,39.160666],[-122.980461,39.160666],[-122.981402,39.160823],[-122.981716,39.160038],[-122.982186,39.159725],[-122.983127,39.160038],[-122.985166,39.160195],[-122.989715,39.156745],[-122.991910,39.156274],[-122.992538,39.156274],[-122.992538,39.156117],[-122.991440,39.156274],[-122.991126,39.155647],[-122.991283,39.155333],[-122.992067,39.155176],[-122.992224,39.154706],[-122.992538,39.154549],[-122.991910,39.154549],[-122.991440,39.154863],[-122.991440,39.154706],[-122.991910,39.154392],[-122.992851,39.154078],[-122.991440,39.153922],[-122.991126,39.152980],[-122.990342,39.151883],[-122.990342,39.151412],[-122.990342,39.151098],[-122.989715,39.150785],[-122.989715,39.149844],[-122.987833,39.146707],[-122.987989,39.146080],[-122.987676,39.145923],[-122.987205,39.145138],[-122.986264,39.144511],[-122.986264,39.143727],[-122.985480,39.143570],[-122.985323,39.143256],[-122.984539,39.142629],[-122.984382,39.142472],[-123.015280,39.142629],[-123.015437,39.151726],[-123.027827,39.151726],[-123.031434,39.151726],[-123.032532,39.153137],[-123.033159,39.153451],[-123.033630,39.153765],[-123.034571,39.155333],[-123.034571,39.155960],[-123.034885,39.156274],[-123.034885,39.155490],[-123.035355,39.155176],[-123.035198,39.154549],[-123.035512,39.154078],[-123.035042,39.152824],[-123.035198,39.152667],[-123.035198,39.152353],[-123.035355,39.152039],[-123.035355,39.151726],[-123.039276,39.151726],[-123.039433,39.152196],[-123.039747,39.152824],[-123.040374,39.153294],[-123.041158,39.153137],[-123.041472,39.153765],[-123.041786,39.153922],[-123.041002,39.155804],[-123.043668,39.157372],[-123.044295,39.158470],[-123.044766,39.159568],[-123.045079,39.159881],[-123.045550,39.160038],[-123.045864,39.160509],[-123.046020,39.161293],[-123.045864,39.162234],[-123.046491,39.163489],[-123.047275,39.163959],[-123.048373,39.164430],[-123.049157,39.164430],[-123.050255,39.165214],[-123.051196,39.165528],[-123.052137,39.166155],[-123.052921,39.166312],[-123.053392,39.166782],[-123.054176,39.166782],[-123.055588,39.167253],[-123.056058,39.167723],[-123.056372,39.168194],[-123.056529,39.168821],[-123.057156,39.170233],[-123.057940,39.170233],[-123.058724,39.170860],[-123.059195,39.171174],[-123.059666,39.171017],[-123.060293,39.171488],[-123.061234,39.171958],[-123.061391,39.172272],[-123.061704,39.172429],[-123.063116,39.172586],[-123.064371,39.172586],[-123.064841,39.172899],[-123.065155,39.173056],[-123.065312,39.173683],[-123.055117,39.173527],[-123.054490,39.173683],[-123.045864,39.173527],[-123.045393,39.180584],[-123.040845,39.180741],[-123.040060,39.192504],[-123.034885,39.192347],[-123.034101,39.199719],[-123.029709,39.199562],[-123.028768,39.206777],[-123.024376,39.207090],[-123.024063,39.213678],[-123.021083,39.213678],[-123.020769,39.220736],[-123.012457,39.221049],[-123.012770,39.236263],[-123.006026,39.235949]],[[-122.975599,39.197053],[-122.976540,39.198778],[-122.977952,39.198935],[-122.978422,39.199405],[-122.979520,39.200033],[-122.980932,39.201915],[-122.982030,39.202385],[-122.983127,39.203483],[-122.985166,39.203483],[-122.995988,39.204267],[-122.998968,39.204581],[-122.999282,39.203797],[-122.999909,39.203169],[-123.000380,39.203169],[-123.001478,39.203326],[-123.001948,39.203326],[-123.001791,39.202856],[-123.001164,39.202385],[-123.001007,39.201444],[-123.000850,39.201130],[-122.999909,39.200974],[-122.998968,39.200503],[-122.997086,39.199719],[-122.996773,39.199405],[-122.996773,39.199092],[-122.997400,39.198778],[-122.997714,39.198464],[-122.997714,39.197523],[-122.997400,39.196896],[-122.998498,39.196268],[-122.998811,39.195798],[-122.999909,39.195955],[-123.000694,39.195798],[-123.000537,39.195327],[-123.001478,39.194386],[-123.001791,39.194230],[-123.001635,39.193759],[-123.001164,39.193132],[-123.000066,39.192504],[-122.999596,39.192504],[-122.999282,39.192034],[-122.996145,39.191877],[-122.994890,39.190936],[-122.994890,39.190779],[-122.995518,39.190779],[-122.995518,39.190622],[-122.995047,39.190622],[-122.994263,39.190152],[-122.993636,39.189995],[-122.992851,39.189524],[-122.992224,39.188897],[-122.992224,39.188270],[-122.991754,39.188113],[-122.991126,39.187485],[-122.989401,39.186387],[-122.988774,39.185760],[-122.988617,39.184976],[-122.988774,39.184976],[-122.988930,39.184976],[-122.989244,39.184662],[-122.989558,39.183564],[-122.989401,39.183408],[-122.988146,39.182780],[-122.987205,39.182780],[-122.984696,39.181996],[-122.984225,39.181996],[-122.983912,39.181996],[-122.982971,39.181055],[-122.982500,39.180741],[-122.982971,39.180271],[-122.983441,39.180584],[-122.983755,39.180271],[-122.983441,39.179957],[-122.983127,39.179487],[-122.982030,39.179016],[-122.981245,39.178075],[-122.980461,39.177604],[-122.979991,39.177134],[-122.980304,39.177134],[-122.980775,39.177448],[-122.981402,39.177291],[-122.982657,39.177918],[-122.982186,39.177448],[-122.981873,39.177291],[-122.981716,39.176820],[-122.981245,39.176507],[-122.981402,39.176350],[-122.981088,39.176036],[-122.980618,39.175722],[-122.981088,39.175252],[-122.980461,39.174781],[-122.980304,39.173370],[-122.979520,39.169606],[-122.978579,39.168665],[-122.978265,39.166782],[-122.976854,39.165685],[-122.974344,39.166626],[-122.972776,39.166626],[-122.970580,39.166312],[-122.967757,39.164900],[-122.966816,39.164744],[-122.965718,39.165057],[-122.959444,39.168821],[-122.955523,39.173056],[-122.954739,39.173840],[-122.953328,39.174468],[-122.952230,39.174781],[-122.950975,39.174938],[-122.950034,39.174938],[-122.942035,39.173213],[-122.942035,39.173840],[-122.943290,39.175722],[-122.941878,39.176820],[-122.940467,39.177448],[-122.958033,39.193445],[-122.959131,39.194073],[-122.961797,39.196582],[-122.968071,39.199405],[-122.969325,39.198307],[-122.974501,39.198621],[-122.974658,39.197994],[-122.975442,39.197523],[-122.975599,39.197053]]]]}}
,{"id":96130,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-120.948437,40.304660],[-120.949221,40.304660],[-120.950319,40.304503],[-120.952828,40.303719],[-120.957220,40.304032],[-120.957377,40.304817],[-120.958318,40.305444],[-120.958788,40.306071],[-120.959259,40.307169],[-120.959415,40.307796],[-120.958631,40.309365],[-120.958161,40.309835],[-120.957377,40.315795],[-120.956436,40.317207],[-120.992979,40.315168],[-120.993293,40.316266],[-120.994234,40.318305],[-120.994234,40.319716],[-120.993920,40.325049],[-120.991725,40.336341],[-120.989529,40.336341],[-120.989999,40.335871],[-120.988274,40.334146],[-120.983726,40.331166],[-120.983098,40.331009],[-120.981530,40.335557],[-120.980275,40.337126],[-120.977766,40.339008],[-120.970551,40.343556],[-120.965219,40.349359],[-120.963650,40.351869],[-120.962552,40.352967],[-120.960670,40.354378],[-120.955651,40.355790],[-120.955181,40.356260],[-120.954710,40.357515],[-120.954397,40.357358],[-120.954553,40.355790],[-120.954083,40.355005],[-120.953456,40.353437],[-120.952828,40.352810],[-120.951417,40.352496],[-120.950476,40.352653],[-120.946711,40.355162],[-120.945614,40.355633],[-120.944672,40.355633],[-120.941849,40.355005],[-120.940751,40.354221],[-120.940751,40.353280],[-120.940595,40.352810],[-120.938869,40.350614],[-120.936046,40.346066],[-120.935105,40.344968],[-120.933850,40.344497],[-120.931341,40.343870],[-120.930557,40.343870],[-120.929773,40.344183],[-120.927577,40.346066],[-120.926165,40.346379],[-120.926008,40.345281],[-120.925538,40.344497],[-120.924283,40.344027],[-120.924283,40.343399],[-120.922087,40.341988],[-120.920833,40.340890],[-120.920519,40.340733],[-120.920519,40.340419],[-120.899659,40.349202],[-120.900757,40.350928],[-120.904992,40.350928],[-120.907344,40.350771],[-120.909070,40.350928],[-120.908599,40.351712],[-120.908285,40.352967],[-120.907972,40.353751],[-120.908756,40.355162],[-120.908913,40.355633],[-120.907658,40.356574],[-120.906090,40.359083],[-120.905462,40.359554],[-120.904992,40.360652],[-120.905149,40.360965],[-120.905933,40.361436],[-120.906874,40.362220],[-120.907031,40.362847],[-120.907658,40.363945],[-120.906874,40.363945],[-120.906247,40.363475],[-120.904835,40.362847],[-120.904521,40.362847],[-120.902012,40.364102],[-120.899659,40.366141],[-120.897464,40.367396],[-120.895895,40.367239],[-120.894954,40.367553],[-120.894170,40.367553],[-120.892601,40.367239],[-120.891504,40.367396],[-120.890249,40.367396],[-120.889621,40.367710],[-120.889465,40.368494],[-120.889308,40.368651],[-120.888210,40.367866],[-120.888053,40.367396],[-120.887583,40.367239],[-120.886485,40.367553],[-120.885073,40.367239],[-120.884446,40.367239],[-120.883975,40.367553],[-120.883505,40.368180],[-120.882877,40.368337],[-120.882407,40.368807],[-120.881309,40.368651],[-120.880838,40.368494],[-120.880368,40.367866],[-120.879741,40.367866],[-120.877858,40.368807],[-120.877545,40.369278],[-120.877545,40.369748],[-120.876290,40.370689],[-120.875820,40.370533],[-120.875820,40.369748],[-120.875035,40.368964],[-120.874408,40.368651],[-120.873467,40.368494],[-120.872212,40.368023],[-120.872683,40.366925],[-120.873467,40.366612],[-120.873310,40.366298],[-120.872840,40.365200],[-120.872526,40.364730],[-120.870644,40.363789],[-120.870801,40.363161],[-120.870487,40.362377],[-120.870644,40.361436],[-120.869703,40.360965],[-120.868919,40.360495],[-120.868134,40.360495],[-120.865311,40.361436],[-120.864841,40.361279],[-120.863900,40.361593],[-120.857469,40.362534],[-120.858097,40.362220],[-120.863900,40.361436],[-120.864841,40.361279],[-120.865939,40.360495],[-120.868448,40.357515],[-120.869703,40.356888],[-120.871428,40.356260],[-120.871428,40.355633],[-120.872683,40.354849],[-120.872840,40.354692],[-120.872369,40.353594],[-120.871585,40.352653],[-120.871271,40.352025],[-120.870644,40.351084],[-120.870957,40.350928],[-120.871899,40.350457],[-120.872212,40.349516],[-120.871742,40.348261],[-120.871271,40.347320],[-120.871271,40.347163],[-120.871742,40.347007],[-120.872526,40.347163],[-120.873624,40.347007],[-120.873781,40.347163],[-120.873781,40.348104],[-120.874251,40.348889],[-120.875820,40.349673],[-120.876290,40.349673],[-120.876604,40.349359],[-120.877074,40.348889],[-120.877545,40.348575],[-120.878015,40.347948],[-120.878172,40.347634],[-120.877702,40.346536],[-120.877858,40.346222],[-120.879427,40.345438],[-120.879741,40.345125],[-120.879897,40.344654],[-120.879427,40.343713],[-120.879741,40.343399],[-120.880211,40.343399],[-120.880838,40.342929],[-120.881779,40.343242],[-120.882093,40.343556],[-120.883034,40.344027],[-120.884916,40.344027],[-120.886642,40.344497],[-120.886955,40.344340],[-120.886955,40.342615],[-120.885544,40.340576],[-120.885857,40.339478],[-120.885857,40.337910],[-120.885544,40.337126],[-120.885230,40.336655],[-120.886014,40.335871],[-120.886014,40.335400],[-120.885073,40.334146],[-120.884289,40.333361],[-120.882564,40.332734],[-120.881152,40.332577],[-120.880525,40.331793],[-120.879741,40.331636],[-120.879584,40.331636],[-120.879741,40.331009],[-120.879584,40.330695],[-120.879427,40.330225],[-120.878956,40.329911],[-120.879113,40.329284],[-120.878956,40.328970],[-120.878956,40.328186],[-120.879270,40.327558],[-120.879741,40.327245],[-120.880211,40.326460],[-120.880211,40.325049],[-120.879897,40.324265],[-120.880368,40.323794],[-120.880682,40.322853],[-120.881309,40.322539],[-120.881309,40.321442],[-120.881779,40.320657],[-120.883662,40.320344],[-120.884446,40.322069],[-120.884132,40.322696],[-120.884916,40.322539],[-120.885700,40.322069],[-120.886798,40.322383],[-120.888210,40.322539],[-120.889935,40.322069],[-120.891190,40.322696],[-120.892445,40.323794],[-120.893856,40.323951],[-120.895268,40.324578],[-120.895895,40.324422],[-120.896679,40.323481],[-120.897464,40.323010],[-120.897934,40.323167],[-120.898405,40.323637],[-120.899189,40.323481],[-120.900287,40.324108],[-120.901071,40.323794],[-120.901541,40.323010],[-120.902169,40.322696],[-120.902953,40.322696],[-120.903737,40.322853],[-120.905462,40.322696],[-120.905619,40.322383],[-120.906090,40.321598],[-120.906874,40.320657],[-120.906247,40.320187],[-120.906247,40.319560],[-120.905776,40.318932],[-120.906090,40.318618],[-120.906560,40.318305],[-120.906247,40.317677],[-120.906247,40.317521],[-120.907972,40.317677],[-120.909227,40.316893],[-120.911736,40.316893],[-120.912834,40.316266],[-120.915500,40.314384],[-120.916441,40.314384],[-120.917382,40.314854],[-120.918010,40.314697],[-120.919578,40.313913],[-120.922715,40.311404],[-120.922872,40.310933],[-120.921303,40.309522],[-120.920990,40.308894],[-120.921303,40.307483],[-120.921460,40.307326],[-120.921303,40.306071],[-120.921931,40.305287],[-120.921774,40.304973],[-120.921774,40.304503],[-120.920519,40.302621],[-120.920362,40.301993],[-120.921303,40.301209],[-120.921146,40.300739],[-120.921931,40.299954],[-120.921931,40.299798],[-120.921617,40.299484],[-120.922087,40.299327],[-120.923028,40.299327],[-120.924911,40.298543],[-120.926008,40.297445],[-120.926636,40.297445],[-120.927734,40.297759],[-120.928518,40.297602],[-120.929145,40.297602],[-120.930714,40.297916],[-120.932439,40.298857],[-120.936360,40.301523],[-120.938242,40.303091],[-120.938713,40.303405],[-120.948437,40.304660]]],[[[-121.097906,40.574582],[-121.096337,40.572073],[-121.094769,40.570191],[-121.094769,40.568779],[-121.096180,40.568936],[-121.097435,40.569249],[-121.097278,40.568779],[-121.097435,40.568308],[-121.098690,40.566583],[-121.098376,40.564544],[-121.098690,40.563760],[-121.098690,40.561878],[-121.097592,40.560623],[-121.098062,40.559682],[-121.101356,40.559682],[-121.102611,40.559055],[-121.097749,40.544939],[-121.097435,40.544626],[-121.096965,40.544312],[-121.095082,40.543998],[-121.094298,40.543214],[-121.093200,40.533960],[-121.092887,40.532549],[-121.082849,40.509964],[-121.082378,40.509650],[-121.082378,40.508866],[-121.081908,40.507768],[-121.081280,40.507141],[-121.079242,40.505886],[-121.078771,40.505259],[-121.076575,40.495064],[-121.076262,40.494593],[-121.075164,40.493652],[-121.074693,40.491927],[-121.074693,40.491300],[-121.076105,40.490045],[-121.076418,40.489261],[-121.076418,40.488790],[-121.075477,40.486281],[-121.076418,40.485026],[-121.077203,40.484712],[-121.077516,40.483928],[-121.077987,40.483458],[-121.078457,40.483144],[-121.080496,40.483301],[-121.081124,40.482987],[-121.081437,40.482830],[-121.081594,40.481419],[-121.082065,40.480791],[-121.082849,40.480321],[-121.084260,40.479850],[-121.087397,40.479537],[-121.088652,40.478753],[-121.088652,40.478282],[-121.088495,40.478125],[-121.087084,40.477811],[-121.086613,40.477498],[-121.086613,40.476714],[-121.087084,40.476086],[-121.087554,40.476086],[-121.087868,40.475929],[-121.087554,40.475773],[-121.086770,40.475145],[-121.084731,40.474832],[-121.083319,40.474047],[-121.088966,40.472636],[-121.090064,40.471852],[-121.091161,40.471067],[-121.092102,40.470283],[-121.097906,40.469028],[-121.101042,40.468715],[-121.104963,40.468715],[-121.106375,40.469028],[-121.106375,40.469342],[-121.105904,40.469969],[-121.105277,40.470440],[-121.105277,40.470754],[-121.108100,40.472165],[-121.108571,40.472636],[-121.108414,40.473106],[-121.109355,40.473420],[-121.110296,40.473420],[-121.110923,40.473106],[-121.111864,40.472165],[-121.112492,40.471067],[-121.113903,40.469813],[-121.114060,40.469185],[-121.114844,40.468872],[-121.115785,40.468558],[-121.117197,40.468715],[-121.119393,40.469499],[-121.120177,40.469342],[-121.120804,40.469028],[-121.121902,40.467617],[-121.122373,40.466676],[-121.122059,40.466362],[-121.123157,40.465892],[-121.123627,40.465735],[-121.125980,40.466205],[-121.126764,40.465578],[-121.126451,40.465264],[-121.126451,40.464951],[-121.125353,40.464166],[-121.125353,40.463853],[-121.124725,40.463382],[-121.123941,40.463068],[-121.123314,40.462441],[-121.123157,40.461814],[-121.122686,40.461343],[-121.122216,40.461186],[-121.120961,40.461186],[-121.121118,40.461030],[-121.121745,40.459461],[-121.122216,40.458991],[-121.123471,40.458050],[-121.124882,40.457579],[-121.124725,40.456638],[-121.125509,40.455697],[-121.125980,40.456011],[-121.126451,40.456168],[-121.128646,40.456168],[-121.129430,40.456011],[-121.130215,40.456011],[-121.134920,40.456011],[-121.135704,40.456168],[-121.176796,40.457422],[-121.186834,40.472479],[-121.206282,40.479537],[-121.206282,40.479066],[-121.206753,40.478909],[-121.208008,40.480321],[-121.208164,40.480635],[-121.231063,40.496632],[-121.223064,40.510434],[-121.215536,40.515296],[-121.213026,40.514669],[-121.211772,40.514983],[-121.211301,40.514826],[-121.210517,40.513885],[-121.210360,40.512787],[-121.211301,40.511532],[-121.210988,40.510434],[-121.210517,40.509493],[-121.208949,40.509964],[-121.207537,40.510121],[-121.206282,40.509807],[-121.204714,40.509023],[-121.202361,40.508709],[-121.201263,40.509023],[-121.199852,40.509964],[-121.198754,40.509964],[-121.198127,40.510748],[-121.196715,40.510748],[-121.195617,40.510277],[-121.194519,40.510121],[-121.193735,40.508395],[-121.190912,40.507297],[-121.189344,40.505729],[-121.188873,40.505572],[-121.188246,40.505259],[-121.186364,40.506043],[-121.185266,40.505729],[-121.184481,40.505102],[-121.181815,40.503533],[-121.181502,40.502906],[-121.178678,40.502435],[-121.176012,40.501808],[-121.175542,40.501338],[-121.175385,40.500553],[-121.174444,40.500867],[-121.172718,40.500867],[-121.171621,40.500710],[-121.171307,40.500397],[-121.171307,40.499926],[-121.169895,40.501494],[-121.169268,40.501494],[-121.168954,40.500867],[-121.168170,40.500553],[-121.167543,40.501181],[-121.167072,40.501338],[-121.163779,40.502279],[-121.163308,40.502749],[-121.161896,40.503376],[-121.162367,40.506200],[-121.161896,40.508082],[-121.162524,40.509180],[-121.162367,40.509807],[-121.160642,40.511532],[-121.158446,40.512787],[-121.157975,40.513414],[-121.157191,40.513571],[-121.156721,40.513885],[-121.154054,40.516865],[-121.153741,40.517806],[-121.152800,40.518747],[-121.152643,40.519531],[-121.152800,40.520629],[-121.154368,40.522668],[-121.157975,40.525648],[-121.158132,40.526118],[-121.157975,40.526432],[-121.156093,40.528471],[-121.156093,40.528785],[-121.156721,40.530980],[-121.157348,40.531921],[-121.158132,40.532862],[-121.159387,40.532862],[-121.159701,40.533019],[-121.159701,40.534117],[-121.160171,40.535529],[-121.153898,40.536627],[-121.153270,40.536783],[-121.152486,40.537568],[-121.152172,40.537725],[-121.149977,40.537881],[-121.148565,40.537725],[-121.148408,40.537881],[-121.148879,40.538509],[-121.148879,40.539763],[-121.149036,40.539920],[-121.147467,40.539607],[-121.145899,40.539763],[-121.144644,40.539763],[-121.143703,40.540077],[-121.143232,40.541018],[-121.138214,40.545253],[-121.137586,40.545253],[-121.133351,40.548860],[-121.131626,40.551213],[-121.131469,40.552154],[-121.130058,40.554036],[-121.128489,40.555604],[-121.127705,40.555918],[-121.126764,40.556075],[-121.125196,40.555604],[-121.122059,40.555761],[-121.120177,40.555604],[-121.117040,40.556232],[-121.112805,40.555291],[-121.108884,40.554820],[-121.109041,40.555448],[-121.108884,40.556075],[-121.109041,40.556545],[-121.108728,40.556859],[-121.108728,40.557330],[-121.107943,40.558114],[-121.107787,40.558427],[-121.107943,40.558741],[-121.108414,40.559055],[-121.109982,40.559212],[-121.110139,40.559525],[-121.109982,40.559839],[-121.110139,40.560153],[-121.110139,40.560623],[-121.110766,40.561094],[-121.110923,40.561251],[-121.110766,40.561721],[-121.111237,40.562348],[-121.111237,40.562819],[-121.111551,40.562976],[-121.111080,40.563603],[-121.111237,40.564231],[-121.111080,40.565015],[-121.110296,40.566113],[-121.109825,40.566269],[-121.109355,40.567211],[-121.112178,40.572543],[-121.112335,40.573484],[-121.111551,40.577876],[-121.111237,40.578033],[-121.111237,40.578660],[-121.110766,40.578660],[-121.110453,40.578974],[-121.109512,40.579444],[-121.109825,40.579601],[-121.111394,40.579130],[-121.110296,40.584934],[-121.105748,40.597324],[-121.105748,40.598108],[-121.105748,40.598579],[-121.109355,40.605950],[-121.109825,40.606577],[-121.113433,40.609557],[-121.113746,40.610185],[-121.113590,40.610655],[-121.112962,40.611596],[-121.103395,40.601245],[-121.096494,40.594658],[-121.096023,40.594344],[-121.094298,40.594344],[-121.090220,40.592619],[-121.089279,40.591521],[-121.088809,40.591364],[-121.088809,40.590580],[-121.088495,40.591050],[-121.087868,40.590266],[-121.086770,40.591050],[-121.086456,40.593089],[-121.087397,40.593717],[-121.087084,40.596069],[-121.087240,40.597481],[-121.087554,40.599677],[-121.086770,40.598422],[-121.085515,40.594344],[-121.085045,40.591678],[-121.083790,40.589482],[-121.083476,40.588855],[-121.083790,40.588698],[-121.082378,40.586972],[-121.075477,40.579915],[-121.075791,40.579601],[-121.077987,40.574112],[-121.078144,40.573327],[-121.078457,40.573327],[-121.078614,40.573484],[-121.078614,40.573170],[-121.078771,40.573014],[-121.079085,40.573014],[-121.079085,40.573170],[-121.079398,40.573170],[-121.079242,40.573014],[-121.079555,40.572857],[-121.079712,40.573014],[-121.079869,40.573327],[-121.079712,40.573484],[-121.079869,40.573641],[-121.080339,40.573327],[-121.080653,40.573484],[-121.081280,40.573484],[-121.081280,40.574112],[-121.082535,40.574268],[-121.082222,40.574425],[-121.082535,40.574739],[-121.083163,40.575053],[-121.083790,40.574896],[-121.083790,40.574739],[-121.084104,40.574896],[-121.084574,40.574425],[-121.085986,40.575053],[-121.086299,40.575053],[-121.086299,40.574739],[-121.087554,40.574739],[-121.088338,40.574268],[-121.088338,40.573955],[-121.088809,40.573955],[-121.089122,40.574112],[-121.088966,40.573170],[-121.089750,40.573955],[-121.092730,40.575366],[-121.097906,40.574582]]],[[[-120.596173,40.764202],[-120.541906,40.764359],[-120.516812,40.765927],[-120.479013,40.764359],[-120.479013,40.763888],[-120.479013,40.762163],[-120.479170,40.760752],[-120.478700,40.758085],[-120.479013,40.756987],[-120.478700,40.756360],[-120.477915,40.755733],[-120.476033,40.753223],[-120.475876,40.751969],[-120.475406,40.750871],[-120.476033,40.748675],[-120.475876,40.747106],[-120.474779,40.746322],[-120.473994,40.745224],[-120.473210,40.744440],[-120.473367,40.743970],[-120.473994,40.743185],[-120.473994,40.742715],[-120.474308,40.741774],[-120.473053,40.739735],[-120.472896,40.738637],[-120.473210,40.737069],[-120.473994,40.736285],[-120.473994,40.734716],[-120.474465,40.734246],[-120.474622,40.733775],[-120.474465,40.733461],[-120.473994,40.732834],[-120.473367,40.731109],[-120.473367,40.730481],[-120.474779,40.727188],[-120.475249,40.725463],[-120.475876,40.724365],[-120.478386,40.721071],[-120.481366,40.717307],[-120.484189,40.713072],[-120.484660,40.710249],[-120.484503,40.707112],[-120.484189,40.705544],[-120.483562,40.703505],[-120.483405,40.702721],[-120.483562,40.701780],[-120.484503,40.699584],[-120.485287,40.698643],[-120.485757,40.698329],[-120.486855,40.696918],[-120.488581,40.695035],[-120.489051,40.694722],[-120.489835,40.694879],[-120.489365,40.691899],[-120.487326,40.690173],[-120.487012,40.689546],[-120.489208,40.678567],[-120.488894,40.675430],[-120.485757,40.667275],[-120.482307,40.660687],[-120.481523,40.656610],[-120.481052,40.653786],[-120.478386,40.647983],[-120.478229,40.647513],[-120.478386,40.646885],[-120.480111,40.644376],[-120.483718,40.640455],[-120.485444,40.636691],[-120.488581,40.631829],[-120.491090,40.627751],[-120.492815,40.623203],[-120.496579,40.617243],[-120.497207,40.616615],[-120.498932,40.615831],[-120.497677,40.612851],[-120.497677,40.612381],[-120.497207,40.611283],[-120.497050,40.609714],[-120.497050,40.607832],[-120.496736,40.607048],[-120.496423,40.605636],[-120.495482,40.604068],[-120.494384,40.603284],[-120.493443,40.602813],[-120.492815,40.602343],[-120.492188,40.601559],[-120.491717,40.600774],[-120.491874,40.599990],[-120.491874,40.599520],[-120.491561,40.599049],[-120.492188,40.597167],[-120.491874,40.595285],[-120.491090,40.594344],[-120.490776,40.593560],[-120.489522,40.591364],[-120.489365,40.591050],[-120.489522,40.590266],[-120.489051,40.589796],[-120.489522,40.589168],[-120.490463,40.588698],[-120.490463,40.588384],[-120.488110,40.588227],[-120.486385,40.587443],[-120.485287,40.587129],[-120.483718,40.586972],[-120.481836,40.585875],[-120.481366,40.585561],[-120.481052,40.585090],[-120.481052,40.584149],[-120.480739,40.583208],[-120.481209,40.581797],[-120.481052,40.581326],[-120.476661,40.579287],[-120.476033,40.578346],[-120.475720,40.577248],[-120.476347,40.575994],[-120.475720,40.574739],[-120.475720,40.574268],[-120.476033,40.573798],[-120.476974,40.573170],[-120.477602,40.572543],[-120.478229,40.571288],[-120.479170,40.570661],[-120.478856,40.570347],[-120.478072,40.569877],[-120.476974,40.568622],[-120.476974,40.568152],[-120.477131,40.566269],[-120.476974,40.565328],[-120.476818,40.564701],[-120.477131,40.564231],[-120.477131,40.563760],[-120.474622,40.560153],[-120.474622,40.559682],[-120.474151,40.558741],[-120.472896,40.557957],[-120.470387,40.554820],[-120.468505,40.553565],[-120.467407,40.552154],[-120.464584,40.550429],[-120.464113,40.549644],[-120.463016,40.548860],[-120.461761,40.547135],[-120.462231,40.544155],[-120.462859,40.541802],[-120.463486,40.540391],[-120.464427,40.538822],[-120.465525,40.536156],[-120.469289,40.530039],[-120.471014,40.527844],[-120.471014,40.527373],[-120.471328,40.527059],[-120.471328,40.526275],[-120.471014,40.525962],[-120.470544,40.525805],[-120.469760,40.524864],[-120.468975,40.524079],[-120.469289,40.523766],[-120.469603,40.522982],[-120.469446,40.521884],[-120.470387,40.520002],[-120.470858,40.519531],[-120.470701,40.519374],[-120.472112,40.519374],[-120.472112,40.518747],[-120.471799,40.517806],[-120.471799,40.517022],[-120.471485,40.516237],[-120.471955,40.515767],[-120.471642,40.515140],[-120.471799,40.514355],[-120.471485,40.513885],[-120.471799,40.513414],[-120.471799,40.513257],[-120.471171,40.512787],[-120.471328,40.512003],[-120.470701,40.511375],[-120.471328,40.510277],[-120.471171,40.509650],[-120.471014,40.508866],[-120.471328,40.507141],[-120.468505,40.505102],[-120.468505,40.504004],[-120.468348,40.503533],[-120.468505,40.503220],[-120.468662,40.502749],[-120.468505,40.502435],[-120.468191,40.502122],[-120.468034,40.501338],[-120.468819,40.500083],[-120.470073,40.499142],[-120.470230,40.497887],[-120.470387,40.497573],[-120.470544,40.496789],[-120.471328,40.496319],[-120.471485,40.495378],[-120.472583,40.494593],[-120.473053,40.493966],[-120.473367,40.493182],[-120.473053,40.491770],[-120.473210,40.490829],[-120.473367,40.490672],[-120.474622,40.490202],[-120.475092,40.489731],[-120.475563,40.489575],[-120.475876,40.490045],[-120.476818,40.490672],[-120.478229,40.490986],[-120.478543,40.491613],[-120.478700,40.492711],[-120.479170,40.492868],[-120.480111,40.492711],[-120.481836,40.491927],[-120.484503,40.491770],[-120.484816,40.491613],[-120.485287,40.489888],[-120.487483,40.488790],[-120.489365,40.487849],[-120.490619,40.487536],[-120.490619,40.486438],[-120.491247,40.485967],[-120.491561,40.484869],[-120.492031,40.484556],[-120.494384,40.483928],[-120.496266,40.482987],[-120.497050,40.482203],[-120.499089,40.481262],[-120.501128,40.481419],[-120.501128,40.480948],[-120.502853,40.479223],[-120.503480,40.478909],[-120.504265,40.478753],[-120.505519,40.477968],[-120.508813,40.477027],[-120.509754,40.476557],[-120.511636,40.476243],[-120.513675,40.476086],[-120.513989,40.475616],[-120.514459,40.474832],[-120.514616,40.472949],[-120.515400,40.472322],[-120.516341,40.470911],[-120.516655,40.470754],[-120.516655,40.471224],[-120.517910,40.472165],[-120.520576,40.473577],[-120.521674,40.473734],[-120.522772,40.473734],[-120.526536,40.473263],[-120.527947,40.473420],[-120.528261,40.473577],[-120.529830,40.475145],[-120.530927,40.475773],[-120.532966,40.476086],[-120.534535,40.475616],[-120.535633,40.475929],[-120.537044,40.476557],[-120.538142,40.476870],[-120.538769,40.476400],[-120.539240,40.475459],[-120.540495,40.474832],[-120.540965,40.474832],[-120.540808,40.474204],[-120.541436,40.472636],[-120.540181,40.471695],[-120.539867,40.471224],[-120.539711,40.470911],[-120.540181,40.469969],[-120.540024,40.462598],[-120.538926,40.460716],[-120.538926,40.460245],[-120.538456,40.459775],[-120.537672,40.459147],[-120.536103,40.458363],[-120.535162,40.457736],[-120.533437,40.456638],[-120.530300,40.455697],[-120.528418,40.455383],[-120.527006,40.454599],[-120.525281,40.453501],[-120.523556,40.451462],[-120.521203,40.450678],[-120.519792,40.450678],[-120.518851,40.450364],[-120.517753,40.450364],[-120.515714,40.449423],[-120.515557,40.449110],[-120.515714,40.446287],[-120.515400,40.445973],[-120.514302,40.445346],[-120.513989,40.444404],[-120.514302,40.442052],[-120.515714,40.440954],[-120.516028,40.440170],[-120.516498,40.439229],[-120.516655,40.438288],[-120.516969,40.437817],[-120.517910,40.437504],[-120.518380,40.436562],[-120.519008,40.435935],[-120.520105,40.435621],[-120.521203,40.434680],[-120.521046,40.434210],[-120.519949,40.433112],[-120.520733,40.432485],[-120.520733,40.431387],[-120.521674,40.430446],[-120.522615,40.429661],[-120.522301,40.428720],[-120.522301,40.427623],[-120.524026,40.426368],[-120.525595,40.425740],[-120.525752,40.425584],[-120.525752,40.425270],[-120.525124,40.423702],[-120.525595,40.422604],[-120.525438,40.420251],[-120.526065,40.418683],[-120.526065,40.412095],[-120.493129,40.411782],[-120.492972,40.404881],[-120.489365,40.404097],[-120.489051,40.401430],[-120.487796,40.398137],[-120.512891,40.397352],[-120.515087,40.396882],[-120.518537,40.396098],[-120.521203,40.395784],[-120.521360,40.379316],[-120.521360,40.375865],[-120.512891,40.375865],[-120.511322,40.376179],[-120.509283,40.376963],[-120.508499,40.377120],[-120.502069,40.377434],[-120.500500,40.377120],[-120.497991,40.376022],[-120.496423,40.375708],[-120.484973,40.375395],[-120.464741,40.371003],[-120.464584,40.371160],[-120.464584,40.375552],[-120.455174,40.375552],[-120.455174,40.368964],[-120.454703,40.369748],[-120.454389,40.369905],[-120.453605,40.369592],[-120.452664,40.369748],[-120.452037,40.369435],[-120.451723,40.369748],[-120.451096,40.369592],[-120.451253,40.368023],[-120.449057,40.367239],[-120.445136,40.365357],[-120.442626,40.364886],[-120.455644,40.364573],[-120.488267,40.364730],[-120.488424,40.353908],[-120.489992,40.353908],[-120.490933,40.354221],[-120.492972,40.354378],[-120.493286,40.354692],[-120.493756,40.354692],[-120.494384,40.354378],[-120.495011,40.353280],[-120.495638,40.353908],[-120.501598,40.354064],[-120.501755,40.354064],[-120.501912,40.351241],[-120.501912,40.351241],[-120.511950,40.351555],[-120.521988,40.353123],[-120.522615,40.353594],[-120.522615,40.352810],[-120.522772,40.352653],[-120.531712,40.352967],[-120.533123,40.352810],[-120.535162,40.352810],[-120.536887,40.353437],[-120.541593,40.353751],[-120.543161,40.353280],[-120.543475,40.352810],[-120.543632,40.351712],[-120.543945,40.351555],[-120.545984,40.351869],[-120.546298,40.352182],[-120.546768,40.352339],[-120.549748,40.352182],[-120.550376,40.352339],[-120.550532,40.351869],[-120.551317,40.351555],[-120.551787,40.351241],[-120.553199,40.351241],[-120.554610,40.351712],[-120.556963,40.350614],[-120.557904,40.350300],[-120.557747,40.349202],[-120.557904,40.348104],[-120.561041,40.341988],[-120.561198,40.340576],[-120.562609,40.340419],[-120.564491,40.340890],[-120.565746,40.340733],[-120.566530,40.339949],[-120.567001,40.338694],[-120.569197,40.336028],[-120.573118,40.335871],[-120.575156,40.335557],[-120.575470,40.335714],[-120.575784,40.336341],[-120.576568,40.336498],[-120.576882,40.336969],[-120.577039,40.336655],[-120.576882,40.336498],[-120.577195,40.336655],[-120.577195,40.336655],[-120.577195,40.336341],[-120.577352,40.336185],[-120.578921,40.335557],[-120.579548,40.335714],[-120.580332,40.335400],[-120.580803,40.335400],[-120.581116,40.335714],[-120.582214,40.335714],[-120.584096,40.335087],[-120.584096,40.334459],[-120.584410,40.334146],[-120.584410,40.333518],[-120.584096,40.333048],[-120.584096,40.332577],[-120.584724,40.331793],[-120.585037,40.331636],[-120.585194,40.319716],[-120.585822,40.319716],[-120.586135,40.319403],[-120.586919,40.318775],[-120.588802,40.318462],[-120.589899,40.318775],[-120.590370,40.319246],[-120.590997,40.319246],[-120.591782,40.319560],[-120.592409,40.319246],[-120.592879,40.319246],[-120.593350,40.319560],[-120.593820,40.320344],[-120.594448,40.320187],[-120.594605,40.319403],[-120.596016,40.319089],[-120.597585,40.319089],[-120.599624,40.319873],[-120.600251,40.319246],[-120.601819,40.318462],[-120.603388,40.319089],[-120.605113,40.318775],[-120.605897,40.318462],[-120.608407,40.319089],[-120.609818,40.318775],[-120.611073,40.318148],[-120.612798,40.316580],[-120.613739,40.314541],[-120.614837,40.314070],[-120.615464,40.313600],[-120.615778,40.313756],[-120.616092,40.314854],[-120.616719,40.315325],[-120.616876,40.315639],[-120.617347,40.315795],[-120.618288,40.316580],[-120.618131,40.315795],[-120.618131,40.315639],[-120.618444,40.315325],[-120.619385,40.315168],[-120.620954,40.315168],[-120.621581,40.315639],[-120.623150,40.315325],[-120.624561,40.314697],[-120.626130,40.314541],[-120.627227,40.314541],[-120.628169,40.314384],[-120.629266,40.314541],[-120.629737,40.315168],[-120.632717,40.315168],[-120.635069,40.314227],[-120.635854,40.312972],[-120.635854,40.311717],[-120.636481,40.311090],[-120.637422,40.310463],[-120.638990,40.310776],[-120.640088,40.309679],[-120.640559,40.307326],[-120.640402,40.306855],[-120.639775,40.305444],[-120.639775,40.304817],[-120.639932,40.304032],[-120.639147,40.304346],[-120.638520,40.304660],[-120.637736,40.304503],[-120.636638,40.303875],[-120.635226,40.304503],[-120.634128,40.304032],[-120.632717,40.303719],[-120.632403,40.303719],[-120.631776,40.304189],[-120.631305,40.304189],[-120.629737,40.304189],[-120.628639,40.303875],[-120.627855,40.303405],[-120.626757,40.301837],[-120.625973,40.300425],[-120.625345,40.298700],[-120.628482,40.298857],[-120.629737,40.300111],[-120.630207,40.300425],[-120.630678,40.300268],[-120.631305,40.299954],[-120.631619,40.300111],[-120.632246,40.300739],[-120.632717,40.301837],[-120.632560,40.302307],[-120.632717,40.302464],[-120.633344,40.302778],[-120.635069,40.302621],[-120.636011,40.302150],[-120.637579,40.301052],[-120.637579,40.300739],[-120.637265,40.300268],[-120.637422,40.299013],[-120.637736,40.297602],[-120.638520,40.296347],[-120.639304,40.295877],[-120.641029,40.295720],[-120.641500,40.294936],[-120.642441,40.294779],[-120.642284,40.300425],[-120.651695,40.300425],[-120.652165,40.307640],[-120.679298,40.308581],[-120.726351,40.308424],[-120.726507,40.315952],[-120.737800,40.315795],[-120.746426,40.315952],[-120.743917,40.315952],[-120.743133,40.317364],[-120.743603,40.317521],[-120.743760,40.317991],[-120.744230,40.319246],[-120.743289,40.320501],[-120.743289,40.321128],[-120.744230,40.321598],[-120.744387,40.322696],[-120.744701,40.322853],[-120.744544,40.323010],[-120.744230,40.323167],[-120.742348,40.322853],[-120.740780,40.323010],[-120.739212,40.323324],[-120.738584,40.323637],[-120.735918,40.324265],[-120.734977,40.324892],[-120.733252,40.325676],[-120.731370,40.326931],[-120.729331,40.327402],[-120.726194,40.328813],[-120.725566,40.328813],[-120.724782,40.329911],[-120.723998,40.331636],[-120.722900,40.332107],[-120.722586,40.332420],[-120.721802,40.333832],[-120.721332,40.334459],[-120.720861,40.335244],[-120.720391,40.335557],[-120.718509,40.336341],[-120.717568,40.337126],[-120.716940,40.338067],[-120.716470,40.338380],[-120.715999,40.338537],[-120.715372,40.338224],[-120.715215,40.338380],[-120.715215,40.339008],[-120.715372,40.339321],[-120.716156,40.339635],[-120.716313,40.339792],[-120.715999,40.340262],[-120.715529,40.340733],[-120.714588,40.341203],[-120.714588,40.341517],[-120.713960,40.342615],[-120.713960,40.344968],[-120.714274,40.345595],[-120.715529,40.346222],[-120.715529,40.346693],[-120.715529,40.347791],[-120.715999,40.348418],[-120.715842,40.349202],[-120.715372,40.349830],[-120.715215,40.350143],[-120.715685,40.350457],[-120.716313,40.350457],[-120.716627,40.350928],[-120.716470,40.350928],[-120.715842,40.350771],[-120.715372,40.350928],[-120.713960,40.351869],[-120.710353,40.353123],[-120.709726,40.353594],[-120.709569,40.353908],[-120.709726,40.354692],[-120.710510,40.355633],[-120.711608,40.355319],[-120.712549,40.355319],[-120.713803,40.355005],[-120.714744,40.354692],[-120.715999,40.355162],[-120.716783,40.355162],[-120.717254,40.355476],[-120.718352,40.355633],[-120.719763,40.357044],[-120.719606,40.357985],[-120.719763,40.357985],[-120.720704,40.357829],[-120.721489,40.357515],[-120.722586,40.357358],[-120.723214,40.357358],[-120.723841,40.357829],[-120.724625,40.357829],[-120.728390,40.358770],[-120.729487,40.359240],[-120.732781,40.359083],[-120.733408,40.359554],[-120.733408,40.360181],[-120.734193,40.360652],[-120.734506,40.361122],[-120.735918,40.361593],[-120.736232,40.361906],[-120.736232,40.361906],[-120.736232,40.361436],[-120.735918,40.360652],[-120.736075,40.360181],[-120.736388,40.359868],[-120.738427,40.359083],[-120.740309,40.359083],[-120.741721,40.359397],[-120.743289,40.359868],[-120.744074,40.359868],[-120.743760,40.361122],[-120.744230,40.363632],[-120.744387,40.363945],[-120.744858,40.364259],[-120.745956,40.364886],[-120.745956,40.365357],[-120.745956,40.366455],[-120.746740,40.367553],[-120.746740,40.368807],[-120.746897,40.369278],[-120.746897,40.370062],[-120.747210,40.370062],[-120.747367,40.371160],[-120.747210,40.371787],[-120.746426,40.372415],[-120.745642,40.373669],[-120.745642,40.374454],[-120.744544,40.375081],[-120.742976,40.376963],[-120.742819,40.377904],[-120.742191,40.378532],[-120.742035,40.379159],[-120.741250,40.379943],[-120.741250,40.380414],[-120.740780,40.381198],[-120.740937,40.382296],[-120.740623,40.383550],[-120.740937,40.383864],[-120.740780,40.384805],[-120.740937,40.385119],[-120.741094,40.385746],[-120.740937,40.386687],[-120.742191,40.387785],[-120.742191,40.388412],[-120.742819,40.388726],[-120.744230,40.389040],[-120.744858,40.389510],[-120.746426,40.389510],[-120.746426,40.389981],[-120.749092,40.391392],[-120.749406,40.391392],[-120.749406,40.390922],[-120.749720,40.390608],[-120.751916,40.389510],[-120.754582,40.389667],[-120.754739,40.390138],[-120.755680,40.390608],[-120.756464,40.391392],[-120.758973,40.391706],[-120.760071,40.391392],[-120.761953,40.389510],[-120.769011,40.389510],[-120.769168,40.391863],[-120.768384,40.393588],[-120.766502,40.395941],[-120.766502,40.396882],[-120.767443,40.396568],[-120.767913,40.395784],[-120.769168,40.394843],[-120.769639,40.394216],[-120.770266,40.393745],[-120.770423,40.393588],[-120.770109,40.393275],[-120.770580,40.393118],[-120.771207,40.393588],[-120.771207,40.393902],[-120.771050,40.394372],[-120.771207,40.394529],[-120.772932,40.392647],[-120.773560,40.392961],[-120.774814,40.392804],[-120.776696,40.392961],[-120.778108,40.393431],[-120.775912,40.394059],[-120.776696,40.394059],[-120.777324,40.394216],[-120.777637,40.394059],[-120.778108,40.394529],[-120.778578,40.394216],[-120.779676,40.394372],[-120.779363,40.393902],[-120.778892,40.393745],[-120.778735,40.393275],[-120.778892,40.392961],[-120.778735,40.392333],[-120.779363,40.390765],[-120.780147,40.389510],[-120.779676,40.389510],[-120.780617,40.387628],[-120.780461,40.387315],[-120.780774,40.387158],[-120.781088,40.386530],[-120.781088,40.385903],[-120.781245,40.385746],[-120.780931,40.385119],[-120.781245,40.384648],[-120.781558,40.384021],[-120.781402,40.383864],[-120.781558,40.383550],[-120.781402,40.383394],[-120.781558,40.382923],[-120.781558,40.382139],[-120.781558,40.381355],[-120.781088,40.380884],[-120.781402,40.380884],[-120.781245,40.380414],[-120.781715,40.379786],[-120.781088,40.379316],[-120.781402,40.379002],[-120.781088,40.378375],[-120.781715,40.378218],[-120.782343,40.380100],[-120.782186,40.380884],[-120.782499,40.382609],[-120.781872,40.384648],[-120.782813,40.384021],[-120.783911,40.383550],[-120.785479,40.382296],[-120.787362,40.381668],[-120.787832,40.380570],[-120.790969,40.379943],[-120.792224,40.379316],[-120.792851,40.378532],[-120.792851,40.377590],[-120.793321,40.376806],[-120.793949,40.376336],[-120.794890,40.376336],[-120.795204,40.376179],[-120.795517,40.374767],[-120.796615,40.373513],[-120.797399,40.373042],[-120.798654,40.372101],[-120.799752,40.371631],[-120.800850,40.370846],[-120.801163,40.369748],[-120.802261,40.367239],[-120.802575,40.367239],[-120.802418,40.367710],[-120.802889,40.368023],[-120.802732,40.367239],[-120.803987,40.367082],[-120.804143,40.367866],[-120.804614,40.368337],[-120.805084,40.369748],[-120.805084,40.372101],[-120.804771,40.373199],[-120.804771,40.373669],[-120.805712,40.375395],[-120.806810,40.376493],[-120.807123,40.377904],[-120.806967,40.378375],[-120.805869,40.379473],[-120.798184,40.383237],[-120.787832,40.391863],[-120.778108,40.396725],[-120.776069,40.397823],[-120.771677,40.401430],[-120.770580,40.402685],[-120.768384,40.406292],[-120.767443,40.407233],[-120.766345,40.408018],[-120.763522,40.409272],[-120.755209,40.411154],[-120.755993,40.411782],[-120.761483,40.414762],[-120.764306,40.415860],[-120.770423,40.416957],[-120.776226,40.416957],[-120.778892,40.417585],[-120.781715,40.417428],[-120.783284,40.417898],[-120.784068,40.418369],[-120.784695,40.418996],[-120.788146,40.424015],[-120.789244,40.424799],[-120.790185,40.425113],[-120.798340,40.426838],[-120.799595,40.426682],[-120.801007,40.426211],[-120.801948,40.426054],[-120.802889,40.426054],[-120.804614,40.426525],[-120.805712,40.426525],[-120.808535,40.426054],[-120.810260,40.426054],[-120.815122,40.427309],[-120.814965,40.427779],[-120.814652,40.427936],[-120.810103,40.426682],[-120.807908,40.426838],[-120.807123,40.427309],[-120.806653,40.427466],[-120.802732,40.426525],[-120.801007,40.426682],[-120.799438,40.427466],[-120.798654,40.427779],[-120.796615,40.427466],[-120.793635,40.427309],[-120.791753,40.426838],[-120.790341,40.427152],[-120.788616,40.427152],[-120.787832,40.426995],[-120.787048,40.426525],[-120.786264,40.424799],[-120.785636,40.424172],[-120.783911,40.423858],[-120.782813,40.424172],[-120.782499,40.425584],[-120.781872,40.426211],[-120.781872,40.426525],[-120.782656,40.430446],[-120.783127,40.430759],[-120.783127,40.431387],[-120.783754,40.432171],[-120.784382,40.433739],[-120.784068,40.434837],[-120.783127,40.436562],[-120.783127,40.437033],[-120.782499,40.437347],[-120.781872,40.437190],[-120.781245,40.437190],[-120.779520,40.437974],[-120.779206,40.438288],[-120.778892,40.439856],[-120.780147,40.441738],[-120.779833,40.441738],[-120.778892,40.441111],[-120.777951,40.440797],[-120.777324,40.441111],[-120.776069,40.441111],[-120.775285,40.441425],[-120.773403,40.441425],[-120.772619,40.441895],[-120.771364,40.442052],[-120.770423,40.442366],[-120.769795,40.442993],[-120.767913,40.442993],[-120.766031,40.442679],[-120.765874,40.443620],[-120.766188,40.443934],[-120.766031,40.444091],[-120.765404,40.444404],[-120.765718,40.445032],[-120.765404,40.445973],[-120.765561,40.447071],[-120.763835,40.448796],[-120.763365,40.449580],[-120.761797,40.450521],[-120.762110,40.451149],[-120.763522,40.451776],[-120.763835,40.452090],[-120.763992,40.452403],[-120.763835,40.452874],[-120.763051,40.453501],[-120.762110,40.455383],[-120.762267,40.455697],[-120.762738,40.456324],[-120.762738,40.456638],[-120.762424,40.456795],[-120.761483,40.456795],[-120.761012,40.457109],[-120.760699,40.457736],[-120.760542,40.458206],[-120.760699,40.458677],[-120.761326,40.459461],[-120.761169,40.460089],[-120.760699,40.460402],[-120.759758,40.460873],[-120.759130,40.461500],[-120.759130,40.462598],[-120.758817,40.463068],[-120.757091,40.464010],[-120.755993,40.465421],[-120.755993,40.465735],[-120.756621,40.466205],[-120.756934,40.466676],[-120.756934,40.467146],[-120.756464,40.468087],[-120.757091,40.469028],[-120.756934,40.469342],[-120.755993,40.470283],[-120.755993,40.470597],[-120.756307,40.471224],[-120.756307,40.471538],[-120.755366,40.472322],[-120.753641,40.472793],[-120.752857,40.473734],[-120.751445,40.473890],[-120.750661,40.474361],[-120.750347,40.474832],[-120.750190,40.475929],[-120.749406,40.476870],[-120.749406,40.477655],[-120.747838,40.478596],[-120.746269,40.480321],[-120.746112,40.481105],[-120.746269,40.481576],[-120.747367,40.482830],[-120.747524,40.483144],[-120.746897,40.484242],[-120.745171,40.485810],[-120.745015,40.487536],[-120.744387,40.488790],[-120.744544,40.489261],[-120.745642,40.490045],[-120.745485,40.490359],[-120.745171,40.490986],[-120.745015,40.491300],[-120.745015,40.491770],[-120.745642,40.492554],[-120.745642,40.494907],[-120.745171,40.496632],[-120.745171,40.498358],[-120.745642,40.499926],[-120.745956,40.500397],[-120.748151,40.500397],[-120.749406,40.501651],[-120.750034,40.502122],[-120.750661,40.502122],[-120.751445,40.501965],[-120.753798,40.502279],[-120.753955,40.502435],[-120.753798,40.502906],[-120.753798,40.503220],[-120.755837,40.504788],[-120.758973,40.506043],[-120.760228,40.505729],[-120.760855,40.505886],[-120.762581,40.507297],[-120.764620,40.508552],[-120.768698,40.509807],[-120.770423,40.510121],[-120.772305,40.509964],[-120.773560,40.510277],[-120.774187,40.510748],[-120.774344,40.511532],[-120.774657,40.512003],[-120.775285,40.512160],[-120.776383,40.512003],[-120.777794,40.512473],[-120.782343,40.516081],[-120.783911,40.517963],[-120.784382,40.518590],[-120.784382,40.519688],[-120.783911,40.520786],[-120.783597,40.521099],[-120.782813,40.521256],[-120.779990,40.521256],[-120.778892,40.521413],[-120.777637,40.522511],[-120.777010,40.523609],[-120.776226,40.524550],[-120.776226,40.524864],[-120.776696,40.526118],[-120.776853,40.530039],[-120.776696,40.531608],[-120.776853,40.533176],[-120.777324,40.533647],[-120.778108,40.533960],[-120.780617,40.534274],[-120.781402,40.534431],[-120.782186,40.535058],[-120.783127,40.536313],[-120.785166,40.537568],[-120.787675,40.538352],[-120.789087,40.538979],[-120.795517,40.542430],[-120.798497,40.543841],[-120.799595,40.543214],[-120.801163,40.543371],[-120.802732,40.542743],[-120.804928,40.543371],[-120.806026,40.543528],[-120.806496,40.543528],[-120.807908,40.542900],[-120.807908,40.542273],[-120.808378,40.541802],[-120.809633,40.541175],[-120.810417,40.540234],[-120.811358,40.539450],[-120.811829,40.540077],[-120.813397,40.540077],[-120.814181,40.540391],[-120.813083,40.540548],[-120.811515,40.540861],[-120.811044,40.541489],[-120.810888,40.541959],[-120.810574,40.542430],[-120.811044,40.543841],[-120.811044,40.545253],[-120.812770,40.546351],[-120.814338,40.546821],[-120.815593,40.547605],[-120.816691,40.548076],[-120.817161,40.548233],[-120.818259,40.547762],[-120.818573,40.547449],[-120.818730,40.546664],[-120.819043,40.546351],[-120.820141,40.546037],[-120.822964,40.545723],[-120.823435,40.545567],[-120.823749,40.545096],[-120.824846,40.544469],[-120.827042,40.543998],[-120.828140,40.543998],[-120.828611,40.543684],[-120.827199,40.543057],[-120.826572,40.542430],[-120.825631,40.541959],[-120.825317,40.541489],[-120.824376,40.541489],[-120.823592,40.541646],[-120.822337,40.541332],[-120.822807,40.540861],[-120.822964,40.539920],[-120.823278,40.539136],[-120.823905,40.538666],[-120.824219,40.538352],[-120.824846,40.536470],[-120.825631,40.536156],[-120.826728,40.535999],[-120.827983,40.535372],[-120.828454,40.534745],[-120.828767,40.533490],[-120.828297,40.532862],[-120.828297,40.532235],[-120.831120,40.531921],[-120.835512,40.530667],[-120.837080,40.529726],[-120.837394,40.529098],[-120.838335,40.528628],[-120.840530,40.528157],[-120.841471,40.527687],[-120.843040,40.528000],[-120.844608,40.528157],[-120.844608,40.528941],[-120.847588,40.530510],[-120.850255,40.531451],[-120.850882,40.532235],[-120.851039,40.533333],[-120.850882,40.534588],[-120.849157,40.539136],[-120.849157,40.540548],[-120.850098,40.543998],[-120.848529,40.545567],[-120.845079,40.545567],[-120.844295,40.545253],[-120.842726,40.544782],[-120.840844,40.545723],[-120.839589,40.545723],[-120.839119,40.546508],[-120.839119,40.547605],[-120.839276,40.548233],[-120.839903,40.550115],[-120.840060,40.551370],[-120.835982,40.553409],[-120.834570,40.553879],[-120.832532,40.554036],[-120.833473,40.554663],[-120.833943,40.554820],[-120.836139,40.554506],[-120.838805,40.553879],[-120.840217,40.554193],[-120.841158,40.554036],[-120.840687,40.555134],[-120.836609,40.559996],[-120.836766,40.560466],[-120.836453,40.560780],[-120.836923,40.561094],[-120.836766,40.561564],[-120.837237,40.561564],[-120.837550,40.562035],[-120.838492,40.561721],[-120.838962,40.562035],[-120.838962,40.562505],[-120.841315,40.563133],[-120.843197,40.562819],[-120.843354,40.563760],[-120.843354,40.565328],[-120.845706,40.565172],[-120.846490,40.564858],[-120.847118,40.564231],[-120.847588,40.565015],[-120.846647,40.566426],[-120.846804,40.566583],[-120.848216,40.567524],[-120.848372,40.568465],[-120.850725,40.570191],[-120.851196,40.571916],[-120.848843,40.572543],[-120.846647,40.572700],[-120.847745,40.573484],[-120.849000,40.574739],[-120.849941,40.575209],[-120.851352,40.575680],[-120.852607,40.575994],[-120.854176,40.575209],[-120.853862,40.574896],[-120.854489,40.574268],[-120.855587,40.574112],[-120.856685,40.573955],[-120.858253,40.573484],[-120.859038,40.573641],[-120.862174,40.573484],[-120.862645,40.573641],[-120.863115,40.573955],[-120.865468,40.574425],[-120.867036,40.575366],[-120.869546,40.576150],[-120.869546,40.576307],[-120.869703,40.576150],[-120.869389,40.575053],[-120.869546,40.574582],[-120.870330,40.574739],[-120.871585,40.573014],[-120.871428,40.574425],[-120.871899,40.575680],[-120.872526,40.575994],[-120.873624,40.578033],[-120.874094,40.579287],[-120.873937,40.580228],[-120.875820,40.580542],[-120.876290,40.580856],[-120.877388,40.581012],[-120.877858,40.581326],[-120.878643,40.582267],[-120.878799,40.582738],[-120.878486,40.583679],[-120.878643,40.584149],[-120.878015,40.585090],[-120.877702,40.586031],[-120.878329,40.586972],[-120.878015,40.588227],[-120.878643,40.588698],[-120.879427,40.589011],[-120.879584,40.589482],[-120.880682,40.590893],[-120.880054,40.591050],[-120.879113,40.590580],[-120.877388,40.591050],[-120.876447,40.591050],[-120.873781,40.590109],[-120.870644,40.588698],[-120.869546,40.587600],[-120.869389,40.587129],[-120.869546,40.586502],[-120.869389,40.586345],[-120.868762,40.586188],[-120.864998,40.586502],[-120.862802,40.585404],[-120.862331,40.585561],[-120.861704,40.586502],[-120.862018,40.587129],[-120.862645,40.587600],[-120.864213,40.588227],[-120.863900,40.589168],[-120.863900,40.589168],[-120.863429,40.588541],[-120.862018,40.588698],[-120.861547,40.588855],[-120.860920,40.589482],[-120.857469,40.589482],[-120.856528,40.589796],[-120.855430,40.589168],[-120.854176,40.588227],[-120.854019,40.588384],[-120.853548,40.589639],[-120.853705,40.589952],[-120.854176,40.589952],[-120.854019,40.590266],[-120.851352,40.590893],[-120.849157,40.591050],[-120.847902,40.590893],[-120.847902,40.589639],[-120.848686,40.586659],[-120.848686,40.585718],[-120.848372,40.583992],[-120.848372,40.581640],[-120.846490,40.582267],[-120.845236,40.583208],[-120.843040,40.584306],[-120.841158,40.585561],[-120.840530,40.586345],[-120.840217,40.586345],[-120.838962,40.585561],[-120.837394,40.585247],[-120.834100,40.585875],[-120.833629,40.586816],[-120.832061,40.587600],[-120.830806,40.586502],[-120.830179,40.585404],[-120.830179,40.584934],[-120.829552,40.584620],[-120.829552,40.584306],[-120.829552,40.583992],[-120.829395,40.583522],[-120.829552,40.583051],[-120.829395,40.582738],[-120.828454,40.582738],[-120.827670,40.582895],[-120.827042,40.583522],[-120.825631,40.584463],[-120.825003,40.584463],[-120.823905,40.583992],[-120.822494,40.583679],[-120.821866,40.583679],[-120.821082,40.583836],[-120.820925,40.584149],[-120.820769,40.585247],[-120.819357,40.586031],[-120.818416,40.586345],[-120.817945,40.586816],[-120.817789,40.587129],[-120.817789,40.588070],[-120.818259,40.588855],[-120.819043,40.589482],[-120.819984,40.590266],[-120.820298,40.590893],[-120.822494,40.591678],[-120.823278,40.591991],[-120.823435,40.592462],[-120.823435,40.593717],[-120.824846,40.594658],[-120.825317,40.594501],[-120.825631,40.593560],[-120.827356,40.592776],[-120.827983,40.592148],[-120.829708,40.591991],[-120.829238,40.593560],[-120.829395,40.594187],[-120.829395,40.595442],[-120.829395,40.595755],[-120.828924,40.596069],[-120.827670,40.596226],[-120.826415,40.596853],[-120.825317,40.597638],[-120.824376,40.597794],[-120.823435,40.597794],[-120.822651,40.598265],[-120.822494,40.599206],[-120.822651,40.600147],[-120.822337,40.600774],[-120.822494,40.600931],[-120.823592,40.601245],[-120.825474,40.605636],[-120.828611,40.608616],[-120.829552,40.609871],[-120.831277,40.612851],[-120.829708,40.613478],[-120.828297,40.613165],[-120.826572,40.612224],[-120.825160,40.611910],[-120.823905,40.611283],[-120.821710,40.609244],[-120.820141,40.608303],[-120.818416,40.607675],[-120.817004,40.607362],[-120.815436,40.607519],[-120.814181,40.607519],[-120.810417,40.606421],[-120.806653,40.605793],[-120.808535,40.605323],[-120.809162,40.604852],[-120.812456,40.603754],[-120.813554,40.603911],[-120.815593,40.603598],[-120.816534,40.602813],[-120.815279,40.602029],[-120.815279,40.601402],[-120.814024,40.600304],[-120.812456,40.599990],[-120.812142,40.599049],[-120.812613,40.598265],[-120.812299,40.597794],[-120.810260,40.597481],[-120.809476,40.597951],[-120.809006,40.597951],[-120.807280,40.597638],[-120.806182,40.597167],[-120.805241,40.597481],[-120.804143,40.597324],[-120.801791,40.597794],[-120.799909,40.597951],[-120.799438,40.597638],[-120.799125,40.598735],[-120.800222,40.599363],[-120.800379,40.600774],[-120.801007,40.601088],[-120.801163,40.601715],[-120.801477,40.602343],[-120.801163,40.602813],[-120.803359,40.603284],[-120.804457,40.603754],[-120.804457,40.604068],[-120.804143,40.604539],[-120.803987,40.605166],[-120.802732,40.606891],[-120.802418,40.607519],[-120.801634,40.607832],[-120.802261,40.609871],[-120.802418,40.610812],[-120.803046,40.611126],[-120.803046,40.611753],[-120.802575,40.612067],[-120.800379,40.612851],[-120.799752,40.612694],[-120.798497,40.613165],[-120.797713,40.613008],[-120.798968,40.613635],[-120.799438,40.614263],[-120.799438,40.615047],[-120.798968,40.615361],[-120.798968,40.615831],[-120.799125,40.616458],[-120.799438,40.616772],[-120.799281,40.617399],[-120.799595,40.618341],[-120.799281,40.618811],[-120.798968,40.619438],[-120.798968,40.620223],[-120.799752,40.621164],[-120.801948,40.621791],[-120.801791,40.622575],[-120.802105,40.623203],[-120.801948,40.624144],[-120.801007,40.624928],[-120.800222,40.625085],[-120.799909,40.625555],[-120.799595,40.625712],[-120.798497,40.625398],[-120.797242,40.624771],[-120.795517,40.624928],[-120.793635,40.624457],[-120.793635,40.624771],[-120.793792,40.625241],[-120.794419,40.625869],[-120.794576,40.626967],[-120.794733,40.627437],[-120.794263,40.628221],[-120.794263,40.629319],[-120.794576,40.629633],[-120.794576,40.630260],[-120.794733,40.630574],[-120.794733,40.632456],[-120.795047,40.632770],[-120.795988,40.632613],[-120.796458,40.633240],[-120.796615,40.634338],[-120.796458,40.634652],[-120.796772,40.635279],[-120.796615,40.636063],[-120.797242,40.636534],[-120.795360,40.637005],[-120.794890,40.637475],[-120.794106,40.637632],[-120.792224,40.637161],[-120.790028,40.637161],[-120.787205,40.637005],[-120.786107,40.636691],[-120.785636,40.636063],[-120.785166,40.635750],[-120.783911,40.635750],[-120.783127,40.635593],[-120.782499,40.635593],[-120.782186,40.635907],[-120.782029,40.636691],[-120.781558,40.637161],[-120.781402,40.637632],[-120.780931,40.638416],[-120.780617,40.638573],[-120.779206,40.638730],[-120.778108,40.639200],[-120.777951,40.639514],[-120.777794,40.640298],[-120.776853,40.641396],[-120.779206,40.642651],[-120.779990,40.642808],[-120.780931,40.642651],[-120.782656,40.642808],[-120.783911,40.643278],[-120.785009,40.642964],[-120.785793,40.642964],[-120.786264,40.643278],[-120.786734,40.643906],[-120.787205,40.644062],[-120.787989,40.643906],[-120.788773,40.643121],[-120.789557,40.643121],[-120.790185,40.643435],[-120.791126,40.642964],[-120.791753,40.642808],[-120.793165,40.642808],[-120.794263,40.643278],[-120.794890,40.643592],[-120.795204,40.643435],[-120.795360,40.643278],[-120.797242,40.646415],[-120.796929,40.645474],[-120.797086,40.645003],[-120.797556,40.644847],[-120.797870,40.644376],[-120.798184,40.643906],[-120.798497,40.643121],[-120.800066,40.642808],[-120.801007,40.642651],[-120.801948,40.641710],[-120.801791,40.641082],[-120.803046,40.638573],[-120.803673,40.637946],[-120.803830,40.637632],[-120.804300,40.637475],[-120.804928,40.637632],[-120.805398,40.637632],[-120.805712,40.637318],[-120.806026,40.636377],[-120.806339,40.636220],[-120.807594,40.635907],[-120.809633,40.635907],[-120.810417,40.636377],[-120.811829,40.636691],[-120.812927,40.636691],[-120.814652,40.637318],[-120.816220,40.637632],[-120.817004,40.637475],[-120.817789,40.637005],[-120.818416,40.637632],[-120.819043,40.637789],[-120.819514,40.638573],[-120.819984,40.638730],[-120.820298,40.639043],[-120.822807,40.640612],[-120.823278,40.641867],[-120.820612,40.642494],[-120.818730,40.643592],[-120.817632,40.643278],[-120.816063,40.643435],[-120.815750,40.643749],[-120.815593,40.644376],[-120.815750,40.644847],[-120.816377,40.645631],[-120.817475,40.645944],[-120.817789,40.646415],[-120.817945,40.646885],[-120.818886,40.647827],[-120.819671,40.648140],[-120.820925,40.649552],[-120.820769,40.649709],[-120.819671,40.650336],[-120.818416,40.651434],[-120.818573,40.651904],[-120.818573,40.652689],[-120.817945,40.653943],[-120.817945,40.654257],[-120.818416,40.654884],[-120.819357,40.655198],[-120.820298,40.656296],[-120.820298,40.656923],[-120.820141,40.657551],[-120.820455,40.658178],[-120.816534,40.660531],[-120.816063,40.661158],[-120.815279,40.665079],[-120.815750,40.669000],[-120.815436,40.670098],[-120.814495,40.671039],[-120.810888,40.673235],[-120.809947,40.674333],[-120.809006,40.677313],[-120.807280,40.679195],[-120.806182,40.681234],[-120.804143,40.683429],[-120.803673,40.684370],[-120.801634,40.686723],[-120.801007,40.687821],[-120.800693,40.689232],[-120.801320,40.690958],[-120.801007,40.691585],[-120.798811,40.693467],[-120.796772,40.694251],[-120.795831,40.695035],[-120.795047,40.695035],[-120.795360,40.695349],[-120.795674,40.696133],[-120.795674,40.697074],[-120.796458,40.697545],[-120.797399,40.697859],[-120.798184,40.697859],[-120.799125,40.698172],[-120.800693,40.698172],[-120.802105,40.698643],[-120.802889,40.698643],[-120.803202,40.699113],[-120.803987,40.699113],[-120.804614,40.699584],[-120.805712,40.699741],[-120.806810,40.699741],[-120.807908,40.699898],[-120.810260,40.699427],[-120.810731,40.699113],[-120.811672,40.698956],[-120.813554,40.699741],[-120.814181,40.699741],[-120.814809,40.699427],[-120.815750,40.698329],[-120.817004,40.698015],[-120.817632,40.696761],[-120.818416,40.696918],[-120.818886,40.696604],[-120.819671,40.696604],[-120.819514,40.695820],[-120.819984,40.695349],[-120.820141,40.694408],[-120.820455,40.693781],[-120.820612,40.694094],[-120.821396,40.694879],[-120.822180,40.694879],[-120.823121,40.696133],[-120.823749,40.696447],[-120.824376,40.696761],[-120.825160,40.696604],[-120.825944,40.696761],[-120.827199,40.697545],[-120.827513,40.698329],[-120.827670,40.698956],[-120.827513,40.699270],[-120.826728,40.700054],[-120.827199,40.700368],[-120.828140,40.700211],[-120.829238,40.700839],[-120.830022,40.700995],[-120.830179,40.701152],[-120.829552,40.701936],[-120.828454,40.702407],[-120.827513,40.703191],[-120.827199,40.704132],[-120.827042,40.704916],[-120.826728,40.705387],[-120.826885,40.706328],[-120.827670,40.707740],[-120.827513,40.708837],[-120.827670,40.710092],[-120.827356,40.710406],[-120.827199,40.710720],[-120.825787,40.710876],[-120.823905,40.710406],[-120.823278,40.710563],[-120.822494,40.711347],[-120.821396,40.711974],[-120.820925,40.713699],[-120.818886,40.716679],[-120.818102,40.717464],[-120.816534,40.717620],[-120.815906,40.718248],[-120.814965,40.718248],[-120.813554,40.718091],[-120.811985,40.716993],[-120.809790,40.716366],[-120.809006,40.716052],[-120.809476,40.716523],[-120.810103,40.718718],[-120.810103,40.720130],[-120.810103,40.720287],[-120.809790,40.721385],[-120.809790,40.723110],[-120.810260,40.723580],[-120.811044,40.723894],[-120.811515,40.724208],[-120.811515,40.724835],[-120.811358,40.725776],[-120.811672,40.725619],[-120.812613,40.724992],[-120.812927,40.724208],[-120.813868,40.723580],[-120.814495,40.723580],[-120.815436,40.724208],[-120.815906,40.724365],[-120.819671,40.723267],[-120.820455,40.723267],[-120.820925,40.723424],[-120.822651,40.724208],[-120.823435,40.724835],[-120.824376,40.725306],[-120.825160,40.725933],[-120.827199,40.726717],[-120.827356,40.726874],[-120.827199,40.727031],[-120.828140,40.727188],[-120.828924,40.726717],[-120.829708,40.726560],[-120.832532,40.726560],[-120.833786,40.726717],[-120.836453,40.728129],[-120.837707,40.728442],[-120.838805,40.729227],[-120.840374,40.729854],[-120.840060,40.730168],[-120.839276,40.730795],[-120.838648,40.731736],[-120.838178,40.733461],[-120.837394,40.734089],[-120.835355,40.735187],[-120.834727,40.735657],[-120.834414,40.736598],[-120.834570,40.737226],[-120.835355,40.737696],[-120.835982,40.737539],[-120.838648,40.735343],[-120.841158,40.734716],[-120.843981,40.733775],[-120.845236,40.733775],[-120.845549,40.734873],[-120.846647,40.735657],[-120.847275,40.736755],[-120.848059,40.738794],[-120.849313,40.739578],[-120.850098,40.740519],[-120.851509,40.741303],[-120.851823,40.741774],[-120.852607,40.743185],[-120.853391,40.744127],[-120.854176,40.744440],[-120.854960,40.744440],[-120.855430,40.744127],[-120.855744,40.743499],[-120.855744,40.742715],[-120.854176,40.741460],[-120.853548,40.740519],[-120.852137,40.739578],[-120.849941,40.737069],[-120.848843,40.735657],[-120.848216,40.733618],[-120.847118,40.733148],[-120.848686,40.731266],[-120.850098,40.730638],[-120.853391,40.729227],[-120.855587,40.728599],[-120.857469,40.728129],[-120.858567,40.728129],[-120.858567,40.730011],[-120.858410,40.731422],[-120.859979,40.734089],[-120.860606,40.735814],[-120.859508,40.738794],[-120.859351,40.739892],[-120.859194,40.742244],[-120.858881,40.743656],[-120.857312,40.746009],[-120.854489,40.748989],[-120.853078,40.748989],[-120.851196,40.747891],[-120.850725,40.747420],[-120.849627,40.745538],[-120.848216,40.744597],[-120.844765,40.743656],[-120.843510,40.743342],[-120.841942,40.743656],[-120.838648,40.745538],[-120.837237,40.745852],[-120.831434,40.745068],[-120.829708,40.743970],[-120.829238,40.742872],[-120.829081,40.742715],[-120.828297,40.744127],[-120.827356,40.743970],[-120.826885,40.744283],[-120.825944,40.744440],[-120.824376,40.745068],[-120.822180,40.746793],[-120.821866,40.747420],[-120.821553,40.748989],[-120.820612,40.749930],[-120.820455,40.751028],[-120.820612,40.752125],[-120.819043,40.753066],[-120.817632,40.753223],[-120.818259,40.754321],[-120.819671,40.755576],[-120.820298,40.757144],[-120.820925,40.758085],[-120.821082,40.759183],[-120.824219,40.762163],[-120.812456,40.762163],[-120.810731,40.761849],[-120.810260,40.761536],[-120.810260,40.761222],[-120.809947,40.761222],[-120.809476,40.761693],[-120.809633,40.762163],[-120.799125,40.762163],[-120.798184,40.760438],[-120.796772,40.761536],[-120.796458,40.761849],[-120.796458,40.762163],[-120.778265,40.762006],[-120.777951,40.761379],[-120.777481,40.760595],[-120.774187,40.758242],[-120.773873,40.757772],[-120.773246,40.756046],[-120.772932,40.753694],[-120.772775,40.750557],[-120.772462,40.748989],[-120.772305,40.747891],[-120.771521,40.745538],[-120.770736,40.741617],[-120.769795,40.739892],[-120.770423,40.739108],[-120.770893,40.737539],[-120.770893,40.736598],[-120.771677,40.734716],[-120.771364,40.733618],[-120.771050,40.733148],[-120.769325,40.732207],[-120.768541,40.734402],[-120.768384,40.735657],[-120.768227,40.737382],[-120.768541,40.738637],[-120.767756,40.738323],[-120.766502,40.736912],[-120.764620,40.735657],[-120.763679,40.734559],[-120.761953,40.733461],[-120.761483,40.732677],[-120.759758,40.730952],[-120.759287,40.730795],[-120.758660,40.731422],[-120.758189,40.731736],[-120.755993,40.731736],[-120.753641,40.732207],[-120.749563,40.732677],[-120.749092,40.732834],[-120.749092,40.762163],[-120.663614,40.762006],[-120.663458,40.764202],[-120.625032,40.764202],[-120.624404,40.763732],[-120.623934,40.762791],[-120.623620,40.762477],[-120.622522,40.761693],[-120.621424,40.761693],[-120.620326,40.761379],[-120.619229,40.759497],[-120.617974,40.759340],[-120.614680,40.759967],[-120.612328,40.761065],[-120.611230,40.762477],[-120.610916,40.763418],[-120.610916,40.764359],[-120.596173,40.764202]]]]}}
,{"id":96109,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-120.301784,40.114883],[-120.301784,40.145153],[-120.269004,40.144996],[-120.241714,40.144839],[-120.241714,40.144682],[-120.226971,40.144526],[-120.226657,40.144212],[-120.213639,40.144212],[-120.213482,40.142957],[-120.210346,40.140605],[-120.207836,40.136684],[-120.209248,40.135743],[-120.206581,40.134802],[-120.205954,40.134017],[-120.205484,40.132449],[-120.204856,40.132135],[-120.203131,40.131822],[-120.201563,40.130724],[-120.201249,40.129783],[-120.199994,40.130096],[-120.199524,40.130410],[-120.199680,40.130880],[-120.199680,40.131351],[-120.198896,40.130567],[-120.196230,40.129626],[-120.169567,40.129469],[-120.166901,40.128998],[-120.163921,40.127901],[-120.162509,40.129155],[-120.161568,40.129626],[-120.160941,40.128998],[-120.160314,40.127744],[-120.158745,40.128371],[-120.157961,40.129155],[-120.157177,40.129626],[-120.153883,40.130724],[-120.153569,40.129312],[-120.142434,40.129312],[-120.141650,40.130880],[-120.139767,40.133547],[-120.138042,40.135429],[-120.136003,40.136997],[-120.133023,40.138409],[-120.130514,40.139507],[-120.124554,40.141232],[-120.124240,40.141389],[-120.124083,40.141232],[-120.122672,40.141702],[-120.116085,40.143585],[-120.115300,40.143741],[-120.114673,40.144055],[-120.111066,40.145153],[-120.108399,40.145467],[-120.106047,40.145780],[-120.095538,40.145467],[-120.095538,40.145780],[-120.081736,40.145467],[-120.081423,40.145310],[-120.081423,40.145153],[-120.081109,40.145153],[-120.076874,40.144996],[-120.076874,40.145310],[-120.075620,40.145310],[-120.075463,40.159582],[-120.068405,40.159582],[-120.061347,40.159269],[-120.022451,40.159112],[-120.014295,40.158171],[-119.997043,40.158798],[-119.997356,40.099983],[-119.997200,40.069870],[-119.997670,39.999919],[-119.997827,39.981568],[-119.998454,39.952553],[-119.999082,39.904246],[-120.000179,39.904873],[-120.001434,39.906442],[-120.002689,39.907226],[-120.004414,39.907697],[-120.008021,39.908481],[-120.010374,39.909265],[-120.013040,39.909579],[-120.013040,39.909265],[-120.012727,39.908167],[-120.014452,39.908010],[-120.013354,39.906912],[-120.013040,39.905971],[-120.013197,39.905187],[-120.013981,39.904560],[-120.015079,39.903932],[-120.015236,39.902991],[-120.014609,39.902050],[-120.014766,39.901580],[-120.014766,39.901109],[-120.015079,39.900482],[-120.015236,39.900168],[-120.015550,39.899855],[-120.016334,39.898600],[-120.017589,39.897659],[-120.017902,39.897031],[-120.017902,39.896561],[-120.017118,39.895620],[-120.017118,39.894993],[-120.016961,39.894051],[-120.017275,39.893424],[-120.017902,39.892640],[-120.019157,39.892169],[-120.019941,39.891385],[-120.019941,39.890915],[-120.019628,39.889660],[-120.019628,39.889346],[-120.021823,39.888562],[-120.022608,39.888876],[-120.023235,39.888876],[-120.024176,39.888405],[-120.024803,39.887935],[-120.025274,39.886837],[-120.025117,39.885582],[-120.026215,39.884014],[-120.026215,39.883386],[-120.027156,39.882602],[-120.027940,39.881191],[-120.029195,39.880563],[-120.029509,39.879936],[-120.029665,39.879308],[-120.029979,39.878995],[-120.031548,39.876172],[-120.032018,39.876172],[-120.032802,39.876799],[-120.033586,39.876642],[-120.033900,39.876172],[-120.034371,39.876015],[-120.034998,39.875387],[-120.037821,39.874446],[-120.038135,39.874133],[-120.039076,39.873976],[-120.039390,39.873819],[-120.039546,39.873505],[-120.039390,39.872878],[-120.039390,39.872251],[-120.040174,39.871623],[-120.041272,39.871466],[-120.042213,39.872094],[-120.042840,39.872094],[-120.044565,39.871623],[-120.047388,39.869741],[-120.047859,39.868643],[-120.048486,39.867859],[-120.044565,39.867859],[-120.043938,39.867702],[-120.043311,39.865977],[-120.043467,39.863468],[-120.042213,39.862213],[-120.041899,39.861272],[-120.041272,39.860488],[-120.041272,39.858606],[-120.042056,39.857664],[-120.043467,39.855312],[-120.043311,39.853430],[-120.043154,39.853116],[-120.042840,39.852802],[-120.041742,39.852646],[-120.041899,39.850607],[-120.041742,39.848254],[-120.033273,39.811083],[-120.033116,39.809514],[-120.036096,39.810769],[-120.040958,39.810769],[-120.043938,39.809828],[-120.046134,39.809358],[-120.047075,39.809358],[-120.048173,39.809671],[-120.049427,39.809358],[-120.050525,39.808730],[-120.052721,39.809044],[-120.055074,39.809044],[-120.057740,39.809358],[-120.058995,39.809201],[-120.061347,39.809044],[-120.062288,39.809201],[-120.065739,39.809044],[-120.067935,39.808730],[-120.070287,39.807632],[-120.070914,39.807162],[-120.071542,39.806378],[-120.071699,39.805593],[-120.072326,39.803555],[-120.072797,39.803398],[-120.073738,39.804025],[-120.073894,39.804339],[-120.072640,39.806221],[-120.073110,39.807005],[-120.073110,39.807476],[-120.073581,39.807946],[-120.074836,39.808260],[-120.075306,39.808730],[-120.075463,39.809201],[-120.075149,39.810456],[-120.075306,39.810769],[-120.076718,39.812024],[-120.077972,39.813279],[-120.077972,39.814220],[-120.077972,39.814690],[-120.076874,39.815474],[-120.076718,39.816102],[-120.076874,39.816415],[-120.077659,39.816572],[-120.078286,39.817200],[-120.079227,39.818925],[-120.079698,39.820807],[-120.080482,39.821905],[-120.080482,39.822689],[-120.080011,39.823473],[-120.080168,39.824728],[-120.080952,39.824885],[-120.081580,39.825199],[-120.082050,39.825826],[-120.082364,39.826610],[-120.082364,39.827551],[-120.081893,39.830217],[-120.081893,39.831002],[-120.082207,39.831472],[-120.082678,39.831786],[-120.083775,39.831786],[-120.084403,39.832099],[-120.085030,39.831472],[-120.085187,39.831002],[-120.086128,39.830688],[-120.086442,39.830374],[-120.087383,39.832413],[-120.087540,39.833354],[-120.087383,39.836021],[-120.087540,39.836648],[-120.087069,39.838059],[-120.085187,39.841824],[-120.085344,39.845274],[-120.085501,39.845431],[-120.088951,39.845431],[-120.090206,39.845274],[-120.089108,39.843706],[-120.088951,39.843235],[-120.089265,39.841824],[-120.090833,39.839628],[-120.090833,39.838530],[-120.091304,39.837118],[-120.092558,39.834923],[-120.093343,39.832570],[-120.093343,39.832099],[-120.092872,39.831629],[-120.092715,39.830845],[-120.092872,39.830531],[-120.093656,39.829433],[-120.093813,39.828806],[-120.093656,39.827551],[-120.094127,39.825512],[-120.093813,39.824101],[-120.094127,39.822846],[-120.093813,39.819866],[-120.093186,39.817984],[-120.092872,39.816259],[-120.091304,39.816415],[-120.089265,39.816102],[-120.089422,39.812651],[-120.089265,39.799006],[-120.089265,39.797438],[-120.088794,39.796810],[-120.089108,39.796183],[-120.088951,39.791164],[-120.087226,39.790223],[-120.084716,39.788184],[-120.081736,39.787243],[-120.081266,39.787086],[-120.085344,39.779244],[-120.078443,39.779244],[-120.077815,39.777519],[-120.074365,39.773598],[-120.073738,39.771716],[-120.072640,39.770932],[-120.071542,39.770618],[-120.069660,39.768893],[-120.069346,39.767795],[-120.069346,39.766697],[-120.068091,39.764501],[-120.067621,39.763717],[-120.068562,39.762933],[-120.068876,39.762306],[-120.074679,39.762149],[-120.085187,39.762306],[-120.085344,39.761521],[-120.085971,39.760423],[-120.086285,39.759012],[-120.087226,39.756816],[-120.087540,39.756346],[-120.090520,39.754777],[-120.090833,39.755248],[-120.090833,39.755875],[-120.090990,39.756189],[-120.092872,39.757287],[-120.093029,39.759796],[-120.092245,39.766070],[-120.090990,39.767011],[-120.088637,39.769363],[-120.087853,39.770461],[-120.087696,39.771089],[-120.087540,39.772343],[-120.087853,39.773598],[-120.088010,39.775480],[-120.088794,39.777833],[-120.089892,39.778931],[-120.090206,39.779558],[-120.089422,39.781126],[-120.088794,39.783949],[-120.088167,39.785047],[-120.088167,39.785361],[-120.089265,39.786616],[-120.090990,39.787870],[-120.091931,39.788184],[-120.095695,39.788968],[-120.096166,39.788812],[-120.097891,39.787714],[-120.098675,39.787714],[-120.098989,39.787870],[-120.100087,39.788655],[-120.101498,39.789282],[-120.102596,39.789439],[-120.103380,39.789909],[-120.104165,39.790066],[-120.105106,39.789909],[-120.106674,39.789596],[-120.107458,39.789753],[-120.108086,39.790223],[-120.108713,39.790380],[-120.107772,39.794144],[-120.108399,39.828335],[-120.108086,39.881191],[-120.099303,39.881191],[-120.099616,39.910363],[-120.108870,39.910363],[-120.108713,39.939535],[-120.126593,39.939535],[-120.126593,39.945181],[-120.126750,39.947691],[-120.135690,39.947691],[-120.135690,39.955062],[-120.144943,39.955062],[-120.144943,39.962277],[-120.154354,39.962277],[-120.154354,39.968551],[-120.163607,39.968707],[-120.163450,39.983764],[-120.173331,39.983921],[-120.173018,39.998350],[-120.182428,39.998507],[-120.182428,40.013407],[-120.201249,40.013407],[-120.201406,40.042736],[-120.204543,40.042736],[-120.210816,40.042736],[-120.211287,40.056381],[-120.209248,40.056224],[-120.209718,40.086024],[-120.228696,40.085397],[-120.246889,40.085867],[-120.246733,40.107825],[-120.265710,40.107825],[-120.266494,40.115824],[-120.275121,40.114883],[-120.301784,40.114883]]]}}
,{"id":96123,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-120.163764,40.860188],[-120.163921,40.889361],[-120.211600,40.888420],[-120.211600,40.890302],[-120.212541,40.892027],[-120.213012,40.892027],[-120.216619,40.892184],[-120.216776,40.893125],[-120.216776,40.898928],[-120.217247,40.901281],[-120.217717,40.902222],[-120.218031,40.903320],[-120.218501,40.904104],[-120.219286,40.904888],[-120.221481,40.906456],[-120.221481,40.906927],[-120.228539,40.907241],[-120.231049,40.907084],[-120.238891,40.903947],[-120.244223,40.903633],[-120.245478,40.903476],[-120.245948,40.903163],[-120.246576,40.901594],[-120.247360,40.901124],[-120.250340,40.899555],[-120.250340,40.888577],[-120.269631,40.888733],[-120.269631,40.903320],[-120.267749,40.903320],[-120.263201,40.903320],[-120.263828,40.903476],[-120.264456,40.903947],[-120.264769,40.904417],[-120.264926,40.905986],[-120.265397,40.906613],[-120.266024,40.906927],[-120.277630,40.907084],[-120.278414,40.907241],[-120.279042,40.907554],[-120.279355,40.908338],[-120.279199,40.916965],[-120.279826,40.917749],[-120.272611,40.921827],[-120.269631,40.922611],[-120.268063,40.924964],[-120.270886,40.927316],[-120.272454,40.929512],[-120.271513,40.932649],[-120.274650,40.935786],[-120.278258,40.940334],[-120.278258,40.941589],[-120.275121,40.943784],[-120.272611,40.949431],[-120.272141,40.951313],[-120.270886,40.952097],[-120.269161,40.954136],[-120.267592,40.958684],[-120.266494,40.959782],[-120.263985,40.962135],[-120.260691,40.965585],[-120.257398,40.968565],[-120.257084,40.969036],[-120.256457,40.970761],[-120.253634,40.972016],[-120.253320,40.973270],[-120.253320,40.975466],[-120.251438,40.977976],[-120.249242,40.979858],[-120.249085,40.980485],[-120.250026,40.981269],[-120.250183,40.982053],[-120.249869,40.982681],[-120.247830,40.984563],[-120.247046,40.985661],[-120.247674,40.995071],[-120.247203,40.996012],[-120.245478,40.998051],[-120.245321,40.998522],[-120.245635,40.999776],[-120.245478,41.000247],[-120.245321,41.000561],[-120.244694,41.000717],[-120.240302,41.001658],[-120.239361,41.001815],[-120.237009,41.001658],[-120.232931,41.003541],[-120.232460,41.004168],[-120.232146,41.005423],[-120.232146,41.006521],[-120.231990,41.006834],[-120.229637,41.008246],[-120.227755,41.009814],[-120.226343,41.010442],[-120.224932,41.012324],[-120.134121,41.012010],[-120.134121,41.011539],[-120.133808,41.010598],[-120.133023,41.009971],[-120.132710,41.009030],[-120.132239,41.008559],[-120.130043,41.007618],[-120.128789,41.007462],[-120.127534,41.006991],[-120.126122,41.005893],[-120.124240,41.005266],[-120.124083,41.004795],[-120.123927,41.004482],[-120.123456,41.004482],[-120.122829,41.005266],[-120.120790,41.005423],[-120.119535,41.005109],[-120.118280,41.004325],[-120.116869,41.004011],[-120.116869,41.003854],[-120.116085,41.003541],[-120.115614,41.003070],[-120.114987,41.002913],[-120.113732,41.003227],[-120.112007,41.003227],[-120.110909,41.002600],[-120.109184,41.001815],[-120.107145,41.001188],[-120.104322,40.999463],[-120.103380,40.998051],[-120.102439,40.997110],[-120.103224,40.995855],[-120.106204,40.994601],[-120.107458,40.993346],[-120.109027,40.992248],[-120.112791,40.990209],[-120.115928,40.989268],[-120.116869,40.988484],[-120.117339,40.987857],[-120.117496,40.987229],[-120.117496,40.986288],[-120.116869,40.984720],[-120.117026,40.984563],[-120.118123,40.983936],[-120.118437,40.983151],[-120.118437,40.982524],[-120.117653,40.980799],[-120.115928,40.978917],[-120.115143,40.978446],[-120.114830,40.977662],[-120.113889,40.975937],[-120.114046,40.972172],[-120.113418,40.970761],[-120.113418,40.969663],[-120.113575,40.969349],[-120.114830,40.967781],[-120.115928,40.966840],[-120.116085,40.966369],[-120.115928,40.965428],[-120.115143,40.963860],[-120.114673,40.962292],[-120.114673,40.961664],[-120.116241,40.956802],[-120.115457,40.949901],[-120.116555,40.948646],[-120.117653,40.947862],[-120.118594,40.947392],[-120.119849,40.946137],[-120.119849,40.945823],[-120.119692,40.945510],[-120.118908,40.944098],[-120.119221,40.943628],[-120.123927,40.941745],[-120.125338,40.940961],[-120.126750,40.939863],[-120.127691,40.939236],[-120.132866,40.937197],[-120.133808,40.936256],[-120.134905,40.935472],[-120.136944,40.934217],[-120.137101,40.933590],[-120.136317,40.932649],[-120.136631,40.932335],[-120.137258,40.932178],[-120.137415,40.931708],[-120.137572,40.928100],[-120.137885,40.924022],[-120.138042,40.923395],[-120.138983,40.922297],[-120.139924,40.920572],[-120.141650,40.918533],[-120.141650,40.918063],[-120.141179,40.916180],[-120.141650,40.913514],[-120.141806,40.913044],[-120.142277,40.912573],[-120.145571,40.910377],[-120.146198,40.908182],[-120.146198,40.907711],[-120.144943,40.905829],[-120.144786,40.905045],[-120.144629,40.897360],[-120.144786,40.887322],[-120.144316,40.886694],[-120.143375,40.886067],[-120.143375,40.884969],[-120.142277,40.883871],[-120.140238,40.882930],[-120.140081,40.882460],[-120.139924,40.879950],[-120.138670,40.879009],[-120.137572,40.877598],[-120.136160,40.876500],[-120.135062,40.875245],[-120.133337,40.875088],[-120.132082,40.874618],[-120.130200,40.873206],[-120.129573,40.873049],[-120.128475,40.872422],[-120.127534,40.872265],[-120.127220,40.871638],[-120.127220,40.872108],[-120.126436,40.872422],[-120.125809,40.872579],[-120.125495,40.872579],[-120.125024,40.872265],[-120.125338,40.871951],[-120.126279,40.871638],[-120.127220,40.871481],[-120.127220,40.871167],[-120.128632,40.871167],[-120.129573,40.867246],[-120.129259,40.863482],[-120.129416,40.862855],[-120.129730,40.862698],[-120.144473,40.860502],[-120.163764,40.860188]]],[[[-120.206111,40.727031],[-120.207209,40.725149],[-120.208464,40.723737],[-120.209405,40.723267],[-120.209875,40.723110],[-120.211914,40.723110],[-120.213326,40.722796],[-120.218344,40.720287],[-120.220697,40.718718],[-120.221638,40.718562],[-120.223677,40.718405],[-120.228225,40.717150],[-120.230421,40.715738],[-120.235754,40.711974],[-120.236224,40.711661],[-120.237950,40.711817],[-120.238734,40.711504],[-120.239361,40.710720],[-120.240773,40.710092],[-120.241400,40.708994],[-120.241871,40.708681],[-120.244537,40.708837],[-120.246576,40.707426],[-120.248458,40.708053],[-120.249556,40.708053],[-120.250026,40.707896],[-120.251124,40.707112],[-120.252693,40.706955],[-120.254731,40.706328],[-120.256300,40.706328],[-120.256457,40.706014],[-120.257241,40.704446],[-120.260535,40.701780],[-120.263985,40.700368],[-120.267749,40.697388],[-120.271200,40.696290],[-120.270572,40.695035],[-120.274337,40.694879],[-120.276219,40.692683],[-120.277787,40.692212],[-120.286413,40.691114],[-120.290648,40.691271],[-120.293157,40.690487],[-120.282335,40.666491],[-120.280924,40.664295],[-120.274650,40.657707],[-120.276219,40.658335],[-120.279199,40.658335],[-120.280924,40.658962],[-120.281708,40.659433],[-120.282492,40.659590],[-120.287825,40.658649],[-120.291118,40.659119],[-120.292059,40.659433],[-120.292530,40.660060],[-120.293157,40.660531],[-120.295196,40.661628],[-120.296451,40.662099],[-120.297706,40.663040],[-120.299431,40.663981],[-120.300999,40.664138],[-120.301940,40.664452],[-120.302254,40.664922],[-120.302881,40.664922],[-120.304920,40.665706],[-120.306018,40.666334],[-120.307430,40.667588],[-120.307430,40.668843],[-120.308214,40.669470],[-120.309626,40.670255],[-120.312606,40.671196],[-120.315115,40.671196],[-120.317938,40.670882],[-120.318722,40.671353],[-120.322800,40.672450],[-120.325780,40.672921],[-120.329231,40.673705],[-120.331270,40.674646],[-120.333936,40.674646],[-120.338171,40.675117],[-120.341464,40.675117],[-120.343346,40.675587],[-120.343974,40.675274],[-120.345699,40.674960],[-120.346640,40.675430],[-120.347581,40.675587],[-120.351031,40.675117],[-120.352914,40.674333],[-120.354325,40.674333],[-120.354952,40.674489],[-120.355423,40.674019],[-120.355580,40.673235],[-120.358246,40.671980],[-120.362481,40.670725],[-120.363736,40.670725],[-120.363579,40.674333],[-120.364206,40.674333],[-120.364990,40.673862],[-120.365931,40.674176],[-120.367029,40.673862],[-120.367343,40.674176],[-120.373930,40.676058],[-120.375028,40.676685],[-120.377067,40.676371],[-120.378792,40.675744],[-120.379733,40.675744],[-120.380517,40.675901],[-120.381615,40.676842],[-120.383811,40.677940],[-120.387575,40.678724],[-120.388516,40.679351],[-120.390398,40.678254],[-120.392437,40.677940],[-120.394319,40.677783],[-120.394947,40.677156],[-120.395574,40.677156],[-120.395731,40.676999],[-120.396358,40.676215],[-120.396986,40.675901],[-120.397613,40.675901],[-120.397927,40.675587],[-120.398554,40.675430],[-120.399025,40.675117],[-120.399338,40.674489],[-120.400279,40.674019],[-120.400750,40.673392],[-120.401534,40.671823],[-120.404985,40.670568],[-120.405769,40.670098],[-120.406710,40.669470],[-120.404671,40.673548],[-120.404985,40.673548],[-120.405769,40.673078],[-120.410317,40.672137],[-120.415022,40.670725],[-120.418002,40.669470],[-120.434000,40.666647],[-120.434314,40.666177],[-120.435255,40.664922],[-120.437451,40.664138],[-120.436353,40.662256],[-120.433530,40.660374],[-120.431491,40.659746],[-120.430706,40.658492],[-120.436510,40.657080],[-120.439019,40.657237],[-120.440117,40.659119],[-120.442626,40.660217],[-120.443881,40.662413],[-120.444508,40.662570],[-120.446077,40.663354],[-120.447802,40.663354],[-120.449841,40.664765],[-120.451409,40.665079],[-120.452978,40.665863],[-120.461761,40.667588],[-120.462702,40.667588],[-120.465525,40.666961],[-120.469917,40.665236],[-120.470544,40.664765],[-120.471485,40.662883],[-120.471799,40.662570],[-120.473210,40.661785],[-120.476033,40.660374],[-120.478229,40.660217],[-120.481366,40.661158],[-120.481836,40.661001],[-120.482307,40.660687],[-120.485757,40.667275],[-120.488894,40.675430],[-120.489208,40.678567],[-120.487012,40.689546],[-120.487326,40.690173],[-120.489365,40.691899],[-120.489835,40.694879],[-120.489051,40.694722],[-120.488581,40.695035],[-120.486855,40.696918],[-120.485757,40.698329],[-120.485287,40.698643],[-120.484503,40.699584],[-120.483562,40.701780],[-120.483405,40.702721],[-120.483562,40.703505],[-120.484189,40.705544],[-120.484503,40.707112],[-120.484660,40.710249],[-120.484189,40.713072],[-120.481366,40.717307],[-120.478386,40.721071],[-120.475876,40.724365],[-120.475249,40.725463],[-120.474779,40.727188],[-120.473367,40.730481],[-120.473367,40.731109],[-120.473994,40.732834],[-120.474465,40.733461],[-120.474622,40.733775],[-120.474465,40.734246],[-120.473994,40.734716],[-120.473994,40.736285],[-120.473210,40.737069],[-120.472896,40.738637],[-120.473053,40.739735],[-120.474308,40.741774],[-120.473994,40.742715],[-120.473994,40.743185],[-120.473367,40.743970],[-120.473210,40.744440],[-120.473994,40.745224],[-120.474779,40.746322],[-120.475876,40.747106],[-120.476033,40.748675],[-120.475406,40.750871],[-120.475876,40.751969],[-120.476033,40.753223],[-120.477915,40.755733],[-120.478700,40.756360],[-120.479013,40.756987],[-120.478700,40.758085],[-120.479170,40.760752],[-120.479013,40.762163],[-120.479013,40.763888],[-120.479013,40.764359],[-120.479954,40.766241],[-120.481366,40.767966],[-120.482934,40.769692],[-120.483562,40.772201],[-120.484189,40.772985],[-120.484032,40.773299],[-120.483718,40.774554],[-120.483091,40.775338],[-120.482934,40.776279],[-120.482464,40.776906],[-120.482307,40.777377],[-120.482777,40.777690],[-120.483248,40.777847],[-120.483875,40.777690],[-120.484973,40.778004],[-120.485601,40.778788],[-120.487483,40.779729],[-120.487953,40.780514],[-120.487012,40.781768],[-120.486542,40.782239],[-120.486071,40.783023],[-120.484816,40.784121],[-120.484032,40.785219],[-120.483405,40.786944],[-120.478543,40.790865],[-120.477445,40.791963],[-120.477915,40.793374],[-120.477915,40.794472],[-120.477131,40.795413],[-120.477602,40.797452],[-120.477445,40.797923],[-120.477915,40.799178],[-120.478072,40.802471],[-120.478386,40.803569],[-120.478856,40.804353],[-120.479954,40.805451],[-120.480582,40.806863],[-120.480582,40.807804],[-120.481052,40.808588],[-120.483248,40.810470],[-120.483405,40.810941],[-120.483248,40.811568],[-120.481052,40.815803],[-120.479484,40.817685],[-120.479327,40.819253],[-120.479013,40.819880],[-120.478072,40.820821],[-120.478072,40.821606],[-120.477915,40.821919],[-120.477602,40.822076],[-120.476661,40.821919],[-120.476033,40.822076],[-120.475563,40.822390],[-120.475092,40.822860],[-120.474935,40.825213],[-120.475092,40.828193],[-120.475092,40.829448],[-120.473367,40.832271],[-120.473210,40.833055],[-120.472426,40.834153],[-120.471642,40.835094],[-120.470544,40.835564],[-120.467564,40.837603],[-120.466309,40.838231],[-120.461604,40.839642],[-120.459251,40.840583],[-120.457840,40.840583],[-120.456899,40.840270],[-120.455174,40.839642],[-120.454860,40.839015],[-120.453605,40.838858],[-120.451880,40.838074],[-120.446704,40.836192],[-120.443881,40.834780],[-120.439489,40.834623],[-120.434157,40.832898],[-120.424119,40.831957],[-120.422551,40.831643],[-120.414552,40.830075],[-120.412983,40.829761],[-120.411415,40.829918],[-120.408749,40.828193],[-120.400593,40.824272],[-120.390869,40.818783],[-120.374087,40.804040],[-120.361069,40.795413],[-120.358246,40.792904],[-120.355423,40.793845],[-120.352914,40.793218],[-120.351031,40.793688],[-120.349777,40.793531],[-120.346169,40.792277],[-120.342719,40.791492],[-120.330485,40.786630],[-120.326721,40.786787],[-120.326878,40.801060],[-120.290491,40.801216],[-120.289550,40.801687],[-120.289080,40.802314],[-120.289080,40.808274],[-120.251124,40.808588],[-120.250967,40.808745],[-120.250810,40.815646],[-120.241400,40.823174],[-120.236067,40.823174],[-120.206738,40.823174],[-120.206425,40.823331],[-120.206581,40.825527],[-120.206581,40.825997],[-120.203288,40.829134],[-120.199524,40.832585],[-120.198739,40.833055],[-120.193407,40.833839],[-120.192466,40.833682],[-120.187761,40.831800],[-120.185408,40.830232],[-120.176154,40.830859],[-120.173959,40.830859],[-120.172233,40.830546],[-120.170979,40.830859],[-120.146355,40.831487],[-120.143218,40.831016],[-120.141179,40.829918],[-120.140708,40.828820],[-120.139140,40.826781],[-120.138670,40.826781],[-120.138042,40.826938],[-120.137415,40.826781],[-120.136787,40.825997],[-120.136474,40.825213],[-120.136003,40.824899],[-120.136003,40.824429],[-120.135533,40.824115],[-120.135533,40.823645],[-120.135376,40.822860],[-120.135376,40.822547],[-120.136003,40.821606],[-120.135846,40.820821],[-120.135376,40.819880],[-120.134592,40.819410],[-120.134278,40.818783],[-120.133337,40.817998],[-120.131612,40.817371],[-120.129259,40.815489],[-120.128004,40.815489],[-120.127063,40.816116],[-120.126122,40.816273],[-120.124240,40.813607],[-120.123456,40.812823],[-120.122358,40.811725],[-120.121103,40.810941],[-120.123142,40.810784],[-120.124868,40.811097],[-120.126907,40.810313],[-120.129259,40.810627],[-120.130357,40.809529],[-120.131455,40.808117],[-120.133337,40.806392],[-120.135846,40.805137],[-120.136317,40.803883],[-120.138983,40.798707],[-120.138513,40.796354],[-120.139454,40.795100],[-120.139454,40.794472],[-120.138983,40.793531],[-120.138983,40.792747],[-120.139454,40.792120],[-120.140395,40.791649],[-120.141493,40.791335],[-120.141963,40.790865],[-120.143218,40.790394],[-120.143845,40.789767],[-120.144786,40.789453],[-120.147609,40.789297],[-120.149335,40.788512],[-120.150589,40.787728],[-120.151530,40.786473],[-120.153256,40.785689],[-120.154354,40.785376],[-120.154981,40.784905],[-120.157804,40.784121],[-120.158118,40.783807],[-120.158118,40.783337],[-120.158275,40.783023],[-120.159843,40.783493],[-120.162039,40.783180],[-120.163294,40.782396],[-120.165019,40.782396],[-120.166430,40.782082],[-120.206425,40.783964],[-120.206111,40.727031]]]]}}
,{"id":91504,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.348493,34.210625],[-118.348493,34.212821],[-118.348336,34.212978],[-118.348964,34.213448],[-118.348650,34.213762],[-118.348493,34.214233],[-118.347395,34.215017],[-118.345356,34.215801],[-118.344729,34.216585],[-118.344729,34.217056],[-118.344101,34.217056],[-118.344101,34.213762],[-118.341122,34.213762],[-118.338298,34.216742],[-118.335632,34.217683],[-118.337514,34.221290],[-118.309283,34.221604],[-118.309283,34.220820],[-118.309910,34.220506],[-118.309753,34.219722],[-118.309910,34.219565],[-118.309910,34.219251],[-118.310067,34.219095],[-118.309597,34.218938],[-118.309440,34.218624],[-118.309440,34.217997],[-118.309597,34.217683],[-118.309440,34.217369],[-118.309440,34.216899],[-118.308969,34.216585],[-118.308656,34.215644],[-118.309126,34.215017],[-118.309910,34.215017],[-118.309753,34.214233],[-118.310067,34.213919],[-118.309753,34.213448],[-118.308499,34.212978],[-118.308028,34.212978],[-118.307871,34.212821],[-118.307401,34.212664],[-118.306773,34.212350],[-118.307087,34.212821],[-118.307871,34.213448],[-118.306773,34.213291],[-118.305205,34.211723],[-118.304578,34.209998],[-118.304578,34.208586],[-118.305048,34.205920],[-118.305362,34.205449],[-118.305676,34.204195],[-118.304264,34.201685],[-118.304264,34.201058],[-118.304891,34.199333],[-118.305048,34.199176],[-118.305362,34.198862],[-118.305989,34.199019],[-118.310224,34.194941],[-118.310381,34.194471],[-118.312263,34.193373],[-118.312733,34.192118],[-118.312577,34.191961],[-118.315086,34.189609],[-118.316027,34.190236],[-118.318380,34.188040],[-118.316027,34.186158],[-118.316498,34.186001],[-118.319634,34.184903],[-118.321203,34.186315],[-118.322928,34.186785],[-118.338298,34.189922],[-118.348493,34.191961],[-118.349120,34.191961],[-118.349434,34.192432],[-118.348807,34.192275],[-118.348650,34.193530],[-118.348964,34.194157],[-118.348650,34.205136],[-118.348964,34.205293],[-118.348650,34.205293],[-118.348650,34.205449],[-118.350375,34.206704],[-118.349748,34.206704],[-118.348650,34.206704],[-118.348493,34.206704],[-118.348493,34.210625]]]}}
,{"id":91606,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.361040,34.194000],[-118.358844,34.179100],[-118.359315,34.178943],[-118.361197,34.179100],[-118.361197,34.179257],[-118.361511,34.179414],[-118.366373,34.179414],[-118.365902,34.179100],[-118.365902,34.177689],[-118.369196,34.177532],[-118.369196,34.179414],[-118.373117,34.179414],[-118.372960,34.178473],[-118.374685,34.178473],[-118.374685,34.179414],[-118.388330,34.179414],[-118.392095,34.179414],[-118.395075,34.179414],[-118.396486,34.179414],[-118.396486,34.178316],[-118.403073,34.178316],[-118.403073,34.179414],[-118.409347,34.179414],[-118.409347,34.178473],[-118.411700,34.178473],[-118.413739,34.178473],[-118.413739,34.179414],[-118.414209,34.179414],[-118.414523,34.181610],[-118.414993,34.182708],[-118.422522,34.194000],[-118.421110,34.194000],[-118.421110,34.193216],[-118.420796,34.192902],[-118.420326,34.192902],[-118.417346,34.193059],[-118.417189,34.193059],[-118.417346,34.194000],[-118.411857,34.194000],[-118.411857,34.193059],[-118.409347,34.193059],[-118.409347,34.194000],[-118.399780,34.194000],[-118.399780,34.192118],[-118.398682,34.192118],[-118.398682,34.194000],[-118.395388,34.194000],[-118.395388,34.192118],[-118.393193,34.192118],[-118.393193,34.194000],[-118.375783,34.194000],[-118.375783,34.193843],[-118.371392,34.193843],[-118.371392,34.194000],[-118.361040,34.194000]]]}}
,{"id":90640,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.127034,34.007203],[-118.127034,34.007360],[-118.127662,34.007360],[-118.127662,34.007674],[-118.127505,34.007674],[-118.127505,34.008772],[-118.126721,34.013163],[-118.127505,34.013320],[-118.127505,34.013634],[-118.130955,34.014418],[-118.130955,34.014418],[-118.130799,34.015202],[-118.130328,34.015202],[-118.130171,34.015986],[-118.139425,34.021319],[-118.143346,34.023985],[-118.143032,34.024299],[-118.143189,34.024299],[-118.142875,34.024769],[-118.142875,34.025083],[-118.142718,34.025083],[-118.142718,34.026181],[-118.143346,34.026495],[-118.142875,34.027279],[-118.143346,34.027592],[-118.143346,34.032141],[-118.142875,34.032141],[-118.142875,34.032768],[-118.144130,34.032925],[-118.144130,34.033396],[-118.130171,34.033552],[-118.115114,34.033709],[-118.107743,34.026965],[-118.105390,34.029631],[-118.104449,34.030259],[-118.103665,34.032141],[-118.101783,34.031827],[-118.099117,34.032298],[-118.098333,34.035278],[-118.097235,34.035591],[-118.095039,34.035121],[-118.093157,34.035591],[-118.103665,34.038258],[-118.103665,34.039669],[-118.106488,34.040453],[-118.101940,34.042649],[-118.100999,34.043433],[-118.100215,34.044688],[-118.097548,34.044845],[-118.096921,34.044688],[-118.094882,34.043276],[-118.092529,34.042179],[-118.091902,34.041551],[-118.091902,34.041708],[-118.091118,34.040767],[-118.090491,34.040453],[-118.090647,34.040140],[-118.090334,34.039983],[-118.087667,34.039199],[-118.084687,34.038571],[-118.083903,34.038258],[-118.080766,34.039355],[-118.077943,34.035591],[-118.072924,34.030886],[-118.073081,34.030729],[-118.073238,34.027906],[-118.073865,34.027279],[-118.081864,34.021633],[-118.082962,34.020535],[-118.083590,34.020064],[-118.091745,34.014575],[-118.092843,34.013634],[-118.092059,34.013006],[-118.095196,34.009713],[-118.096137,34.007674],[-118.096607,34.004066],[-118.097392,34.001243],[-118.103351,33.999518],[-118.104449,33.997793],[-118.104449,33.997479],[-118.104920,33.997165],[-118.105547,33.996224],[-118.107272,33.994656],[-118.108057,33.994185],[-118.108684,33.993401],[-118.109782,33.993872],[-118.111350,33.991676],[-118.111507,33.991990],[-118.111507,33.991833],[-118.110566,33.991205],[-118.113860,33.987284],[-118.114330,33.985873],[-118.114801,33.982422],[-118.115742,33.980070],[-118.119192,33.974894],[-118.121231,33.973012],[-118.124995,33.976462],[-118.125152,33.976462],[-118.134720,33.986187],[-118.136915,33.987598],[-118.137856,33.988853],[-118.133151,33.987284],[-118.133308,33.987128],[-118.128603,33.985559],[-118.125309,33.991205],[-118.129857,33.993088],[-118.128916,33.999047],[-118.129073,33.999204],[-118.128446,34.000459],[-118.128916,34.000616],[-118.128289,34.001714],[-118.129857,34.002341],[-118.127034,34.007203]]]}}
,{"id":91770,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.107429,34.071508],[-118.100371,34.071508],[-118.100215,34.071508],[-118.100215,34.071194],[-118.099587,34.071194],[-118.099587,34.072292],[-118.096764,34.072292],[-118.096607,34.072292],[-118.091745,34.072292],[-118.090647,34.072292],[-118.090647,34.072606],[-118.090020,34.072606],[-118.089863,34.072449],[-118.087040,34.072292],[-118.087197,34.074801],[-118.087667,34.074801],[-118.087040,34.076683],[-118.087354,34.080291],[-118.083590,34.080448],[-118.087824,34.085467],[-118.088138,34.091740],[-118.087197,34.091740],[-118.087197,34.095034],[-118.083746,34.093779],[-118.083590,34.091740],[-118.077630,34.091897],[-118.073238,34.090485],[-118.061789,34.086564],[-118.062573,34.083428],[-118.063043,34.081232],[-118.059436,34.081232],[-118.058966,34.082330],[-118.059907,34.082487],[-118.059750,34.082957],[-118.059593,34.082957],[-118.059436,34.083271],[-118.057711,34.082800],[-118.056770,34.085153],[-118.056142,34.084996],[-118.055986,34.084526],[-118.055829,34.080918],[-118.056142,34.080448],[-118.055829,34.080291],[-118.055829,34.072449],[-118.072924,34.072292],[-118.072924,34.070880],[-118.072297,34.069626],[-118.067749,34.065391],[-118.068219,34.065077],[-118.068690,34.065705],[-118.069003,34.065705],[-118.068690,34.064764],[-118.068847,34.063823],[-118.069788,34.062882],[-118.068847,34.062882],[-118.070415,34.061313],[-118.071042,34.060215],[-118.071199,34.059274],[-118.072140,34.052844],[-118.072140,34.051903],[-118.072454,34.046100],[-118.072611,34.045472],[-118.073081,34.044845],[-118.074963,34.040767],[-118.074650,34.036689],[-118.070729,34.029631],[-118.072924,34.030886],[-118.077943,34.035591],[-118.080766,34.039355],[-118.083903,34.038258],[-118.084687,34.038571],[-118.087667,34.039199],[-118.090334,34.039983],[-118.090647,34.040140],[-118.090491,34.040453],[-118.091118,34.040767],[-118.091902,34.041708],[-118.091902,34.041551],[-118.092529,34.042179],[-118.094882,34.043276],[-118.096921,34.044688],[-118.097548,34.044845],[-118.100215,34.044688],[-118.100215,34.045002],[-118.103195,34.047041],[-118.103195,34.047197],[-118.103508,34.047197],[-118.105077,34.046884],[-118.106488,34.046413],[-118.106645,34.046570],[-118.107116,34.046570],[-118.108057,34.047041],[-118.108057,34.062568],[-118.107272,34.062568],[-118.107272,34.064450],[-118.107116,34.064450],[-118.107116,34.065391],[-118.107272,34.066332],[-118.107429,34.069783],[-118.108057,34.069783],[-118.108057,34.070096],[-118.107586,34.070567],[-118.107429,34.071508]]]}}
,{"id":93535,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-117.667178,34.763645],[-117.667178,34.744667],[-117.667335,34.731335],[-117.667178,34.715808],[-117.667335,34.712985],[-117.667021,34.687891],[-117.667021,34.686479],[-117.667178,34.681617],[-117.667021,34.666717],[-117.667178,34.665933],[-117.667021,34.665149],[-117.666865,34.647426],[-117.667021,34.643975],[-117.667178,34.643034],[-117.668276,34.644289],[-117.670158,34.646171],[-117.675804,34.646171],[-117.677216,34.645857],[-117.677843,34.645387],[-117.678941,34.645387],[-117.679882,34.645230],[-117.683019,34.645544],[-117.682862,34.627507],[-117.689293,34.627507],[-117.693057,34.627664],[-117.694782,34.625625],[-117.694782,34.625154],[-117.694312,34.624841],[-117.693998,34.624370],[-117.693998,34.623900],[-117.694312,34.622488],[-117.693841,34.621861],[-117.693527,34.620763],[-117.693527,34.601942],[-117.698703,34.601942],[-117.699331,34.603197],[-117.699174,34.603667],[-117.699487,34.604765],[-117.700115,34.605079],[-117.700428,34.605706],[-117.701369,34.606177],[-117.701526,34.606490],[-117.701369,34.606961],[-117.702154,34.608373],[-117.702781,34.608686],[-117.704977,34.611666],[-117.706232,34.612137],[-117.707016,34.612607],[-117.707643,34.613078],[-117.708270,34.613078],[-117.709211,34.612764],[-117.711250,34.613078],[-117.711564,34.613391],[-117.712348,34.613705],[-117.712662,34.614019],[-117.712662,34.614489],[-117.713132,34.614489],[-117.713289,34.615273],[-117.714387,34.615273],[-117.714858,34.615744],[-117.716426,34.616528],[-117.702624,34.616528],[-117.702624,34.642250],[-117.702781,34.642564],[-117.704036,34.643191],[-117.711250,34.644759],[-117.711407,34.646014],[-117.738384,34.646171],[-117.738227,34.653543],[-117.747324,34.653543],[-117.747324,34.656993],[-117.747010,34.657464],[-117.747167,34.658405],[-117.747167,34.660914],[-117.756107,34.660757],[-117.756264,34.668129],[-117.765047,34.668286],[-117.765047,34.646328],[-117.773987,34.646328],[-117.773987,34.639584],[-117.778378,34.639427],[-117.778221,34.635035],[-117.782770,34.635035],[-117.782613,34.631428],[-117.787318,34.631428],[-117.791396,34.631271],[-117.791396,34.616685],[-117.792651,34.615430],[-117.794376,34.615273],[-117.795631,34.614960],[-117.796572,34.615273],[-117.796415,34.616371],[-117.796415,34.616685],[-117.854916,34.616528],[-117.880795,34.616685],[-117.889892,34.616685],[-117.889735,34.623900],[-117.898832,34.623743],[-117.899302,34.623900],[-117.903537,34.623743],[-117.904478,34.623900],[-117.907301,34.623743],[-117.907301,34.629389],[-117.907615,34.630644],[-117.907458,34.630958],[-117.907458,34.631428],[-117.915770,34.631428],[-117.915927,34.646798],[-117.931298,34.646642],[-117.934121,34.646328],[-117.934434,34.646014],[-117.958745,34.646014],[-117.958274,34.653543],[-117.958117,34.660757],[-117.986035,34.660600],[-117.991054,34.660757],[-117.991681,34.660600],[-117.992936,34.660444],[-117.993877,34.660757],[-117.995288,34.660757],[-118.049869,34.660600],[-118.049869,34.649778],[-118.052849,34.649622],[-118.053790,34.650092],[-118.054417,34.649935],[-118.054260,34.649622],[-118.054260,34.646014],[-118.076532,34.646014],[-118.076689,34.660600],[-118.112291,34.660444],[-118.112291,34.646014],[-118.129857,34.645857],[-118.130014,34.653072],[-118.129387,34.653072],[-118.129857,34.655738],[-118.132053,34.655268],[-118.132053,34.655425],[-118.132053,34.656679],[-118.130014,34.656679],[-118.130014,34.657464],[-118.130485,34.660444],[-118.130328,34.660444],[-118.133308,34.679892],[-118.130171,34.679892],[-118.130328,34.696046],[-118.130485,34.696674],[-118.130955,34.696674],[-118.130955,34.698399],[-118.130485,34.698399],[-118.130328,34.700595],[-118.131583,34.700595],[-118.131740,34.701065],[-118.131112,34.701065],[-118.131112,34.703418],[-118.130328,34.703418],[-118.130485,34.704045],[-118.132994,34.704045],[-118.133151,34.709535],[-118.134563,34.709535],[-118.133778,34.717533],[-118.133935,34.718474],[-118.136915,34.718474],[-118.139425,34.718631],[-118.141777,34.733374],[-118.130799,34.733374],[-118.130799,34.737138],[-118.133151,34.737138],[-118.132994,34.740746],[-118.134563,34.744353],[-118.136758,34.744353],[-118.136915,34.747960],[-118.144130,34.747960],[-118.146326,34.762390],[-118.140679,34.762703],[-118.087511,34.762860],[-118.060063,34.763174],[-118.060220,34.777603],[-117.975997,34.778388],[-117.964705,34.778231],[-117.952157,34.778388],[-117.916398,34.778231],[-117.889421,34.778231],[-117.889578,34.773996],[-117.889264,34.770859],[-117.889421,34.770859],[-117.889421,34.763488],[-117.801434,34.764115],[-117.774143,34.764586],[-117.774300,34.823244],[-117.738697,34.823244],[-117.667335,34.822460],[-117.667806,34.790778],[-117.667178,34.767409],[-117.667178,34.763645]]]}}
,{"id":90290,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.625160,34.126245],[-118.624846,34.126088],[-118.624846,34.125461],[-118.624218,34.124363],[-118.621866,34.123108],[-118.620611,34.122795],[-118.617474,34.122795],[-118.616376,34.122481],[-118.615906,34.122638],[-118.615435,34.122951],[-118.614338,34.123108],[-118.613396,34.123736],[-118.613240,34.124206],[-118.612926,34.124520],[-118.613240,34.125304],[-118.613240,34.126402],[-118.611828,34.127343],[-118.610573,34.129225],[-118.610573,34.129696],[-118.609789,34.130323],[-118.609475,34.131264],[-118.609475,34.131578],[-118.608534,34.133460],[-118.608691,34.134087],[-118.608691,34.134558],[-118.607750,34.135028],[-118.607280,34.135969],[-118.606339,34.136126],[-118.606182,34.136440],[-118.605711,34.136597],[-118.605241,34.137067],[-118.604457,34.138479],[-118.604457,34.139106],[-118.604300,34.139263],[-118.603986,34.139420],[-118.603045,34.139420],[-118.602888,34.139106],[-118.602888,34.138635],[-118.602261,34.138322],[-118.601947,34.138792],[-118.601633,34.138792],[-118.601320,34.139106],[-118.602104,34.139420],[-118.601790,34.139420],[-118.595517,34.141929],[-118.565246,34.130323],[-118.564776,34.130166],[-118.576382,34.111345],[-118.576225,34.111032],[-118.575755,34.110718],[-118.574814,34.110718],[-118.573402,34.111032],[-118.573245,34.110718],[-118.573245,34.110247],[-118.572775,34.109934],[-118.572304,34.109777],[-118.571520,34.109306],[-118.570893,34.109306],[-118.570109,34.109306],[-118.569795,34.109149],[-118.569638,34.108836],[-118.571520,34.108052],[-118.572932,34.106797],[-118.572147,34.106483],[-118.571991,34.105856],[-118.571363,34.105699],[-118.570893,34.104915],[-118.571991,34.104287],[-118.573245,34.103503],[-118.574186,34.102405],[-118.574814,34.101464],[-118.575755,34.101151],[-118.578421,34.100053],[-118.578892,34.099425],[-118.580146,34.098484],[-118.580146,34.097386],[-118.580460,34.096916],[-118.581558,34.096289],[-118.581715,34.095034],[-118.582342,34.093779],[-118.582499,34.093152],[-118.583126,34.092995],[-118.583597,34.092211],[-118.585322,34.091270],[-118.586106,34.090956],[-118.587204,34.090956],[-118.587204,34.090485],[-118.587518,34.089858],[-118.587518,34.089074],[-118.586734,34.088290],[-118.586734,34.087976],[-118.587047,34.087505],[-118.587204,34.086564],[-118.586577,34.086251],[-118.586420,34.085780],[-118.586577,34.085467],[-118.585793,34.084682],[-118.585949,34.083584],[-118.585793,34.083428],[-118.584538,34.082643],[-118.583283,34.082330],[-118.583126,34.081859],[-118.582656,34.081546],[-118.582185,34.081546],[-118.581558,34.081232],[-118.580460,34.081075],[-118.579676,34.080448],[-118.579519,34.080134],[-118.579676,34.079350],[-118.580146,34.078879],[-118.579833,34.077468],[-118.579519,34.077311],[-118.578892,34.077311],[-118.578421,34.076997],[-118.578264,34.076370],[-118.578578,34.075742],[-118.578264,34.075272],[-118.578264,34.074958],[-118.577637,34.074645],[-118.577480,34.074331],[-118.577166,34.074017],[-118.577323,34.073233],[-118.578264,34.072449],[-118.577951,34.072135],[-118.577951,34.071508],[-118.577323,34.070880],[-118.577480,34.070567],[-118.587988,34.072449],[-118.587518,34.071978],[-118.587831,34.070724],[-118.587361,34.069939],[-118.587204,34.068998],[-118.587204,34.068371],[-118.586890,34.067430],[-118.586734,34.065862],[-118.587047,34.064607],[-118.586890,34.063666],[-118.586420,34.063038],[-118.585636,34.062882],[-118.585008,34.062568],[-118.584852,34.061627],[-118.584381,34.060372],[-118.583910,34.058490],[-118.583440,34.057078],[-118.582656,34.055981],[-118.581558,34.055040],[-118.581401,34.053942],[-118.581715,34.052373],[-118.581715,34.051589],[-118.581087,34.050648],[-118.580303,34.050177],[-118.579989,34.049864],[-118.580303,34.048923],[-118.580303,34.048295],[-118.579989,34.047982],[-118.577480,34.047197],[-118.577010,34.046727],[-118.577010,34.046413],[-118.577637,34.045943],[-118.579205,34.045315],[-118.579676,34.045002],[-118.579676,34.044531],[-118.579519,34.045159],[-118.581087,34.044218],[-118.583597,34.042492],[-118.583283,34.042179],[-118.585479,34.041081],[-118.584695,34.038728],[-118.585479,34.038728],[-118.587988,34.039355],[-118.589400,34.039512],[-118.588929,34.040297],[-118.588773,34.040924],[-118.589400,34.041394],[-118.589714,34.042963],[-118.590027,34.043433],[-118.589086,34.044061],[-118.588302,34.045629],[-118.607750,34.045629],[-118.609946,34.047354],[-118.611044,34.048609],[-118.612926,34.049707],[-118.613396,34.050805],[-118.613710,34.050962],[-118.613867,34.051589],[-118.615435,34.051903],[-118.616376,34.052530],[-118.617004,34.052687],[-118.618259,34.053314],[-118.618572,34.053942],[-118.619513,34.055040],[-118.619827,34.055667],[-118.619984,34.055667],[-118.622650,34.055510],[-118.622964,34.055353],[-118.623277,34.054883],[-118.623748,34.054569],[-118.623748,34.063352],[-118.623434,34.063666],[-118.623121,34.064136],[-118.623277,34.064920],[-118.623591,34.065234],[-118.623434,34.066489],[-118.623591,34.066646],[-118.622807,34.066332],[-118.622336,34.066646],[-118.621395,34.066646],[-118.621239,34.067116],[-118.621552,34.067744],[-118.622180,34.067587],[-118.622180,34.067900],[-118.622336,34.067900],[-118.622650,34.067587],[-118.622807,34.067744],[-118.622650,34.068371],[-118.622336,34.068998],[-118.622336,34.069155],[-118.622493,34.069312],[-118.623121,34.069626],[-118.623748,34.069312],[-118.623748,34.074488],[-118.641000,34.074488],[-118.641628,34.078252],[-118.643196,34.079350],[-118.643510,34.079350],[-118.643510,34.079036],[-118.644921,34.079350],[-118.645862,34.079350],[-118.648529,34.078566],[-118.648999,34.078879],[-118.648842,34.079350],[-118.645549,34.081232],[-118.644137,34.081232],[-118.641314,34.081075],[-118.641000,34.081232],[-118.641000,34.083428],[-118.640059,34.083741],[-118.638961,34.084526],[-118.638648,34.085780],[-118.637550,34.087662],[-118.635982,34.091897],[-118.638020,34.094406],[-118.639275,34.094877],[-118.639589,34.095347],[-118.639746,34.095975],[-118.640373,34.096602],[-118.641471,34.096916],[-118.641628,34.103503],[-118.644608,34.103503],[-118.645078,34.102719],[-118.645392,34.102562],[-118.646019,34.102719],[-118.646333,34.103190],[-118.646960,34.103346],[-118.647117,34.102876],[-118.647274,34.102092],[-118.647431,34.101778],[-118.648058,34.102092],[-118.649470,34.101778],[-118.650254,34.102248],[-118.650097,34.102719],[-118.650411,34.103190],[-118.650411,34.103503],[-118.649940,34.105856],[-118.649627,34.106326],[-118.649470,34.108052],[-118.649627,34.108522],[-118.651509,34.109934],[-118.651352,34.110404],[-118.651822,34.110875],[-118.651509,34.111659],[-118.651666,34.112286],[-118.651352,34.113070],[-118.651195,34.114168],[-118.651038,34.114796],[-118.651195,34.115109],[-118.651666,34.115109],[-118.651666,34.116050],[-118.651195,34.116991],[-118.651509,34.117305],[-118.649940,34.117305],[-118.649940,34.121697],[-118.648529,34.122324],[-118.648686,34.125931],[-118.641628,34.125775],[-118.639275,34.125931],[-118.638177,34.126245],[-118.637393,34.126245],[-118.637236,34.126559],[-118.637236,34.127500],[-118.636295,34.128598],[-118.635825,34.129852],[-118.635511,34.130166],[-118.635668,34.131107],[-118.635668,34.131578],[-118.635825,34.131891],[-118.636923,34.131734],[-118.636923,34.132205],[-118.635982,34.132205],[-118.635668,34.132362],[-118.635511,34.132832],[-118.634884,34.133773],[-118.633472,34.134401],[-118.633158,34.134714],[-118.632688,34.134558],[-118.629394,34.127500],[-118.628767,34.126872],[-118.626885,34.126088],[-118.625160,34.126245]]]}}
,{"id":91792,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-117.914672,34.047354],[-117.914359,34.047354],[-117.913104,34.046100],[-117.912790,34.044374],[-117.912163,34.043904],[-117.911379,34.043747],[-117.910595,34.044688],[-117.910124,34.044374],[-117.910908,34.043433],[-117.906360,34.042492],[-117.902596,34.040924],[-117.895695,34.039355],[-117.888951,34.043120],[-117.889578,34.029631],[-117.890676,34.028847],[-117.891774,34.028377],[-117.895695,34.027592],[-117.895381,34.026495],[-117.894754,34.025240],[-117.891303,34.021789],[-117.887539,34.016614],[-117.886912,34.015359],[-117.884245,34.016300],[-117.883618,34.014888],[-117.883147,34.013477],[-117.882677,34.012849],[-117.881736,34.012693],[-117.880011,34.013477],[-117.879070,34.011908],[-117.874835,34.013947],[-117.870600,34.017241],[-117.867934,34.015673],[-117.869346,34.011595],[-117.873894,34.011595],[-117.873894,34.003910],[-117.873580,34.003596],[-117.873894,34.003439],[-117.873580,34.002968],[-117.875462,34.002655],[-117.875305,34.002027],[-117.872796,34.002655],[-117.872796,34.002498],[-117.873737,34.002341],[-117.875933,34.001871],[-117.879697,34.001714],[-117.882050,34.002027],[-117.890990,34.003439],[-117.890833,34.006419],[-117.890362,34.006576],[-117.889264,34.006733],[-117.889264,34.007046],[-117.890676,34.007046],[-117.890833,34.007360],[-117.890519,34.008458],[-117.887069,34.008301],[-117.886441,34.013634],[-117.889107,34.013634],[-117.889107,34.012849],[-117.890362,34.012065],[-117.890205,34.013634],[-117.909810,34.013790],[-117.910124,34.016614],[-117.911379,34.025083],[-117.912163,34.026338],[-117.913575,34.025397],[-117.914986,34.024769],[-117.916398,34.024612],[-117.917652,34.024612],[-117.915613,34.029631],[-117.914986,34.030886],[-117.916555,34.033239],[-117.917496,34.034337],[-117.918907,34.034964],[-117.919691,34.035278],[-117.926279,34.035748],[-117.926279,34.037003],[-117.926592,34.039826],[-117.926592,34.040610],[-117.925651,34.042963],[-117.925651,34.044061],[-117.922828,34.044061],[-117.920319,34.044531],[-117.920319,34.044845],[-117.920005,34.044845],[-117.919378,34.045786],[-117.917809,34.046570],[-117.915613,34.046727],[-117.915300,34.046884],[-117.914672,34.046884],[-117.914672,34.047354]]]}}
,{"id":91789,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-117.883618,34.014888],[-117.884245,34.016300],[-117.886912,34.015359],[-117.887539,34.016614],[-117.891303,34.021789],[-117.894754,34.025240],[-117.895381,34.026495],[-117.895695,34.027592],[-117.891774,34.028377],[-117.890676,34.028847],[-117.889578,34.029631],[-117.888951,34.043120],[-117.888951,34.043433],[-117.884089,34.043747],[-117.875149,34.048295],[-117.871698,34.048295],[-117.866993,34.046570],[-117.862758,34.051903],[-117.861817,34.053157],[-117.852407,34.053471],[-117.852564,34.054255],[-117.851466,34.054883],[-117.850995,34.055981],[-117.850995,34.056451],[-117.850838,34.056922],[-117.850682,34.056922],[-117.850054,34.056451],[-117.849113,34.056451],[-117.848329,34.056922],[-117.847388,34.057706],[-117.847231,34.058019],[-117.846761,34.058176],[-117.846447,34.058490],[-117.845663,34.058490],[-117.843310,34.059274],[-117.842996,34.059117],[-117.843781,34.058333],[-117.842996,34.058019],[-117.841898,34.058176],[-117.837977,34.057863],[-117.834370,34.059745],[-117.826058,34.062411],[-117.824960,34.060372],[-117.829822,34.058333],[-117.829038,34.056608],[-117.834056,34.054412],[-117.834370,34.051432],[-117.834213,34.040767],[-117.828724,34.041708],[-117.827940,34.039042],[-117.821509,34.050491],[-117.818059,34.050491],[-117.816177,34.050021],[-117.817118,34.048923],[-117.816647,34.048609],[-117.816647,34.048295],[-117.815549,34.047825],[-117.815706,34.047511],[-117.815549,34.047354],[-117.815706,34.047354],[-117.816020,34.047041],[-117.816333,34.047354],[-117.817118,34.046570],[-117.817588,34.046727],[-117.816804,34.047825],[-117.817275,34.047982],[-117.818372,34.046570],[-117.817118,34.045629],[-117.816490,34.046256],[-117.816177,34.045943],[-117.816804,34.045159],[-117.816020,34.044531],[-117.815079,34.045786],[-117.814608,34.045472],[-117.816333,34.043433],[-117.819000,34.041394],[-117.817902,34.040610],[-117.823705,34.033396],[-117.821352,34.031043],[-117.829508,34.022887],[-117.828097,34.021633],[-117.827312,34.020691],[-117.824960,34.016614],[-117.824646,34.015673],[-117.823391,34.010811],[-117.823234,34.010026],[-117.826371,34.007046],[-117.828881,34.005007],[-117.832018,34.002812],[-117.833429,34.002184],[-117.835154,34.001871],[-117.836880,33.999832],[-117.836880,33.999518],[-117.840330,33.996068],[-117.841114,33.994970],[-117.841898,33.993088],[-117.842212,33.995126],[-117.842369,33.994185],[-117.842683,33.992774],[-117.845349,33.993401],[-117.846447,33.993401],[-117.846917,33.992931],[-117.847231,33.992303],[-117.846917,33.991362],[-117.845192,33.991362],[-117.845192,33.990421],[-117.844565,33.990264],[-117.843781,33.989794],[-117.843310,33.989794],[-117.843624,33.987755],[-117.844878,33.985559],[-117.845035,33.984304],[-117.842683,33.984304],[-117.841585,33.980854],[-117.841585,33.979442],[-117.841898,33.977717],[-117.842526,33.976306],[-117.843153,33.975365],[-117.843781,33.975678],[-117.843467,33.975992],[-117.846604,33.978501],[-117.846761,33.978501],[-117.847231,33.978031],[-117.844878,33.975992],[-117.843937,33.975365],[-117.845349,33.973639],[-117.846290,33.972855],[-117.846917,33.972385],[-117.848329,33.970973],[-117.848956,33.970503],[-117.849740,33.970189],[-117.850368,33.970189],[-117.850368,33.971600],[-117.850838,33.972541],[-117.853034,33.974424],[-117.853818,33.974737],[-117.855073,33.974894],[-117.854916,33.960935],[-117.854916,33.960622],[-117.854916,33.960622],[-117.857896,33.959210],[-117.874678,33.959053],[-117.873580,33.959837],[-117.869973,33.961249],[-117.869189,33.962033],[-117.866679,33.963288],[-117.866052,33.964229],[-117.865738,33.965797],[-117.865738,33.969405],[-117.866366,33.969718],[-117.866522,33.970189],[-117.866993,33.970659],[-117.866993,33.971287],[-117.865581,33.971287],[-117.864640,33.971757],[-117.863856,33.972385],[-117.862915,33.974110],[-117.861974,33.974737],[-117.861190,33.975051],[-117.859465,33.975208],[-117.858210,33.975365],[-117.859465,33.976776],[-117.859935,33.977404],[-117.860876,33.975521],[-117.862601,33.974580],[-117.863229,33.974894],[-117.864327,33.978031],[-117.864170,33.980697],[-117.865581,33.981638],[-117.866993,33.982893],[-117.869346,33.985873],[-117.869973,33.986814],[-117.870130,33.987912],[-117.871071,33.987912],[-117.872639,33.989951],[-117.872796,33.990264],[-117.872796,33.993244],[-117.878285,33.994499],[-117.879854,33.994656],[-117.870130,33.996224],[-117.871541,34.000302],[-117.871698,34.001714],[-117.871541,34.001714],[-117.871541,34.002968],[-117.872796,34.002655],[-117.875305,34.002027],[-117.875462,34.002655],[-117.873580,34.002968],[-117.873894,34.003439],[-117.873580,34.003596],[-117.873894,34.003910],[-117.873894,34.011595],[-117.869346,34.011595],[-117.867934,34.015673],[-117.870600,34.017241],[-117.874835,34.013947],[-117.879070,34.011908],[-117.880011,34.013477],[-117.881736,34.012693],[-117.882677,34.012849],[-117.883147,34.013477],[-117.883618,34.014888]]]}}
,{"id":91791,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-117.923455,34.086564],[-117.923455,34.087192],[-117.921417,34.088917],[-117.918123,34.088447],[-117.916555,34.088447],[-117.916555,34.086564],[-117.923455,34.086564]]],[[[-117.916555,34.079193],[-117.916555,34.084682],[-117.907771,34.084526],[-117.907771,34.084996],[-117.910438,34.084996],[-117.910438,34.085153],[-117.907771,34.085153],[-117.907771,34.086251],[-117.903223,34.086251],[-117.903380,34.079036],[-117.903223,34.075429],[-117.900714,34.075429],[-117.898832,34.075429],[-117.898832,34.073547],[-117.892401,34.073547],[-117.892401,34.075429],[-117.881422,34.075272],[-117.881265,34.073547],[-117.881265,34.073547],[-117.874364,34.073390],[-117.873423,34.074331],[-117.872326,34.074958],[-117.870914,34.075586],[-117.869816,34.075899],[-117.869816,34.074645],[-117.869189,34.074331],[-117.868875,34.074017],[-117.868248,34.073704],[-117.867620,34.073704],[-117.867307,34.073390],[-117.865738,34.073233],[-117.866209,34.072135],[-117.867463,34.071821],[-117.866522,34.071508],[-117.866679,34.071351],[-117.866052,34.071194],[-117.866209,34.070880],[-117.864640,34.070253],[-117.861347,34.068528],[-117.858994,34.068057],[-117.857896,34.065705],[-117.858837,34.066175],[-117.860249,34.066018],[-117.861347,34.066332],[-117.861660,34.067430],[-117.861817,34.067273],[-117.862445,34.067744],[-117.863856,34.067116],[-117.864954,34.068998],[-117.867777,34.068371],[-117.869816,34.068371],[-117.869816,34.068528],[-117.871541,34.068214],[-117.870443,34.067116],[-117.868561,34.063979],[-117.868248,34.063038],[-117.868404,34.061627],[-117.868561,34.061470],[-117.868718,34.061470],[-117.869032,34.060372],[-117.869032,34.059431],[-117.868561,34.058019],[-117.867307,34.057078],[-117.867934,34.056765],[-117.869346,34.056608],[-117.869502,34.054883],[-117.866836,34.054883],[-117.866052,34.055196],[-117.865738,34.054569],[-117.865268,34.054726],[-117.863856,34.052687],[-117.862758,34.051903],[-117.866993,34.046570],[-117.871698,34.048295],[-117.875149,34.048295],[-117.884089,34.043747],[-117.888951,34.043433],[-117.888951,34.043120],[-117.895695,34.039355],[-117.902596,34.040924],[-117.906360,34.042492],[-117.910908,34.043433],[-117.910124,34.044374],[-117.910595,34.044688],[-117.911379,34.043747],[-117.912163,34.043904],[-117.912790,34.044374],[-117.913104,34.046100],[-117.914359,34.047354],[-117.914672,34.047354],[-117.914829,34.047354],[-117.914829,34.048139],[-117.914672,34.048139],[-117.914672,34.048923],[-117.916868,34.048766],[-117.916868,34.050334],[-117.916555,34.068371],[-117.917182,34.068371],[-117.917025,34.071508],[-117.916555,34.071508],[-117.916555,34.072135],[-117.921730,34.072135],[-117.921573,34.072919],[-117.919378,34.072919],[-117.919378,34.072606],[-117.917966,34.072606],[-117.917496,34.072762],[-117.917182,34.073076],[-117.917182,34.074645],[-117.916555,34.074645],[-117.916555,34.079193]]]]}}
,{"id":91723,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-117.900714,34.075429],[-117.903223,34.075429],[-117.903380,34.079036],[-117.898988,34.079036],[-117.898988,34.082643],[-117.901184,34.082643],[-117.901184,34.084055],[-117.901027,34.086408],[-117.899773,34.086408],[-117.899302,34.089231],[-117.898988,34.089388],[-117.898988,34.095661],[-117.895067,34.095661],[-117.895067,34.096602],[-117.893499,34.096602],[-117.893185,34.096759],[-117.893028,34.096445],[-117.892872,34.095818],[-117.890676,34.095661],[-117.890676,34.092838],[-117.890048,34.092838],[-117.890048,34.095661],[-117.889264,34.095661],[-117.889107,34.096132],[-117.882050,34.096132],[-117.881422,34.096132],[-117.881422,34.096445],[-117.879383,34.096445],[-117.879226,34.095661],[-117.878913,34.095661],[-117.878913,34.095347],[-117.876403,34.095347],[-117.876403,34.093936],[-117.872953,34.093779],[-117.872953,34.094093],[-117.872482,34.094250],[-117.872482,34.088133],[-117.872639,34.088133],[-117.872639,34.087349],[-117.872639,34.086251],[-117.872482,34.086251],[-117.872326,34.074958],[-117.873423,34.074331],[-117.874364,34.073390],[-117.881265,34.073547],[-117.881265,34.073547],[-117.881422,34.075272],[-117.892401,34.075429],[-117.892401,34.073547],[-117.898832,34.073547],[-117.898832,34.075429],[-117.900714,34.075429]]]}}
,{"id":91773,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-117.837664,34.106640],[-117.837664,34.114012],[-117.828881,34.113855],[-117.828881,34.114482],[-117.826999,34.114482],[-117.826528,34.113855],[-117.825430,34.113855],[-117.825430,34.115737],[-117.824803,34.115737],[-117.825117,34.117462],[-117.824019,34.117619],[-117.824019,34.115737],[-117.823548,34.115737],[-117.823391,34.117619],[-117.820254,34.117619],[-117.820254,34.121383],[-117.817588,34.121540],[-117.813354,34.122638],[-117.812883,34.123736],[-117.813981,34.123422],[-117.815706,34.122795],[-117.816020,34.123422],[-117.815392,34.125931],[-117.816333,34.126088],[-117.816804,34.123892],[-117.817275,34.123736],[-117.817275,34.123265],[-117.817588,34.123265],[-117.818216,34.122481],[-117.816804,34.121697],[-117.817431,34.121540],[-117.818059,34.121854],[-117.820254,34.121854],[-117.820254,34.126872],[-117.811785,34.125304],[-117.811628,34.149928],[-117.811785,34.150398],[-117.811471,34.157770],[-117.802845,34.157770],[-117.802688,34.165141],[-117.793905,34.165141],[-117.780888,34.165141],[-117.781044,34.150398],[-117.774771,34.150555],[-117.774457,34.149457],[-117.774771,34.148987],[-117.775712,34.148360],[-117.775869,34.147889],[-117.776182,34.146948],[-117.776182,34.145850],[-117.776496,34.144752],[-117.776653,34.140047],[-117.776810,34.139733],[-117.780731,34.134558],[-117.782613,34.133617],[-117.784338,34.131891],[-117.783868,34.131734],[-117.784024,34.130009],[-117.785279,34.129225],[-117.785279,34.129382],[-117.785279,34.129539],[-117.786377,34.129852],[-117.788573,34.129382],[-117.789827,34.128127],[-117.790141,34.128598],[-117.793435,34.127029],[-117.794062,34.126245],[-117.794219,34.124833],[-117.793905,34.122481],[-117.791553,34.122010],[-117.789357,34.121383],[-117.790925,34.120912],[-117.791553,34.120285],[-117.791553,34.119501],[-117.791866,34.119501],[-117.791710,34.115737],[-117.794062,34.115737],[-117.794062,34.106640],[-117.791553,34.106640],[-117.791553,34.103974],[-117.791239,34.103033],[-117.794062,34.103033],[-117.793905,34.102092],[-117.796572,34.102719],[-117.796728,34.101307],[-117.801434,34.101307],[-117.801434,34.099425],[-117.798767,34.099425],[-117.797669,34.099896],[-117.796728,34.099425],[-117.795474,34.099425],[-117.795631,34.098798],[-117.796258,34.098327],[-117.796258,34.097700],[-117.796572,34.097386],[-117.795944,34.095975],[-117.795160,34.095818],[-117.794690,34.095347],[-117.793121,34.095347],[-117.790925,34.095975],[-117.789984,34.095975],[-117.787318,34.095504],[-117.787475,34.094877],[-117.789357,34.095034],[-117.790141,34.094877],[-117.791710,34.093936],[-117.792651,34.093779],[-117.793121,34.093152],[-117.793121,34.092681],[-117.792651,34.091583],[-117.792023,34.090799],[-117.786377,34.090485],[-117.785906,34.090172],[-117.784809,34.089388],[-117.784024,34.089074],[-117.784181,34.088603],[-117.784965,34.088447],[-117.784965,34.088290],[-117.785436,34.088447],[-117.786847,34.088290],[-117.786847,34.088133],[-117.785436,34.085153],[-117.784024,34.084839],[-117.781985,34.085310],[-117.781044,34.083741],[-117.783868,34.081075],[-117.784809,34.081232],[-117.786691,34.080448],[-117.788102,34.080291],[-117.789200,34.079663],[-117.790298,34.078722],[-117.790768,34.078566],[-117.791553,34.078722],[-117.792807,34.079350],[-117.793748,34.079663],[-117.795317,34.079350],[-117.796572,34.079507],[-117.797669,34.079350],[-117.798297,34.079036],[-117.799552,34.078095],[-117.808805,34.077311],[-117.813510,34.077625],[-117.810687,34.074645],[-117.808491,34.071821],[-117.807237,34.069312],[-117.806766,34.068528],[-117.805668,34.067744],[-117.802845,34.066803],[-117.804570,34.066018],[-117.805355,34.066175],[-117.807394,34.065234],[-117.807237,34.065077],[-117.808021,34.064764],[-117.810060,34.064293],[-117.811942,34.063979],[-117.819784,34.063666],[-117.825744,34.063979],[-117.826999,34.064293],[-117.828881,34.064920],[-117.832018,34.066489],[-117.833743,34.067116],[-117.833900,34.068841],[-117.833743,34.068841],[-117.834527,34.069469],[-117.834684,34.069312],[-117.834997,34.069783],[-117.834684,34.069626],[-117.834841,34.069939],[-117.834997,34.070253],[-117.835468,34.070253],[-117.835625,34.070724],[-117.836880,34.070096],[-117.838448,34.071665],[-117.840016,34.072135],[-117.842055,34.071978],[-117.843153,34.072292],[-117.845192,34.072762],[-117.846761,34.072606],[-117.847545,34.072292],[-117.847231,34.072919],[-117.847858,34.073704],[-117.848486,34.074017],[-117.844878,34.077938],[-117.843781,34.077938],[-117.843310,34.078252],[-117.844094,34.078879],[-117.841898,34.080918],[-117.843781,34.081859],[-117.845035,34.082173],[-117.844878,34.082643],[-117.845192,34.083428],[-117.844878,34.083741],[-117.843781,34.084369],[-117.842369,34.084055],[-117.837350,34.084682],[-117.838291,34.087035],[-117.837664,34.086721],[-117.837664,34.088447],[-117.838134,34.088447],[-117.839075,34.088603],[-117.839860,34.088447],[-117.841428,34.087505],[-117.843310,34.088133],[-117.844251,34.088290],[-117.844722,34.088290],[-117.845192,34.087976],[-117.845035,34.087035],[-117.845192,34.086721],[-117.845663,34.086721],[-117.846917,34.086721],[-117.847388,34.086564],[-117.849113,34.085467],[-117.849113,34.085153],[-117.848956,34.084682],[-117.848956,34.084526],[-117.850682,34.084055],[-117.851779,34.083271],[-117.851623,34.084682],[-117.851152,34.085937],[-117.851466,34.085623],[-117.852093,34.085623],[-117.852250,34.086251],[-117.850995,34.086408],[-117.850054,34.087035],[-117.849897,34.087976],[-117.848329,34.088603],[-117.846447,34.089858],[-117.846447,34.092838],[-117.845506,34.093309],[-117.845506,34.093465],[-117.845035,34.093622],[-117.840801,34.095818],[-117.842055,34.095818],[-117.842055,34.101151],[-117.839860,34.101307],[-117.839860,34.099896],[-117.840016,34.099896],[-117.840016,34.099425],[-117.839860,34.099425],[-117.839860,34.096289],[-117.839232,34.096602],[-117.839075,34.096602],[-117.837664,34.097230],[-117.837664,34.106640]]]}}
,{"id":91702,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-117.890048,34.136910],[-117.889892,34.135969],[-117.889892,34.133460],[-117.889107,34.133460],[-117.888637,34.133146],[-117.888010,34.132989],[-117.886598,34.132832],[-117.886284,34.132048],[-117.881265,34.132519],[-117.881265,34.130950],[-117.881422,34.114012],[-117.883775,34.114012],[-117.884716,34.113227],[-117.885500,34.112757],[-117.888323,34.111502],[-117.890205,34.111502],[-117.890205,34.108522],[-117.887069,34.108522],[-117.887225,34.106797],[-117.907144,34.106797],[-117.915457,34.107111],[-117.925338,34.106954],[-117.925338,34.110561],[-117.927533,34.110561],[-117.927533,34.108836],[-117.928631,34.108836],[-117.928631,34.114325],[-117.938198,34.114482],[-117.938198,34.114953],[-117.938198,34.121697],[-117.935689,34.121540],[-117.934277,34.122951],[-117.934121,34.123892],[-117.934434,34.126716],[-117.934434,34.128127],[-117.934434,34.128598],[-117.933650,34.128755],[-117.933650,34.129382],[-117.933650,34.133773],[-117.933493,34.133773],[-117.929415,34.133773],[-117.929415,34.140518],[-117.931925,34.140988],[-117.924710,34.147262],[-117.924867,34.165298],[-117.924710,34.171258],[-117.925494,34.194000],[-117.949020,34.194157],[-117.957333,34.194157],[-117.956862,34.194471],[-117.957019,34.194627],[-117.957019,34.195882],[-117.957176,34.195882],[-117.958117,34.195255],[-117.958117,34.196196],[-117.959058,34.196196],[-117.958588,34.196666],[-117.958274,34.197921],[-117.958745,34.198705],[-117.959058,34.198862],[-117.959529,34.199333],[-117.959529,34.200274],[-117.959372,34.200744],[-117.959999,34.202156],[-117.959842,34.203411],[-117.960470,34.203567],[-117.960470,34.203724],[-117.959842,34.203881],[-117.959372,34.203881],[-117.958745,34.203567],[-117.958431,34.202940],[-117.958117,34.202626],[-117.957333,34.203097],[-117.956862,34.202470],[-117.956549,34.202313],[-117.956235,34.202470],[-117.956235,34.203097],[-117.955921,34.203254],[-117.955765,34.203881],[-117.956392,34.203724],[-117.957019,34.203881],[-117.956862,34.204822],[-117.957490,34.205293],[-117.957647,34.205763],[-117.957647,34.206077],[-117.958274,34.207175],[-117.958117,34.207645],[-117.958117,34.208116],[-117.957647,34.208273],[-117.957960,34.208900],[-117.957490,34.209057],[-117.957333,34.209370],[-117.957647,34.209684],[-117.958274,34.209841],[-117.958745,34.210155],[-117.959058,34.210782],[-117.958901,34.211253],[-117.959372,34.211723],[-117.959529,34.211880],[-117.960313,34.211723],[-117.960627,34.211880],[-117.960784,34.212037],[-117.959999,34.212821],[-117.959999,34.213448],[-117.960156,34.213762],[-117.959529,34.213762],[-117.959058,34.213291],[-117.958588,34.213291],[-117.958745,34.214546],[-117.958274,34.214546],[-117.958117,34.214860],[-117.957647,34.215801],[-117.957647,34.216115],[-117.957176,34.216428],[-117.956549,34.215958],[-117.956078,34.215801],[-117.955451,34.215174],[-117.955294,34.215174],[-117.955137,34.215644],[-117.954824,34.215801],[-117.954510,34.216742],[-117.953255,34.216742],[-117.953098,34.217056],[-117.952157,34.217056],[-117.952000,34.217369],[-117.952941,34.218467],[-117.952941,34.218781],[-117.952628,34.218938],[-117.951687,34.219095],[-117.951216,34.219408],[-117.951059,34.219408],[-117.951373,34.219722],[-117.952941,34.220036],[-117.953569,34.219408],[-117.954353,34.219565],[-117.954980,34.219408],[-117.955137,34.218938],[-117.956235,34.218624],[-117.956549,34.218781],[-117.957333,34.218624],[-117.957960,34.217683],[-117.958431,34.217683],[-117.958901,34.217840],[-117.959529,34.217526],[-117.960313,34.216899],[-117.961411,34.216742],[-117.961568,34.217213],[-117.962352,34.217369],[-117.963293,34.216585],[-117.963607,34.216428],[-117.964548,34.215801],[-117.965175,34.216428],[-117.966430,34.216428],[-117.967057,34.216585],[-117.967841,34.217840],[-117.967841,34.218310],[-117.968469,34.218310],[-117.969880,34.217683],[-117.970194,34.218310],[-117.970508,34.218624],[-117.970978,34.218624],[-117.971449,34.218310],[-117.971919,34.218624],[-117.972233,34.218624],[-117.972390,34.218781],[-117.972390,34.219095],[-117.972547,34.219408],[-117.972860,34.219251],[-117.973331,34.218938],[-117.973801,34.218781],[-117.973958,34.218467],[-117.975056,34.218154],[-117.977252,34.217840],[-117.978036,34.217997],[-117.978193,34.217840],[-117.978036,34.217369],[-117.978506,34.217056],[-117.979134,34.216899],[-117.979134,34.216271],[-117.979918,34.216115],[-117.980075,34.216115],[-117.980389,34.216428],[-117.981016,34.216271],[-117.981173,34.216115],[-117.981173,34.215801],[-117.981643,34.215801],[-117.982114,34.215174],[-117.982114,34.215644],[-117.982584,34.216115],[-117.982427,34.216428],[-117.982741,34.216899],[-117.983212,34.217056],[-117.983212,34.217369],[-117.984153,34.217369],[-117.984466,34.217683],[-117.985251,34.217369],[-117.986035,34.217526],[-117.986976,34.217369],[-117.987290,34.216899],[-117.987917,34.216428],[-117.988387,34.216585],[-117.989015,34.215958],[-117.989485,34.216115],[-117.989956,34.216115],[-117.989956,34.216742],[-117.989172,34.216742],[-117.989172,34.217213],[-117.988858,34.217369],[-117.988387,34.217840],[-117.988074,34.217997],[-117.987760,34.218467],[-117.987290,34.218781],[-117.987446,34.219251],[-117.986035,34.219565],[-117.986035,34.219879],[-117.985878,34.220036],[-117.985878,34.220192],[-117.986662,34.220663],[-117.986662,34.220977],[-117.986035,34.221290],[-117.986035,34.221604],[-117.987290,34.221761],[-117.988701,34.222231],[-117.990426,34.221604],[-117.990583,34.221761],[-117.991995,34.221761],[-117.992152,34.222231],[-117.992936,34.222859],[-117.993406,34.224113],[-117.994191,34.224741],[-117.994975,34.224898],[-117.995132,34.225055],[-117.996073,34.224898],[-117.997014,34.225055],[-117.997641,34.226152],[-117.999366,34.225839],[-118.001248,34.226309],[-118.002033,34.226780],[-118.002346,34.226937],[-118.002189,34.227250],[-118.001876,34.227407],[-118.001876,34.228034],[-118.001719,34.228191],[-118.002189,34.228662],[-118.002346,34.228976],[-118.002660,34.228976],[-118.003287,34.228662],[-118.004071,34.228819],[-118.004542,34.228662],[-118.004856,34.228191],[-118.006581,34.228976],[-118.006738,34.229132],[-118.006581,34.229289],[-118.006895,34.229760],[-118.006895,34.230701],[-118.006424,34.231328],[-118.006895,34.231799],[-118.007051,34.232269],[-118.007836,34.232269],[-118.008306,34.231642],[-118.008463,34.231014],[-118.009090,34.230701],[-118.009718,34.231014],[-118.010972,34.231014],[-118.011286,34.231328],[-118.011286,34.232269],[-118.011600,34.232583],[-118.012070,34.232583],[-118.012384,34.233053],[-118.012541,34.233210],[-118.013168,34.232740],[-118.013482,34.232740],[-118.013639,34.232897],[-118.013325,34.233524],[-118.012855,34.233681],[-118.012698,34.234622],[-118.013952,34.235092],[-118.015207,34.234935],[-118.015678,34.234622],[-118.016148,34.234935],[-118.016619,34.235249],[-118.016462,34.235720],[-118.016619,34.236190],[-118.016619,34.236347],[-118.016932,34.236504],[-118.017873,34.236347],[-118.018344,34.236661],[-118.019128,34.236033],[-118.019756,34.236033],[-118.021951,34.235563],[-118.022422,34.235563],[-118.022735,34.235877],[-118.022892,34.235563],[-118.024774,34.235563],[-118.025088,34.235563],[-118.025245,34.236190],[-118.025402,34.236347],[-118.025715,34.236504],[-118.026186,34.236347],[-118.026343,34.236661],[-118.027598,34.235406],[-118.027598,34.235092],[-118.027441,34.234465],[-118.027598,34.234308],[-118.027754,34.234151],[-118.029166,34.234622],[-118.029793,34.234779],[-118.030421,34.235249],[-118.030421,34.235877],[-118.031675,34.235720],[-118.031832,34.235877],[-118.031832,34.236661],[-118.032616,34.237288],[-118.033557,34.236661],[-118.034655,34.236347],[-118.034812,34.236504],[-118.034812,34.237131],[-118.035126,34.237445],[-118.035596,34.237131],[-118.036224,34.236974],[-118.036694,34.236504],[-118.037008,34.236504],[-118.037322,34.236974],[-118.038106,34.237131],[-118.038420,34.237288],[-118.039047,34.238229],[-118.039204,34.238386],[-118.039831,34.238072],[-118.040145,34.238386],[-118.040145,34.239013],[-118.040302,34.239013],[-118.040929,34.238700],[-118.040929,34.238386],[-118.041399,34.237759],[-118.042341,34.238072],[-118.042497,34.238386],[-118.043125,34.238856],[-118.043282,34.239170],[-118.043438,34.239170],[-118.044379,34.239170],[-118.044536,34.239013],[-118.044536,34.238700],[-118.044693,34.238543],[-118.044850,34.238543],[-118.045007,34.238700],[-118.045164,34.239013],[-118.045477,34.239327],[-118.045477,34.239484],[-118.045320,34.239798],[-118.044379,34.240425],[-118.043752,34.241209],[-118.044223,34.241993],[-118.044693,34.242150],[-118.045164,34.242777],[-118.045007,34.242934],[-118.045007,34.243719],[-118.045164,34.244032],[-118.045320,34.244346],[-118.045320,34.244503],[-118.045634,34.244816],[-118.046418,34.244189],[-118.047359,34.244189],[-118.048614,34.244660],[-118.049241,34.245444],[-118.049712,34.245287],[-118.049712,34.245130],[-118.050183,34.245130],[-118.050810,34.244973],[-118.051280,34.245287],[-118.051437,34.250933],[-118.051280,34.268029],[-118.032146,34.268029],[-118.032146,34.266774],[-117.979134,34.267088],[-117.979291,34.294849],[-117.978977,34.338136],[-117.950589,34.338293],[-117.874678,34.338450],[-117.874835,34.360251],[-117.874051,34.360565],[-117.872639,34.361663],[-117.870757,34.361819],[-117.868875,34.361506],[-117.867150,34.361349],[-117.866522,34.361663],[-117.865895,34.362290],[-117.865268,34.362604],[-117.864640,34.362604],[-117.863542,34.362133],[-117.858994,34.359624],[-117.858680,34.358839],[-117.858994,34.358212],[-117.859935,34.357585],[-117.859935,34.357428],[-117.859778,34.356173],[-117.859308,34.356016],[-117.858837,34.356016],[-117.857112,34.356487],[-117.855230,34.356800],[-117.854289,34.356800],[-117.851779,34.356644],[-117.848329,34.357428],[-117.847388,34.357271],[-117.845035,34.356330],[-117.844251,34.356173],[-117.843781,34.356330],[-117.843153,34.356957],[-117.842996,34.357428],[-117.842996,34.358212],[-117.842683,34.358839],[-117.841271,34.359153],[-117.840487,34.358996],[-117.840016,34.358683],[-117.839860,34.357898],[-117.839389,34.357585],[-117.838762,34.357114],[-117.837664,34.356957],[-117.837350,34.356644],[-117.837350,34.355703],[-117.837036,34.354291],[-117.836723,34.353977],[-117.835939,34.353821],[-117.835468,34.353193],[-117.834997,34.351782],[-117.835154,34.350527],[-117.834841,34.349899],[-117.834213,34.349743],[-117.832645,34.349586],[-117.831233,34.349899],[-117.828724,34.348645],[-117.827940,34.347390],[-117.827783,34.345978],[-117.827155,34.345351],[-117.826371,34.345351],[-117.825117,34.345665],[-117.824019,34.345037],[-117.821196,34.344567],[-117.820725,34.344881],[-117.820254,34.345194],[-117.820568,34.346920],[-117.819941,34.347704],[-117.819941,34.349586],[-117.819313,34.350213],[-117.817588,34.350056],[-117.816490,34.349115],[-117.815079,34.348802],[-117.814138,34.348488],[-117.810844,34.347861],[-117.810530,34.348017],[-117.810060,34.348331],[-117.809903,34.348802],[-117.810217,34.349743],[-117.809903,34.350370],[-117.809119,34.350997],[-117.809119,34.352409],[-117.808491,34.353664],[-117.808335,34.354291],[-117.809276,34.355075],[-117.809589,34.356487],[-117.810687,34.356957],[-117.811628,34.358212],[-117.812569,34.358683],[-117.812883,34.359310],[-117.812726,34.359624],[-117.811785,34.360094],[-117.810687,34.360251],[-117.810217,34.360408],[-117.809903,34.361035],[-117.809903,34.361663],[-117.809746,34.362133],[-117.807394,34.363858],[-117.806766,34.365113],[-117.804884,34.366525],[-117.803786,34.368093],[-117.801590,34.368093],[-117.801120,34.367779],[-117.800806,34.367466],[-117.800806,34.366995],[-117.800963,34.366525],[-117.802061,34.365584],[-117.802218,34.364799],[-117.802688,34.364172],[-117.802845,34.363858],[-117.802532,34.362604],[-117.802375,34.362133],[-117.801904,34.361663],[-117.799395,34.361192],[-117.799238,34.360878],[-117.798611,34.358683],[-117.798297,34.358055],[-117.797826,34.357898],[-117.796728,34.358212],[-117.795631,34.359310],[-117.793905,34.359467],[-117.792964,34.360094],[-117.791239,34.360721],[-117.790925,34.360878],[-117.790768,34.361349],[-117.790612,34.362604],[-117.790455,34.363074],[-117.789357,34.363545],[-117.789043,34.363858],[-117.789043,34.365427],[-117.788573,34.365740],[-117.787789,34.365897],[-117.787475,34.366054],[-117.787632,34.367466],[-117.787632,34.367779],[-117.787318,34.368093],[-117.786691,34.368407],[-117.785593,34.368093],[-117.784809,34.368093],[-117.783868,34.367622],[-117.781985,34.366995],[-117.781358,34.367309],[-117.781201,34.367936],[-117.781044,34.368720],[-117.780731,34.369191],[-117.780731,34.369348],[-117.782142,34.371857],[-117.781985,34.372641],[-117.781358,34.373426],[-117.781201,34.373896],[-117.781672,34.374994],[-117.782456,34.375778],[-117.782456,34.376092],[-117.781829,34.376876],[-117.781044,34.377347],[-117.779947,34.377347],[-117.779476,34.377190],[-117.779319,34.376719],[-117.779319,34.375308],[-117.778849,34.374680],[-117.778378,34.374523],[-117.775869,34.374680],[-117.774928,34.375464],[-117.774457,34.375464],[-117.773359,34.374994],[-117.772732,34.374837],[-117.772418,34.374994],[-117.770850,34.375778],[-117.768340,34.375621],[-117.768183,34.375464],[-117.767556,34.374523],[-117.767399,34.373112],[-117.766929,34.372798],[-117.766145,34.372485],[-117.765517,34.372485],[-117.764890,34.372641],[-117.763792,34.373269],[-117.763165,34.374053],[-117.762537,34.374210],[-117.760812,34.374210],[-117.758773,34.373896],[-117.756264,34.374210],[-117.753440,34.373112],[-117.750931,34.373426],[-117.750304,34.373269],[-117.749049,34.372485],[-117.747481,34.372328],[-117.746696,34.372641],[-117.746069,34.373269],[-117.745912,34.374994],[-117.746069,34.376092],[-117.746383,34.377190],[-117.746069,34.377660],[-117.745598,34.377817],[-117.744030,34.377817],[-117.742932,34.378444],[-117.741991,34.378601],[-117.741364,34.378288],[-117.741050,34.377817],[-117.740423,34.376719],[-117.738227,34.375935],[-117.737286,34.375778],[-117.735718,34.376406],[-117.734149,34.376406],[-117.733208,34.376719],[-117.731640,34.376876],[-117.731326,34.377347],[-117.731169,34.378601],[-117.730855,34.378915],[-117.730385,34.379072],[-117.729601,34.379229],[-117.728817,34.378915],[-117.727875,34.378288],[-117.726307,34.377974],[-117.726150,34.377503],[-117.726464,34.376562],[-117.726150,34.375935],[-117.724425,34.375621],[-117.723170,34.374523],[-117.722386,34.374680],[-117.720661,34.375151],[-117.720033,34.374994],[-117.719720,34.374994],[-117.717995,34.374053],[-117.717210,34.373896],[-117.713917,34.373896],[-117.712819,34.373426],[-117.711564,34.372014],[-117.710780,34.372014],[-117.709996,34.372328],[-117.707643,34.372171],[-117.705604,34.371387],[-117.704349,34.370289],[-117.704193,34.369661],[-117.703722,34.369191],[-117.703095,34.369505],[-117.702624,34.370132],[-117.702310,34.370289],[-117.702154,34.369818],[-117.702467,34.369034],[-117.702310,34.368720],[-117.701213,34.368877],[-117.699801,34.369661],[-117.699017,34.369818],[-117.698546,34.370446],[-117.698233,34.370602],[-117.697919,34.370446],[-117.697919,34.369505],[-117.697605,34.369191],[-117.697135,34.369191],[-117.696351,34.369348],[-117.695880,34.369191],[-117.695723,34.368720],[-117.695880,34.368093],[-117.695410,34.367622],[-117.694468,34.367779],[-117.691959,34.368877],[-117.690861,34.368720],[-117.690547,34.368407],[-117.690547,34.367466],[-117.691802,34.365270],[-117.691802,34.365113],[-117.691489,34.364799],[-117.690234,34.364642],[-117.689606,34.364172],[-117.689606,34.363858],[-117.688822,34.363858],[-117.688038,34.362290],[-117.688195,34.361663],[-117.688195,34.361506],[-117.687254,34.360251],[-117.686313,34.359624],[-117.686313,34.358369],[-117.685999,34.357585],[-117.684744,34.356173],[-117.684588,34.355389],[-117.684431,34.355546],[-117.683803,34.356016],[-117.683490,34.356173],[-117.682705,34.356016],[-117.682078,34.355546],[-117.680353,34.354762],[-117.679569,34.353821],[-117.678471,34.352879],[-117.678000,34.352409],[-117.678000,34.352095],[-117.678314,34.351311],[-117.678314,34.350997],[-117.677059,34.350370],[-117.676589,34.350370],[-117.676275,34.350056],[-117.675648,34.349899],[-117.675177,34.349272],[-117.674707,34.349115],[-117.672354,34.348331],[-117.669688,34.347861],[-117.668276,34.347233],[-117.665924,34.347233],[-117.665139,34.346135],[-117.665296,34.345351],[-117.664669,34.344410],[-117.664826,34.343940],[-117.665453,34.343312],[-117.665453,34.342528],[-117.665139,34.342214],[-117.663728,34.341901],[-117.663100,34.342057],[-117.662787,34.342528],[-117.662316,34.342528],[-117.661846,34.342842],[-117.660905,34.342999],[-117.660120,34.342685],[-117.659336,34.342685],[-117.658081,34.340960],[-117.656670,34.340332],[-117.656827,34.339705],[-117.656670,34.339078],[-117.656199,34.339078],[-117.655572,34.339234],[-117.654474,34.340019],[-117.653847,34.340175],[-117.652749,34.340019],[-117.651337,34.339234],[-117.650396,34.339078],[-117.650396,34.338921],[-117.661532,34.338450],[-117.765360,34.338450],[-117.765831,34.338136],[-117.766301,34.336882],[-117.766615,34.336568],[-117.766772,34.335470],[-117.766772,34.335156],[-117.767399,34.334372],[-117.768027,34.332177],[-117.769438,34.331392],[-117.769125,34.330451],[-117.768183,34.329197],[-117.768183,34.328412],[-117.768811,34.327785],[-117.768811,34.327628],[-117.768340,34.327314],[-117.768654,34.326687],[-117.769438,34.326373],[-117.769909,34.325746],[-117.770222,34.325276],[-117.769909,34.324962],[-117.770222,34.324648],[-117.770693,34.324648],[-117.771007,34.324178],[-117.771007,34.323864],[-117.770850,34.323707],[-117.769752,34.323393],[-117.769595,34.323237],[-117.769438,34.322609],[-117.769125,34.322609],[-117.768968,34.322296],[-117.768968,34.321511],[-117.768654,34.320570],[-117.768654,34.319629],[-117.768340,34.319159],[-117.768811,34.318375],[-117.768654,34.317747],[-117.768340,34.317434],[-117.768497,34.316963],[-117.768497,34.316806],[-117.767713,34.316649],[-117.766929,34.316179],[-117.766145,34.316179],[-117.765831,34.315708],[-117.765831,34.315395],[-117.766458,34.315238],[-117.766929,34.314767],[-117.767086,34.313983],[-117.766772,34.313356],[-117.767086,34.312885],[-117.765831,34.311787],[-117.765204,34.310533],[-117.764576,34.310062],[-117.764106,34.308650],[-117.763008,34.307553],[-117.762851,34.306298],[-117.763008,34.305200],[-117.762537,34.304416],[-117.762224,34.304259],[-117.762224,34.303475],[-117.760341,34.300965],[-117.758773,34.300181],[-117.757989,34.299554],[-117.757989,34.298613],[-117.757832,34.298456],[-117.757205,34.298613],[-117.756420,34.299240],[-117.755950,34.299397],[-117.755166,34.299240],[-117.753284,34.297358],[-117.752656,34.297044],[-117.751245,34.297515],[-117.750617,34.298142],[-117.750304,34.298770],[-117.750617,34.299397],[-117.750304,34.300024],[-117.748892,34.299867],[-117.748422,34.300024],[-117.748108,34.300652],[-117.747794,34.300652],[-117.747324,34.300495],[-117.746383,34.300495],[-117.745755,34.299867],[-117.744501,34.299240],[-117.743246,34.299240],[-117.742932,34.298299],[-117.743246,34.297358],[-117.742932,34.297044],[-117.742305,34.296731],[-117.749676,34.296574],[-117.749990,34.252345],[-117.749676,34.222859],[-117.787632,34.223172],[-117.787004,34.222702],[-117.787318,34.221918],[-117.787632,34.221761],[-117.788573,34.221761],[-117.788886,34.220977],[-117.788886,34.220820],[-117.788573,34.220663],[-117.788416,34.220349],[-117.788886,34.219722],[-117.788730,34.219251],[-117.789043,34.219095],[-117.789357,34.217997],[-117.789357,34.217683],[-117.788416,34.216742],[-117.788416,34.216271],[-117.788730,34.216115],[-117.789671,34.216428],[-117.791082,34.217213],[-117.791396,34.217213],[-117.791553,34.216899],[-117.792023,34.216899],[-117.792337,34.217526],[-117.792180,34.218310],[-117.792180,34.218938],[-117.793121,34.218938],[-117.793592,34.219722],[-117.794219,34.219722],[-117.794690,34.218938],[-117.795631,34.218624],[-117.795474,34.217997],[-117.795631,34.217526],[-117.796572,34.217213],[-117.796728,34.216428],[-117.797983,34.216271],[-117.798140,34.215958],[-117.798140,34.215487],[-117.798611,34.215330],[-117.798767,34.215174],[-117.798611,34.214546],[-117.798611,34.214233],[-117.799238,34.214076],[-117.799552,34.213762],[-117.799708,34.213291],[-117.799552,34.212821],[-117.799708,34.212350],[-117.800336,34.212194],[-117.801120,34.212821],[-117.801747,34.212978],[-117.802218,34.212978],[-117.802218,34.212194],[-117.801747,34.211723],[-117.801434,34.210782],[-117.800806,34.210468],[-117.800649,34.209998],[-117.800806,34.209841],[-117.801747,34.209998],[-117.802532,34.209841],[-117.802688,34.209527],[-117.802532,34.209214],[-117.802688,34.208743],[-117.802061,34.208273],[-117.801434,34.207959],[-117.801277,34.207645],[-117.801904,34.206704],[-117.803159,34.206391],[-117.803473,34.205606],[-117.804257,34.205606],[-117.804257,34.204822],[-117.804570,34.204352],[-117.804884,34.204195],[-117.805825,34.204352],[-117.807550,34.204195],[-117.808021,34.203881],[-117.808805,34.204038],[-117.810217,34.205606],[-117.811158,34.205449],[-117.811471,34.205449],[-117.811942,34.205920],[-117.812726,34.205920],[-117.812569,34.205449],[-117.812883,34.204979],[-117.813040,34.204508],[-117.813354,34.203881],[-117.813824,34.201842],[-117.814765,34.200431],[-117.814608,34.199803],[-117.814765,34.199333],[-117.815392,34.198392],[-117.817275,34.197451],[-117.818372,34.197451],[-117.818843,34.197137],[-117.818843,34.196353],[-117.819157,34.196039],[-117.819627,34.195255],[-117.819784,34.194157],[-117.820568,34.192275],[-117.820098,34.189452],[-117.820568,34.188981],[-117.820882,34.188824],[-117.821039,34.188197],[-117.821980,34.188040],[-117.822293,34.187256],[-117.823234,34.186785],[-117.823391,34.186158],[-117.823705,34.185531],[-117.822921,34.185531],[-117.822607,34.185217],[-117.821196,34.184747],[-117.820882,34.184433],[-117.821039,34.183962],[-117.821823,34.182237],[-117.822293,34.180355],[-117.822764,34.179571],[-117.844722,34.179414],[-117.844722,34.177532],[-117.846761,34.177532],[-117.846604,34.172199],[-117.837821,34.172199],[-117.837664,34.168435],[-117.838448,34.168278],[-117.838605,34.167180],[-117.838918,34.167024],[-117.839232,34.165769],[-117.839703,34.165141],[-117.850682,34.164985],[-117.850995,34.179414],[-117.864640,34.179257],[-117.864327,34.172199],[-117.881265,34.172042],[-117.881265,34.164985],[-117.871071,34.165141],[-117.871384,34.164828],[-117.871855,34.164671],[-117.871855,34.164357],[-117.873110,34.163259],[-117.873267,34.162789],[-117.873737,34.162162],[-117.875462,34.161848],[-117.876090,34.162318],[-117.876403,34.162946],[-117.876874,34.163259],[-117.877031,34.163887],[-117.877501,34.164200],[-117.877658,34.164357],[-117.878756,34.163259],[-117.879070,34.162318],[-117.879540,34.162005],[-117.879854,34.161377],[-117.880481,34.160907],[-117.882050,34.160123],[-117.882677,34.159495],[-117.883461,34.159338],[-117.886912,34.156672],[-117.888480,34.156672],[-117.890048,34.156202],[-117.890048,34.150085],[-117.890833,34.147262],[-117.890519,34.146948],[-117.890676,34.146477],[-117.890362,34.146634],[-117.890205,34.146007],[-117.890362,34.145380],[-117.890048,34.144125],[-117.890048,34.136910]]]}}
,{"id":91741,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-117.890048,34.136910],[-117.890048,34.144125],[-117.890362,34.145380],[-117.890205,34.146007],[-117.890362,34.146634],[-117.890676,34.146477],[-117.890519,34.146948],[-117.890833,34.147262],[-117.890048,34.150085],[-117.890048,34.156202],[-117.888480,34.156672],[-117.886912,34.156672],[-117.883461,34.159338],[-117.882677,34.159495],[-117.882050,34.160123],[-117.880481,34.160907],[-117.879854,34.161377],[-117.879540,34.162005],[-117.879070,34.162318],[-117.878756,34.163259],[-117.877658,34.164357],[-117.877501,34.164200],[-117.877031,34.163887],[-117.876874,34.163259],[-117.876403,34.162946],[-117.876090,34.162318],[-117.875462,34.161848],[-117.873737,34.162162],[-117.873267,34.162789],[-117.873110,34.163259],[-117.871855,34.164357],[-117.871855,34.164671],[-117.871384,34.164828],[-117.871071,34.165141],[-117.881265,34.164985],[-117.881265,34.172042],[-117.864327,34.172199],[-117.864640,34.179257],[-117.850995,34.179414],[-117.850682,34.164985],[-117.839703,34.165141],[-117.839232,34.165769],[-117.838918,34.167024],[-117.838605,34.167180],[-117.838448,34.168278],[-117.837664,34.168435],[-117.837821,34.172199],[-117.846604,34.172199],[-117.846761,34.177532],[-117.844722,34.177532],[-117.844722,34.179414],[-117.822764,34.179571],[-117.794376,34.179728],[-117.793905,34.168121],[-117.793905,34.165141],[-117.802688,34.165141],[-117.802845,34.157770],[-117.811471,34.157770],[-117.811785,34.150398],[-117.811628,34.149928],[-117.811785,34.125304],[-117.820254,34.126872],[-117.820254,34.127029],[-117.828410,34.128441],[-117.828410,34.128441],[-117.832018,34.129068],[-117.833272,34.129225],[-117.840487,34.128911],[-117.840487,34.129852],[-117.861033,34.129852],[-117.862445,34.130009],[-117.863856,34.130480],[-117.863856,34.128598],[-117.868875,34.128598],[-117.868875,34.128755],[-117.868404,34.128755],[-117.868404,34.130480],[-117.868561,34.130480],[-117.868561,34.130950],[-117.872482,34.130950],[-117.872482,34.129852],[-117.877658,34.130009],[-117.877658,34.129539],[-117.880795,34.129539],[-117.880795,34.130009],[-117.881109,34.130009],[-117.881109,34.130950],[-117.881265,34.130950],[-117.881265,34.132519],[-117.886284,34.132048],[-117.886598,34.132832],[-117.888010,34.132989],[-117.888637,34.133146],[-117.889107,34.133460],[-117.889892,34.133460],[-117.889892,34.135969],[-117.890048,34.136910]]]}}
,{"id":91765,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-117.823391,34.010811],[-117.824646,34.015673],[-117.824960,34.016614],[-117.827312,34.020691],[-117.828097,34.021633],[-117.829508,34.022887],[-117.821352,34.031043],[-117.817745,34.034807],[-117.809746,34.030886],[-117.805511,34.036846],[-117.805668,34.037003],[-117.802375,34.040924],[-117.801590,34.042806],[-117.801277,34.042649],[-117.798454,34.040767],[-117.797042,34.039355],[-117.795631,34.038258],[-117.794219,34.037630],[-117.792494,34.037003],[-117.785122,34.032454],[-117.785122,34.027279],[-117.781672,34.025710],[-117.779476,34.026024],[-117.777280,34.025710],[-117.770850,34.023828],[-117.770850,34.022417],[-117.771320,34.021162],[-117.767713,34.019594],[-117.767086,34.011124],[-117.767556,34.004537],[-117.769909,34.004694],[-117.785122,34.004851],[-117.802532,33.975521],[-117.802375,33.968307],[-117.793592,33.968150],[-117.793592,33.953721],[-117.783240,33.946349],[-117.790141,33.946506],[-117.801904,33.946663],[-117.841898,33.946820],[-117.851936,33.946820],[-117.868404,33.945879],[-117.867463,33.946820],[-117.865895,33.948702],[-117.860876,33.956701],[-117.859465,33.958112],[-117.857896,33.959210],[-117.854916,33.960622],[-117.854916,33.960622],[-117.854916,33.960935],[-117.855073,33.974894],[-117.853818,33.974737],[-117.853034,33.974424],[-117.850838,33.972541],[-117.850368,33.971600],[-117.850368,33.970189],[-117.849740,33.970189],[-117.848956,33.970503],[-117.848329,33.970973],[-117.846917,33.972385],[-117.846290,33.972855],[-117.845349,33.973639],[-117.843937,33.975365],[-117.844878,33.975992],[-117.847231,33.978031],[-117.846761,33.978501],[-117.846604,33.978501],[-117.843467,33.975992],[-117.843781,33.975678],[-117.843153,33.975365],[-117.842526,33.976306],[-117.841898,33.977717],[-117.841585,33.979442],[-117.841585,33.980854],[-117.842683,33.984304],[-117.845035,33.984304],[-117.844878,33.985559],[-117.843624,33.987755],[-117.843310,33.989794],[-117.843781,33.989794],[-117.844565,33.990264],[-117.845192,33.990421],[-117.845192,33.991362],[-117.846917,33.991362],[-117.847231,33.992303],[-117.846917,33.992931],[-117.846447,33.993401],[-117.845349,33.993401],[-117.842683,33.992774],[-117.842369,33.994185],[-117.842212,33.995126],[-117.841898,33.993088],[-117.841114,33.994970],[-117.840330,33.996068],[-117.836880,33.999518],[-117.836880,33.999832],[-117.835154,34.001871],[-117.833429,34.002184],[-117.832018,34.002812],[-117.828881,34.005007],[-117.826371,34.007046],[-117.823234,34.010026],[-117.823391,34.010811]]]}}
,{"id":90303,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.343788,33.930822],[-118.343945,33.930979],[-118.345984,33.930979],[-118.347395,33.931763],[-118.346768,33.932233],[-118.346454,33.932390],[-118.347395,33.932704],[-118.347081,33.933175],[-118.347081,33.932704],[-118.345984,33.932704],[-118.345984,33.933175],[-118.345513,33.933175],[-118.345513,33.933488],[-118.345043,33.933488],[-118.345043,33.936782],[-118.345984,33.936782],[-118.345984,33.937409],[-118.345513,33.937409],[-118.345513,33.937880],[-118.345356,33.937880],[-118.345356,33.938193],[-118.344572,33.938193],[-118.344572,33.938978],[-118.344415,33.939134],[-118.344572,33.941330],[-118.344415,33.941330],[-118.344415,33.942742],[-118.343945,33.942742],[-118.343945,33.946035],[-118.343945,33.952780],[-118.342063,33.952623],[-118.341435,33.952936],[-118.340965,33.953407],[-118.339710,33.954034],[-118.338769,33.954348],[-118.337671,33.954191],[-118.336573,33.953721],[-118.335318,33.953721],[-118.335475,33.953250],[-118.335475,33.950584],[-118.335318,33.950113],[-118.335162,33.949329],[-118.334064,33.945722],[-118.334848,33.945722],[-118.335632,33.946035],[-118.339710,33.946192],[-118.339710,33.945408],[-118.333750,33.945408],[-118.334221,33.947133],[-118.329515,33.947133],[-118.329358,33.946192],[-118.329358,33.946035],[-118.329202,33.946192],[-118.326692,33.946192],[-118.326535,33.946192],[-118.326535,33.945408],[-118.317752,33.945408],[-118.317752,33.930979],[-118.322144,33.930822],[-118.322144,33.929097],[-118.326379,33.929097],[-118.326379,33.928156],[-118.326379,33.926744],[-118.325437,33.926744],[-118.323869,33.925960],[-118.320732,33.925960],[-118.317752,33.926117],[-118.317752,33.925332],[-118.321360,33.925332],[-118.332966,33.924705],[-118.334691,33.924862],[-118.336259,33.925176],[-118.335632,33.924078],[-118.335162,33.923921],[-118.335162,33.923764],[-118.337357,33.923764],[-118.337357,33.925803],[-118.336887,33.925489],[-118.336730,33.925646],[-118.336416,33.925646],[-118.337201,33.927058],[-118.337357,33.930038],[-118.342690,33.929881],[-118.343788,33.930822]]]}}
,{"id":90033,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.197456,34.064607],[-118.192750,34.063823],[-118.192594,34.063195],[-118.192594,34.054726],[-118.193221,34.054569],[-118.194946,34.052844],[-118.195260,34.053001],[-118.196985,34.050021],[-118.196515,34.049864],[-118.199495,34.044845],[-118.197769,34.044061],[-118.198083,34.043590],[-118.200436,34.043590],[-118.203416,34.038885],[-118.201220,34.037944],[-118.202318,34.036376],[-118.203416,34.036846],[-118.204670,34.034807],[-118.206082,34.034964],[-118.208435,34.035434],[-118.208591,34.035278],[-118.217374,34.039042],[-118.218159,34.037787],[-118.219413,34.037787],[-118.219570,34.038258],[-118.220198,34.035278],[-118.220982,34.033709],[-118.221452,34.034337],[-118.221295,34.034493],[-118.221609,34.035748],[-118.221609,34.039826],[-118.221452,34.041081],[-118.221609,34.042335],[-118.221609,34.041394],[-118.221923,34.039042],[-118.224589,34.039042],[-118.226314,34.038571],[-118.226157,34.038101],[-118.227726,34.038414],[-118.228667,34.041551],[-118.229922,34.047982],[-118.228667,34.052530],[-118.228510,34.053157],[-118.226314,34.055981],[-118.226942,34.061627],[-118.226785,34.062254],[-118.215806,34.063352],[-118.214865,34.060215],[-118.211101,34.062725],[-118.211414,34.063352],[-118.211414,34.064136],[-118.210160,34.064293],[-118.210160,34.063666],[-118.208905,34.064607],[-118.208435,34.064764],[-118.207493,34.065234],[-118.204670,34.065548],[-118.202945,34.065548],[-118.197456,34.064607]],[[-118.204514,34.059431],[-118.203416,34.061313],[-118.204357,34.061627],[-118.204984,34.062411],[-118.207337,34.060686],[-118.204514,34.059431]]]}}
,{"id":90032,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.155266,34.098641],[-118.155422,34.097543],[-118.156207,34.096602],[-118.160598,34.093465],[-118.160598,34.088917],[-118.160441,34.075115],[-118.161696,34.074645],[-118.161539,34.072919],[-118.161696,34.072135],[-118.161696,34.071194],[-118.162167,34.070253],[-118.162637,34.069783],[-118.162637,34.069626],[-118.162480,34.069626],[-118.164519,34.065705],[-118.164990,34.064136],[-118.165303,34.062254],[-118.169224,34.062254],[-118.169224,34.061470],[-118.171577,34.061156],[-118.173459,34.060529],[-118.173930,34.061313],[-118.178007,34.061313],[-118.178635,34.061627],[-118.179105,34.062254],[-118.181301,34.062254],[-118.181301,34.061784],[-118.184438,34.061784],[-118.185850,34.061940],[-118.186163,34.062568],[-118.190084,34.063195],[-118.190241,34.062725],[-118.192594,34.063195],[-118.192750,34.063823],[-118.197456,34.064607],[-118.194319,34.075586],[-118.193848,34.075586],[-118.193378,34.077938],[-118.193535,34.078252],[-118.196515,34.073860],[-118.202788,34.073860],[-118.202788,34.076527],[-118.201534,34.076527],[-118.201690,34.077625],[-118.202788,34.077625],[-118.202788,34.078722],[-118.200906,34.078722],[-118.200906,34.080448],[-118.200593,34.080605],[-118.199338,34.082800],[-118.200593,34.082800],[-118.200436,34.083584],[-118.198240,34.083271],[-118.198240,34.083584],[-118.199024,34.083741],[-118.199024,34.084055],[-118.196828,34.084369],[-118.196358,34.084839],[-118.195887,34.084682],[-118.195730,34.084996],[-118.192907,34.085937],[-118.192907,34.087035],[-118.191496,34.087035],[-118.190712,34.089231],[-118.191339,34.089544],[-118.191182,34.090172],[-118.191339,34.090172],[-118.191182,34.091270],[-118.191339,34.091897],[-118.191339,34.092681],[-118.190868,34.094250],[-118.190712,34.096759],[-118.190555,34.096916],[-118.190084,34.097230],[-118.190241,34.094877],[-118.190241,34.093622],[-118.189300,34.093622],[-118.188359,34.092838],[-118.187575,34.092681],[-118.186791,34.092681],[-118.186006,34.092995],[-118.183340,34.091426],[-118.182556,34.091113],[-118.181144,34.094406],[-118.182242,34.094877],[-118.181615,34.096602],[-118.180360,34.096132],[-118.178007,34.101935],[-118.178007,34.098641],[-118.155266,34.098641]]]}}
,{"id":90249,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.300343,33.903845],[-118.300343,33.901963],[-118.309126,33.901963],[-118.309126,33.897729],[-118.308342,33.897729],[-118.308185,33.896788],[-118.309126,33.896788],[-118.309126,33.894749],[-118.308028,33.894749],[-118.308028,33.894121],[-118.306930,33.894121],[-118.306930,33.892867],[-118.308499,33.892867],[-118.308656,33.891925],[-118.309126,33.891925],[-118.309126,33.888475],[-118.313518,33.887220],[-118.313518,33.887063],[-118.317752,33.885495],[-118.326535,33.882829],[-118.326535,33.887377],[-118.334848,33.887377],[-118.335162,33.887377],[-118.335005,33.891769],[-118.334064,33.893964],[-118.333593,33.894592],[-118.333279,33.894592],[-118.331711,33.896788],[-118.330770,33.897572],[-118.330770,33.898356],[-118.330300,33.898356],[-118.326535,33.901806],[-118.326535,33.916393],[-118.314302,33.916393],[-118.304578,33.916393],[-118.304578,33.917334],[-118.300343,33.917334],[-118.300343,33.909178],[-118.299716,33.909178],[-118.299716,33.907296],[-118.300343,33.907296],[-118.300343,33.906355],[-118.300186,33.906355],[-118.300186,33.905884],[-118.299872,33.905884],[-118.299872,33.905571],[-118.300343,33.905571],[-118.300343,33.903845]]]}}
,{"id":90822,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.122329,33.779314],[-118.122329,33.781353],[-118.114958,33.781353],[-118.115271,33.780412],[-118.115271,33.775393],[-118.121231,33.775393],[-118.122172,33.778216],[-118.122329,33.779314]]]}}
,{"id":91355,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.656684,34.420007],[-118.656998,34.420164],[-118.657312,34.421732],[-118.656998,34.423928],[-118.657625,34.425497],[-118.658723,34.427379],[-118.658723,34.431457],[-118.659037,34.432554],[-118.659508,34.433495],[-118.659664,34.434436],[-118.658880,34.435848],[-118.658253,34.438201],[-118.654175,34.438201],[-118.654175,34.443533],[-118.651666,34.442749],[-118.650725,34.444631],[-118.649627,34.444317],[-118.648999,34.445886],[-118.649470,34.445886],[-118.648999,34.446513],[-118.649783,34.446984],[-118.649313,34.448082],[-118.651352,34.448709],[-118.651979,34.448395],[-118.651979,34.448552],[-118.655273,34.448395],[-118.654802,34.449179],[-118.650725,34.450591],[-118.649470,34.452003],[-118.648215,34.452473],[-118.646803,34.452787],[-118.645862,34.453728],[-118.644921,34.455296],[-118.644608,34.455610],[-118.641785,34.456708],[-118.641000,34.457178],[-118.639275,34.457022],[-118.635354,34.455139],[-118.634099,34.453885],[-118.631433,34.453100],[-118.629708,34.452316],[-118.625630,34.451062],[-118.626101,34.449493],[-118.626101,34.446356],[-118.625944,34.444317],[-118.625630,34.443220],[-118.624375,34.441337],[-118.623277,34.439926],[-118.618886,34.435848],[-118.618259,34.436162],[-118.616533,34.436475],[-118.615122,34.437103],[-118.614965,34.437416],[-118.613867,34.438357],[-118.612455,34.440240],[-118.612299,34.440710],[-118.612455,34.441651],[-118.613553,34.443063],[-118.614651,34.445415],[-118.615592,34.447297],[-118.615279,34.447768],[-118.616063,34.449336],[-118.615122,34.450591],[-118.614181,34.451062],[-118.613240,34.449650],[-118.610573,34.450591],[-118.608848,34.449650],[-118.608691,34.449023],[-118.607280,34.449023],[-118.605868,34.449493],[-118.605084,34.448866],[-118.604927,34.448238],[-118.604143,34.447768],[-118.603672,34.446984],[-118.602418,34.447297],[-118.600849,34.447297],[-118.599908,34.447925],[-118.599124,34.447768],[-118.598497,34.448082],[-118.597556,34.447768],[-118.596771,34.447141],[-118.596301,34.446670],[-118.589714,34.448082],[-118.587988,34.447297],[-118.581401,34.447454],[-118.582969,34.450121],[-118.584381,34.453885],[-118.586890,34.455610],[-118.581244,34.460943],[-118.579048,34.460943],[-118.577480,34.460943],[-118.576225,34.461099],[-118.576539,34.460001],[-118.575284,34.459060],[-118.574814,34.457963],[-118.575598,34.456394],[-118.575598,34.455453],[-118.573716,34.454355],[-118.573245,34.453257],[-118.573873,34.452159],[-118.574030,34.451218],[-118.573716,34.450591],[-118.575127,34.448552],[-118.573402,34.445729],[-118.571991,34.446513],[-118.571834,34.446356],[-118.569638,34.446827],[-118.568226,34.447454],[-118.566344,34.445886],[-118.564776,34.445102],[-118.562580,34.444631],[-118.559443,34.444474],[-118.559757,34.444004],[-118.559600,34.443690],[-118.559600,34.442592],[-118.560228,34.441965],[-118.560228,34.441651],[-118.560071,34.440240],[-118.559443,34.439612],[-118.559287,34.438985],[-118.559914,34.437260],[-118.561012,34.436005],[-118.561325,34.435221],[-118.561953,34.434907],[-118.557561,34.431457],[-118.557718,34.431300],[-118.556463,34.430515],[-118.554738,34.429418],[-118.552542,34.428633],[-118.550817,34.428320],[-118.550503,34.428163],[-118.550503,34.428477],[-118.548465,34.428320],[-118.545328,34.428320],[-118.545328,34.428006],[-118.541407,34.428477],[-118.539054,34.428006],[-118.539211,34.427379],[-118.538740,34.427222],[-118.538740,34.426594],[-118.539681,34.425340],[-118.538897,34.424869],[-118.540936,34.422673],[-118.540779,34.422673],[-118.541564,34.421576],[-118.542034,34.420321],[-118.542034,34.419380],[-118.543132,34.419223],[-118.544387,34.419537],[-118.544544,34.418909],[-118.544700,34.417341],[-118.544387,34.416714],[-118.541720,34.417184],[-118.541407,34.416086],[-118.543132,34.415929],[-118.544387,34.415302],[-118.544073,34.414361],[-118.546739,34.415302],[-118.546739,34.415145],[-118.543759,34.414204],[-118.542348,34.412949],[-118.541250,34.411067],[-118.540466,34.408401],[-118.540309,34.406833],[-118.539838,34.404480],[-118.539368,34.402755],[-118.539525,34.401814],[-118.539211,34.401029],[-118.539211,34.399618],[-118.539368,34.398834],[-118.539681,34.396167],[-118.539525,34.395540],[-118.539211,34.395070],[-118.539054,34.394128],[-118.539368,34.393187],[-118.541407,34.392246],[-118.541720,34.391776],[-118.542191,34.391462],[-118.537799,34.386286],[-118.540152,34.380483],[-118.539368,34.379856],[-118.541877,34.379699],[-118.558189,34.378758],[-118.558189,34.380013],[-118.562267,34.380013],[-118.562580,34.380327],[-118.562894,34.380640],[-118.562580,34.381268],[-118.561796,34.381895],[-118.561012,34.382522],[-118.560541,34.383307],[-118.560228,34.383463],[-118.558973,34.383620],[-118.558502,34.383934],[-118.558032,34.384561],[-118.557404,34.384718],[-118.557248,34.386130],[-118.558189,34.388325],[-118.560228,34.388012],[-118.561325,34.387698],[-118.561953,34.387855],[-118.562894,34.387698],[-118.563208,34.387384],[-118.563208,34.386914],[-118.562580,34.386286],[-118.563051,34.385973],[-118.564149,34.386914],[-118.565090,34.386914],[-118.566658,34.386443],[-118.567442,34.386600],[-118.568070,34.387541],[-118.569638,34.387384],[-118.570109,34.388639],[-118.572932,34.400402],[-118.576382,34.408087],[-118.575755,34.408401],[-118.576382,34.408244],[-118.579989,34.416400],[-118.583440,34.423144],[-118.584538,34.422360],[-118.585479,34.423928],[-118.586106,34.423771],[-118.586420,34.423928],[-118.586890,34.425497],[-118.587204,34.425967],[-118.588145,34.426438],[-118.591909,34.427536],[-118.594732,34.429574],[-118.600379,34.432868],[-118.601477,34.432398],[-118.602888,34.432241],[-118.604300,34.430986],[-118.606809,34.431613],[-118.606809,34.431300],[-118.606652,34.430672],[-118.606966,34.428477],[-118.608691,34.428163],[-118.610417,34.428477],[-118.610573,34.427536],[-118.609632,34.425653],[-118.609632,34.425026],[-118.609789,34.424242],[-118.610417,34.422987],[-118.610260,34.421576],[-118.610417,34.421105],[-118.610103,34.420635],[-118.610417,34.419223],[-118.610573,34.419066],[-118.612142,34.419380],[-118.612455,34.419850],[-118.612769,34.419850],[-118.614338,34.418439],[-118.614965,34.418282],[-118.617161,34.418125],[-118.618102,34.417498],[-118.619984,34.417027],[-118.621082,34.417027],[-118.622493,34.416400],[-118.624062,34.416870],[-118.625473,34.416870],[-118.625630,34.416557],[-118.624218,34.416243],[-118.624062,34.415929],[-118.625160,34.415145],[-118.626571,34.414831],[-118.627198,34.414831],[-118.629865,34.416086],[-118.630649,34.416557],[-118.632060,34.417655],[-118.632060,34.418282],[-118.632374,34.418596],[-118.631590,34.418439],[-118.630492,34.419380],[-118.628924,34.422673],[-118.628139,34.424869],[-118.627826,34.427222],[-118.627983,34.428163],[-118.627826,34.428320],[-118.627983,34.428477],[-118.630649,34.427536],[-118.641628,34.424556],[-118.643196,34.424399],[-118.646490,34.424399],[-118.648686,34.423928],[-118.653861,34.422046],[-118.655273,34.421262],[-118.656684,34.420007]]]}}
,{"id":91350,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.537799,34.460158],[-118.534506,34.460001],[-118.533565,34.460158],[-118.533565,34.460315],[-118.534349,34.460629],[-118.534035,34.461413],[-118.533722,34.461727],[-118.532937,34.461256],[-118.531996,34.461570],[-118.531683,34.461256],[-118.531996,34.460943],[-118.531839,34.460315],[-118.526821,34.460786],[-118.525723,34.460472],[-118.523056,34.459217],[-118.521174,34.459060],[-118.519920,34.459217],[-118.517410,34.459845],[-118.509725,34.459845],[-118.508313,34.460315],[-118.506588,34.461413],[-118.505020,34.461727],[-118.503608,34.461413],[-118.502197,34.460786],[-118.500628,34.460315],[-118.498589,34.460629],[-118.496080,34.461413],[-118.494668,34.461570],[-118.493414,34.461256],[-118.492159,34.460629],[-118.492159,34.459688],[-118.491061,34.459531],[-118.488395,34.458433],[-118.487610,34.458590],[-118.486356,34.459374],[-118.485572,34.458590],[-118.483689,34.460001],[-118.480709,34.460158],[-118.480709,34.460629],[-118.479455,34.462040],[-118.478357,34.462825],[-118.478043,34.463138],[-118.476318,34.464550],[-118.476475,34.466118],[-118.474436,34.466432],[-118.473652,34.466589],[-118.472240,34.467843],[-118.471142,34.469098],[-118.469574,34.470039],[-118.469103,34.470510],[-118.468319,34.471608],[-118.467535,34.473803],[-118.454988,34.473803],[-118.448087,34.474744],[-118.445891,34.473803],[-118.443381,34.473803],[-118.440872,34.473019],[-118.440245,34.473019],[-118.438363,34.473647],[-118.437422,34.473490],[-118.436951,34.473333],[-118.436010,34.472235],[-118.436010,34.472078],[-118.435853,34.471921],[-118.434285,34.470667],[-118.434442,34.469882],[-118.435383,34.469412],[-118.435226,34.469255],[-118.434912,34.469412],[-118.434442,34.468785],[-118.435539,34.467530],[-118.435069,34.467059],[-118.435069,34.466746],[-118.436167,34.465805],[-118.436637,34.465177],[-118.437892,34.464550],[-118.438049,34.463922],[-118.437735,34.462354],[-118.437892,34.462040],[-118.438206,34.461727],[-118.439147,34.461727],[-118.439774,34.461570],[-118.440558,34.460001],[-118.441970,34.458119],[-118.445420,34.451532],[-118.445264,34.450277],[-118.445734,34.450277],[-118.446361,34.449807],[-118.448087,34.449179],[-118.449498,34.449179],[-118.451067,34.449493],[-118.453262,34.449023],[-118.454674,34.449023],[-118.454988,34.449493],[-118.455615,34.449650],[-118.457968,34.449336],[-118.459222,34.448866],[-118.459693,34.447768],[-118.461575,34.446356],[-118.462830,34.446200],[-118.463614,34.445729],[-118.465025,34.445415],[-118.465025,34.445102],[-118.465339,34.444945],[-118.465496,34.444631],[-118.465966,34.444317],[-118.467221,34.444004],[-118.468790,34.444004],[-118.469888,34.441651],[-118.470515,34.441808],[-118.471142,34.442279],[-118.472867,34.442592],[-118.473495,34.441337],[-118.476788,34.438044],[-118.480866,34.438044],[-118.480866,34.441651],[-118.489649,34.441494],[-118.489649,34.438044],[-118.497648,34.437887],[-118.500158,34.434123],[-118.503765,34.426124],[-118.503451,34.424712],[-118.502197,34.420007],[-118.498432,34.420478],[-118.498589,34.419223],[-118.499217,34.418596],[-118.499530,34.417811],[-118.499530,34.415145],[-118.498903,34.413577],[-118.500785,34.412793],[-118.500471,34.410597],[-118.499530,34.409656],[-118.499217,34.409813],[-118.498903,34.410283],[-118.491061,34.409028],[-118.489336,34.409969],[-118.485728,34.410754],[-118.485572,34.409813],[-118.486199,34.407303],[-118.486042,34.406833],[-118.485572,34.406048],[-118.485415,34.405578],[-118.485415,34.404480],[-118.485885,34.404480],[-118.489022,34.403382],[-118.488238,34.401500],[-118.485415,34.400873],[-118.484003,34.396167],[-118.486042,34.394599],[-118.487610,34.392560],[-118.488395,34.393031],[-118.489022,34.393815],[-118.490434,34.394442],[-118.493100,34.394599],[-118.493884,34.394599],[-118.494668,34.394913],[-118.495139,34.395383],[-118.498589,34.393972],[-118.499687,34.393815],[-118.499374,34.389423],[-118.498119,34.386286],[-118.498746,34.386443],[-118.499217,34.386286],[-118.500001,34.386914],[-118.499844,34.386914],[-118.499374,34.386757],[-118.498746,34.387071],[-118.498903,34.387228],[-118.499530,34.387384],[-118.499844,34.387855],[-118.501412,34.388012],[-118.503451,34.389110],[-118.505804,34.389894],[-118.507686,34.389894],[-118.508470,34.389737],[-118.508941,34.389266],[-118.511450,34.387855],[-118.511450,34.387541],[-118.513175,34.387384],[-118.516155,34.387855],[-118.518665,34.387384],[-118.518822,34.387071],[-118.520704,34.387698],[-118.521488,34.388639],[-118.523370,34.389266],[-118.524468,34.389894],[-118.527918,34.390364],[-118.532937,34.391462],[-118.536231,34.391776],[-118.538270,34.394285],[-118.538740,34.395383],[-118.539211,34.395070],[-118.539525,34.395540],[-118.539681,34.396167],[-118.539368,34.398834],[-118.539211,34.399618],[-118.539211,34.401029],[-118.539525,34.401814],[-118.539368,34.402755],[-118.539838,34.404480],[-118.540309,34.406833],[-118.540466,34.408401],[-118.541250,34.411067],[-118.542348,34.412949],[-118.543759,34.414204],[-118.546739,34.415145],[-118.546739,34.415302],[-118.544073,34.414361],[-118.544387,34.415302],[-118.543132,34.415929],[-118.541407,34.416086],[-118.541720,34.417184],[-118.544387,34.416714],[-118.544700,34.417341],[-118.544544,34.418909],[-118.544387,34.419537],[-118.543132,34.419223],[-118.542034,34.419380],[-118.542034,34.420321],[-118.541564,34.421576],[-118.540779,34.422673],[-118.540936,34.422673],[-118.538897,34.424869],[-118.539681,34.425340],[-118.538740,34.426594],[-118.538740,34.427222],[-118.539211,34.427379],[-118.539054,34.428006],[-118.538427,34.427849],[-118.537486,34.428947],[-118.535447,34.429888],[-118.535133,34.429731],[-118.534035,34.431143],[-118.534506,34.431300],[-118.534035,34.431927],[-118.533565,34.431770],[-118.532624,34.432554],[-118.531369,34.433182],[-118.532153,34.435848],[-118.533878,34.440396],[-118.534349,34.442592],[-118.534035,34.442592],[-118.534506,34.444474],[-118.534976,34.450905],[-118.535133,34.450905],[-118.535133,34.451375],[-118.534663,34.457022],[-118.535133,34.458904],[-118.535604,34.459374],[-118.536388,34.459845],[-118.537799,34.460158]],[[-118.506274,34.420948],[-118.506431,34.421262],[-118.506431,34.421732],[-118.506902,34.421889],[-118.508000,34.421262],[-118.510039,34.420478],[-118.509725,34.418909],[-118.508941,34.419066],[-118.507529,34.419693],[-118.507372,34.419223],[-118.507216,34.419223],[-118.507529,34.419693],[-118.505490,34.420321],[-118.505490,34.420635],[-118.506274,34.420948]]]}}
,{"id":91387,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.360099,34.466746],[-118.360413,34.446513],[-118.362609,34.445415],[-118.363079,34.444945],[-118.365118,34.442122],[-118.366216,34.441024],[-118.370764,34.438044],[-118.372019,34.437416],[-118.371862,34.436946],[-118.372960,34.436475],[-118.375313,34.436162],[-118.378606,34.435064],[-118.381586,34.432554],[-118.382371,34.432241],[-118.382214,34.432084],[-118.379861,34.430986],[-118.378606,34.431300],[-118.378450,34.430986],[-118.359629,34.430829],[-118.356335,34.430359],[-118.356492,34.430202],[-118.356178,34.429888],[-118.355708,34.430202],[-118.354923,34.430045],[-118.353669,34.430045],[-118.352257,34.429418],[-118.349277,34.429418],[-118.342063,34.428633],[-118.341906,34.434907],[-118.340965,34.435378],[-118.340180,34.436005],[-118.335318,34.435691],[-118.325751,34.437416],[-118.325281,34.385345],[-118.324653,34.385345],[-118.323712,34.384718],[-118.322144,34.384404],[-118.321673,34.384561],[-118.320732,34.384404],[-118.320105,34.384875],[-118.319321,34.384718],[-118.318850,34.384248],[-118.318066,34.384248],[-118.317752,34.384404],[-118.317282,34.385189],[-118.316654,34.385659],[-118.316654,34.386130],[-118.317282,34.386757],[-118.316968,34.387228],[-118.317282,34.387698],[-118.317282,34.387855],[-118.316811,34.388639],[-118.316341,34.389423],[-118.315713,34.389894],[-118.314459,34.390051],[-118.314145,34.389894],[-118.313988,34.389580],[-118.314302,34.389266],[-118.314459,34.388482],[-118.313831,34.389266],[-118.313361,34.389266],[-118.311949,34.388639],[-118.311008,34.388953],[-118.310067,34.388796],[-118.308969,34.389266],[-118.307401,34.389110],[-118.306460,34.389423],[-118.304107,34.388953],[-118.301755,34.389423],[-118.301441,34.389580],[-118.301441,34.390678],[-118.301284,34.391305],[-118.300814,34.391619],[-118.300657,34.391933],[-118.300343,34.392246],[-118.299088,34.392403],[-118.297834,34.392874],[-118.297049,34.392717],[-118.295795,34.393344],[-118.293913,34.393658],[-118.292501,34.394442],[-118.291560,34.394442],[-118.290776,34.394913],[-118.289678,34.394756],[-118.289207,34.394913],[-118.288737,34.395226],[-118.286384,34.395697],[-118.285443,34.396324],[-118.285129,34.396481],[-118.284502,34.396324],[-118.284188,34.395854],[-118.282934,34.395383],[-118.281679,34.395383],[-118.280895,34.395070],[-118.280738,34.395070],[-118.281052,34.394756],[-118.281679,34.394285],[-118.281522,34.393972],[-118.281365,34.393972],[-118.280267,34.394599],[-118.279326,34.394442],[-118.278699,34.394913],[-118.278542,34.395070],[-118.277287,34.395697],[-118.276346,34.395383],[-118.275092,34.395383],[-118.273366,34.395854],[-118.272582,34.395070],[-118.272269,34.394913],[-118.271955,34.394756],[-118.271641,34.395070],[-118.271328,34.395070],[-118.271014,34.394128],[-118.270700,34.393031],[-118.269916,34.391933],[-118.269445,34.391776],[-118.269289,34.392090],[-118.269445,34.392560],[-118.268818,34.393972],[-118.269289,34.394599],[-118.268975,34.395697],[-118.269289,34.396481],[-118.268818,34.397108],[-118.269132,34.397579],[-118.269916,34.397893],[-118.269916,34.398363],[-118.269132,34.398991],[-118.268975,34.398991],[-118.267877,34.398363],[-118.267093,34.398206],[-118.263329,34.399461],[-118.262388,34.398677],[-118.260662,34.398363],[-118.260349,34.398050],[-118.260192,34.397108],[-118.259721,34.396638],[-118.259408,34.396638],[-118.258937,34.397422],[-118.258467,34.397265],[-118.257682,34.396952],[-118.257055,34.396324],[-118.256898,34.395383],[-118.256271,34.395070],[-118.255957,34.394285],[-118.255643,34.394285],[-118.254859,34.394599],[-118.254075,34.394756],[-118.253448,34.394913],[-118.253134,34.394756],[-118.253134,34.394442],[-118.253605,34.394285],[-118.254389,34.393501],[-118.255173,34.393344],[-118.255330,34.392874],[-118.255173,34.391933],[-118.255016,34.392090],[-118.255016,34.392874],[-118.254859,34.393031],[-118.254232,34.392874],[-118.253605,34.392560],[-118.252977,34.393187],[-118.252036,34.393187],[-118.251252,34.393501],[-118.251252,34.393344],[-118.251879,34.393031],[-118.252507,34.392874],[-118.252820,34.392246],[-118.252820,34.391776],[-118.253134,34.390521],[-118.252350,34.390051],[-118.252350,34.389737],[-118.252507,34.389423],[-118.252036,34.388953],[-118.252507,34.388169],[-118.252664,34.387855],[-118.253134,34.387855],[-118.253605,34.386286],[-118.255173,34.385032],[-118.255957,34.384561],[-118.256585,34.384404],[-118.257055,34.384091],[-118.257526,34.383934],[-118.257996,34.384404],[-118.258310,34.384404],[-118.258310,34.384091],[-118.258937,34.383463],[-118.259408,34.383463],[-118.259721,34.383307],[-118.260192,34.383463],[-118.260349,34.383777],[-118.260035,34.384875],[-118.260349,34.385189],[-118.260192,34.385816],[-118.260662,34.386130],[-118.260662,34.385502],[-118.260819,34.384091],[-118.261133,34.383463],[-118.261760,34.382993],[-118.262701,34.382679],[-118.262858,34.382522],[-118.262701,34.382365],[-118.262701,34.382209],[-118.263486,34.382052],[-118.263486,34.381895],[-118.263486,34.380640],[-118.264270,34.380327],[-118.264427,34.379856],[-118.264897,34.379699],[-118.265681,34.379542],[-118.266465,34.378915],[-118.292344,34.378758],[-118.292344,34.378288],[-118.292030,34.377974],[-118.292030,34.377503],[-118.291246,34.376719],[-118.291246,34.376092],[-118.290933,34.375778],[-118.290776,34.374994],[-118.290148,34.374210],[-118.289992,34.373426],[-118.290619,34.372955],[-118.291403,34.371857],[-118.291403,34.371073],[-118.291717,34.370916],[-118.291560,34.370446],[-118.291717,34.370132],[-118.291403,34.369505],[-118.291403,34.369191],[-118.292030,34.368407],[-118.292501,34.367779],[-118.291246,34.366525],[-118.291246,34.365740],[-118.291089,34.365427],[-118.291089,34.365113],[-118.291403,34.364956],[-118.292501,34.364486],[-118.293756,34.363701],[-118.294383,34.363858],[-118.295010,34.363701],[-118.295481,34.362917],[-118.295638,34.361976],[-118.296893,34.362447],[-118.298147,34.363388],[-118.298618,34.363858],[-118.298931,34.363858],[-118.299088,34.363545],[-118.299402,34.363231],[-118.299716,34.363231],[-118.300029,34.363231],[-118.300500,34.363858],[-118.301127,34.364015],[-118.302696,34.363074],[-118.303480,34.363545],[-118.303793,34.363388],[-118.304107,34.362917],[-118.303480,34.362133],[-118.303480,34.361976],[-118.304107,34.361663],[-118.304421,34.361976],[-118.304421,34.362290],[-118.304891,34.362604],[-118.306146,34.363388],[-118.306303,34.364015],[-118.307871,34.364329],[-118.308028,34.364172],[-118.307871,34.363858],[-118.308185,34.363545],[-118.308656,34.363701],[-118.308969,34.364486],[-118.308812,34.364799],[-118.308812,34.365113],[-118.309597,34.365427],[-118.311479,34.364486],[-118.312106,34.364799],[-118.312733,34.364642],[-118.312890,34.364486],[-118.313047,34.364015],[-118.314145,34.363231],[-118.314459,34.362760],[-118.315086,34.362290],[-118.315086,34.361819],[-118.315243,34.361506],[-118.316184,34.361663],[-118.316654,34.362133],[-118.316811,34.362604],[-118.317125,34.362604],[-118.317909,34.362290],[-118.318536,34.362290],[-118.318850,34.362604],[-118.318850,34.363231],[-118.319321,34.363388],[-118.320105,34.362760],[-118.322301,34.362290],[-118.322458,34.362447],[-118.322301,34.362604],[-118.321830,34.363545],[-118.322144,34.363858],[-118.322928,34.363858],[-118.323555,34.363074],[-118.323712,34.362604],[-118.323712,34.362447],[-118.322928,34.361819],[-118.322928,34.361663],[-118.323242,34.361349],[-118.324340,34.361192],[-118.324653,34.361506],[-118.324653,34.354448],[-118.324340,34.352252],[-118.348336,34.352095],[-118.348650,34.350370],[-118.349905,34.346449],[-118.349748,34.345508],[-118.350061,34.344410],[-118.350061,34.344096],[-118.350375,34.343783],[-118.350532,34.343155],[-118.351002,34.342999],[-118.350689,34.342528],[-118.351002,34.341744],[-118.350375,34.341116],[-118.350532,34.340803],[-118.351944,34.339548],[-118.352728,34.340175],[-118.353512,34.340332],[-118.354139,34.340803],[-118.355394,34.340489],[-118.356021,34.340489],[-118.356178,34.340646],[-118.355708,34.340803],[-118.356178,34.341116],[-118.357119,34.340646],[-118.357590,34.340646],[-118.357903,34.340960],[-118.358217,34.340646],[-118.359001,34.340175],[-118.359786,34.340175],[-118.360883,34.340803],[-118.361511,34.340803],[-118.361668,34.340019],[-118.361824,34.339862],[-118.362138,34.339862],[-118.363079,34.340332],[-118.362922,34.338764],[-118.364491,34.338136],[-118.364804,34.337039],[-118.365589,34.336568],[-118.365745,34.336411],[-118.393663,34.336411],[-118.395075,34.336411],[-118.397114,34.336725],[-118.398055,34.351468],[-118.397898,34.353664],[-118.398211,34.370916],[-118.398682,34.371543],[-118.398839,34.372641],[-118.399623,34.373582],[-118.399780,34.374053],[-118.399623,34.374680],[-118.400094,34.375778],[-118.400250,34.376876],[-118.400564,34.377190],[-118.401976,34.378288],[-118.402603,34.379856],[-118.403073,34.380483],[-118.403701,34.380797],[-118.404956,34.380640],[-118.405897,34.380797],[-118.406681,34.380797],[-118.408720,34.380327],[-118.409347,34.379856],[-118.410288,34.379542],[-118.411700,34.379229],[-118.412327,34.379229],[-118.412954,34.379542],[-118.413425,34.381111],[-118.420796,34.381111],[-118.421894,34.380954],[-118.429893,34.380640],[-118.430834,34.380483],[-118.430834,34.376562],[-118.434755,34.377190],[-118.435696,34.377503],[-118.437108,34.378288],[-118.438049,34.378444],[-118.439147,34.378444],[-118.441656,34.378131],[-118.444009,34.378131],[-118.444009,34.380640],[-118.448557,34.380640],[-118.448871,34.384561],[-118.448244,34.385032],[-118.447930,34.384718],[-118.447930,34.384248],[-118.446989,34.383620],[-118.446989,34.383463],[-118.444793,34.382365],[-118.444166,34.382522],[-118.443695,34.382993],[-118.443225,34.382993],[-118.442911,34.383307],[-118.442440,34.383463],[-118.441499,34.384248],[-118.440715,34.384718],[-118.440245,34.385032],[-118.440245,34.385973],[-118.441029,34.386443],[-118.441186,34.386757],[-118.442440,34.388325],[-118.444166,34.389423],[-118.444479,34.390207],[-118.445107,34.390521],[-118.445577,34.390051],[-118.446205,34.390207],[-118.446675,34.390835],[-118.447146,34.391149],[-118.447459,34.391462],[-118.448400,34.392090],[-118.449185,34.392246],[-118.449498,34.392560],[-118.451067,34.393031],[-118.450910,34.393187],[-118.449812,34.393031],[-118.449655,34.393344],[-118.449185,34.393344],[-118.448714,34.393187],[-118.448400,34.393187],[-118.448087,34.393031],[-118.447302,34.393187],[-118.447930,34.393501],[-118.448087,34.393815],[-118.449341,34.394285],[-118.449969,34.394285],[-118.450753,34.394442],[-118.451067,34.394756],[-118.453262,34.394599],[-118.453890,34.393658],[-118.454203,34.393658],[-118.454674,34.392560],[-118.456399,34.390207],[-118.457027,34.389580],[-118.457497,34.389580],[-118.457811,34.390051],[-118.458281,34.390207],[-118.458281,34.390678],[-118.458595,34.391305],[-118.459066,34.392717],[-118.459066,34.393187],[-118.461418,34.393501],[-118.461889,34.393031],[-118.462359,34.393344],[-118.462987,34.393815],[-118.463300,34.394442],[-118.463300,34.395226],[-118.463143,34.395854],[-118.462045,34.397265],[-118.459536,34.398834],[-118.459536,34.398991],[-118.459850,34.399461],[-118.462045,34.398363],[-118.454831,34.402441],[-118.455772,34.402912],[-118.457183,34.403225],[-118.460007,34.403225],[-118.460948,34.403225],[-118.462045,34.403696],[-118.463457,34.404480],[-118.464084,34.403539],[-118.464398,34.403225],[-118.465339,34.403225],[-118.466123,34.403382],[-118.466908,34.404166],[-118.464869,34.405578],[-118.462516,34.407146],[-118.460791,34.406205],[-118.458595,34.405578],[-118.458752,34.409185],[-118.460007,34.409028],[-118.458438,34.410910],[-118.457183,34.413420],[-118.454831,34.414047],[-118.454517,34.414204],[-118.454517,34.415302],[-118.456399,34.415459],[-118.454674,34.418439],[-118.452792,34.421732],[-118.450596,34.423771],[-118.450126,34.423614],[-118.448557,34.423614],[-118.447459,34.424399],[-118.448871,34.425497],[-118.444793,34.429104],[-118.444166,34.428633],[-118.444009,34.428633],[-118.443695,34.429418],[-118.444009,34.429731],[-118.441343,34.432241],[-118.440715,34.432554],[-118.435696,34.434436],[-118.433501,34.436005],[-118.432716,34.436946],[-118.431305,34.438828],[-118.426913,34.446356],[-118.423463,34.449964],[-118.422365,34.449964],[-118.421267,34.450121],[-118.421424,34.450905],[-118.420796,34.450748],[-118.420640,34.450905],[-118.420483,34.451218],[-118.420796,34.451375],[-118.420796,34.451689],[-118.421737,34.452159],[-118.420326,34.454355],[-118.419385,34.455610],[-118.417346,34.454669],[-118.417503,34.454198],[-118.418130,34.453728],[-118.417816,34.453414],[-118.417973,34.451846],[-118.410916,34.450277],[-118.404799,34.451375],[-118.405897,34.455610],[-118.404799,34.455924],[-118.403858,34.455924],[-118.403701,34.455296],[-118.403387,34.454983],[-118.403073,34.454983],[-118.402917,34.454983],[-118.402917,34.455924],[-118.402760,34.455924],[-118.402760,34.454355],[-118.402603,34.454198],[-118.402132,34.454198],[-118.401191,34.453885],[-118.400407,34.453414],[-118.399623,34.452630],[-118.392408,34.459531],[-118.392408,34.460315],[-118.390997,34.460315],[-118.390840,34.460629],[-118.378920,34.467216],[-118.360099,34.467216],[-118.360099,34.466746]]]}}
,{"id":91001,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.146326,34.181610],[-118.164049,34.181453],[-118.164049,34.178943],[-118.164049,34.178473],[-118.164362,34.177689],[-118.169068,34.181139],[-118.168911,34.181296],[-118.169538,34.181453],[-118.170322,34.183492],[-118.170636,34.184903],[-118.170322,34.186001],[-118.169695,34.185531],[-118.168754,34.185374],[-118.168754,34.189138],[-118.171734,34.189295],[-118.171577,34.189609],[-118.170636,34.190079],[-118.170479,34.191177],[-118.169224,34.192432],[-118.168597,34.190706],[-118.168597,34.188824],[-118.167499,34.188824],[-118.167499,34.190550],[-118.166872,34.190236],[-118.166558,34.191177],[-118.167342,34.191491],[-118.167342,34.191648],[-118.168597,34.192118],[-118.168440,34.193216],[-118.168127,34.194000],[-118.167813,34.194000],[-118.167970,34.194314],[-118.166558,34.196823],[-118.165774,34.198862],[-118.165460,34.200117],[-118.165147,34.202156],[-118.165931,34.203724],[-118.166088,34.204195],[-118.165774,34.204822],[-118.165774,34.205293],[-118.166558,34.206234],[-118.168127,34.207018],[-118.168127,34.208116],[-118.169695,34.208900],[-118.170009,34.209214],[-118.170009,34.209527],[-118.169538,34.210312],[-118.168440,34.210939],[-118.170009,34.210625],[-118.170479,34.210939],[-118.170322,34.211253],[-118.169695,34.210939],[-118.169695,34.211409],[-118.168911,34.211409],[-118.169381,34.212037],[-118.169852,34.212350],[-118.169852,34.212507],[-118.168754,34.212821],[-118.168283,34.213605],[-118.167342,34.214076],[-118.166872,34.215330],[-118.167813,34.215174],[-118.167970,34.215487],[-118.168283,34.215644],[-118.168440,34.215958],[-118.166872,34.216428],[-118.166872,34.216742],[-118.167342,34.217213],[-118.166088,34.217683],[-118.165774,34.218154],[-118.165774,34.217683],[-118.166244,34.217213],[-118.166088,34.216742],[-118.165617,34.216742],[-118.165303,34.217213],[-118.164362,34.217683],[-118.164519,34.218310],[-118.160441,34.217213],[-118.160285,34.217369],[-118.159657,34.217369],[-118.158402,34.217840],[-118.157932,34.218938],[-118.157618,34.219095],[-118.157618,34.219565],[-118.156520,34.219251],[-118.155579,34.219251],[-118.155422,34.218938],[-118.154011,34.219251],[-118.153227,34.219879],[-118.152442,34.219879],[-118.151972,34.219722],[-118.151658,34.219879],[-118.151031,34.219879],[-118.151031,34.219251],[-118.150717,34.219251],[-118.150560,34.219095],[-118.150247,34.219251],[-118.149776,34.219095],[-118.149149,34.218310],[-118.148365,34.217840],[-118.148051,34.217369],[-118.147267,34.217213],[-118.145698,34.217526],[-118.145071,34.217369],[-118.145228,34.217056],[-118.146012,34.215958],[-118.148992,34.215801],[-118.150247,34.216428],[-118.150717,34.216115],[-118.150404,34.215801],[-118.148678,34.215330],[-118.140836,34.215017],[-118.136445,34.214703],[-118.135033,34.214076],[-118.124839,34.208273],[-118.117938,34.204038],[-118.106802,34.195882],[-118.104763,34.194784],[-118.104763,34.196823],[-118.100528,34.196823],[-118.100371,34.190393],[-118.100999,34.189922],[-118.101469,34.190079],[-118.102097,34.189922],[-118.102097,34.190706],[-118.102567,34.190706],[-118.103351,34.192118],[-118.104136,34.193373],[-118.104920,34.193373],[-118.105861,34.192589],[-118.105390,34.191648],[-118.104920,34.191020],[-118.104920,34.190863],[-118.104606,34.190706],[-118.104920,34.190393],[-118.104920,34.189138],[-118.103822,34.187883],[-118.103665,34.187727],[-118.103822,34.186942],[-118.103508,34.186629],[-118.103038,34.186629],[-118.103195,34.186472],[-118.102881,34.185844],[-118.102567,34.185688],[-118.102410,34.185688],[-118.102097,34.185217],[-118.102410,34.184903],[-118.101626,34.184119],[-118.100685,34.183649],[-118.100371,34.183335],[-118.100215,34.180355],[-118.098333,34.175650],[-118.095039,34.175650],[-118.095039,34.175022],[-118.095196,34.175179],[-118.095353,34.174552],[-118.095509,34.174552],[-118.095509,34.174238],[-118.096607,34.174552],[-118.099274,34.174709],[-118.104136,34.175022],[-118.104292,34.174709],[-118.105077,34.174552],[-118.107429,34.174866],[-118.108527,34.175650],[-118.109782,34.176120],[-118.109939,34.176748],[-118.110566,34.177061],[-118.110409,34.177532],[-118.111664,34.178473],[-118.112135,34.178473],[-118.112291,34.178473],[-118.113232,34.177846],[-118.115271,34.178002],[-118.115585,34.178316],[-118.115899,34.178159],[-118.115899,34.178473],[-118.118094,34.178473],[-118.118094,34.178316],[-118.118408,34.178002],[-118.120290,34.177846],[-118.121545,34.178159],[-118.121545,34.178473],[-118.129701,34.178473],[-118.129701,34.177218],[-118.131740,34.177218],[-118.132053,34.177061],[-118.142248,34.181610],[-118.146326,34.181610]]]}}
,{"id":91604,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.413739,34.156672],[-118.405269,34.156672],[-118.405269,34.156829],[-118.403858,34.156672],[-118.402446,34.155888],[-118.398682,34.152594],[-118.396486,34.151340],[-118.396486,34.150398],[-118.393349,34.150242],[-118.393193,34.150398],[-118.389899,34.150398],[-118.389899,34.152124],[-118.388958,34.152124],[-118.388801,34.150398],[-118.388174,34.150398],[-118.384409,34.150398],[-118.384409,34.148516],[-118.382214,34.148516],[-118.382214,34.150398],[-118.377822,34.150398],[-118.377822,34.147732],[-118.377352,34.147105],[-118.377195,34.146791],[-118.377822,34.146791],[-118.377822,34.143184],[-118.374685,34.143184],[-118.374685,34.143027],[-118.373744,34.143498],[-118.371392,34.143811],[-118.370451,34.143811],[-118.370451,34.143654],[-118.361668,34.143498],[-118.361197,34.142713],[-118.360883,34.142086],[-118.360883,34.141145],[-118.362922,34.137694],[-118.361981,34.137067],[-118.360883,34.135655],[-118.360883,34.135342],[-118.361197,34.135028],[-118.363236,34.137224],[-118.364177,34.137224],[-118.364648,34.136910],[-118.366530,34.136753],[-118.367941,34.134558],[-118.364491,34.132048],[-118.366059,34.128911],[-118.366843,34.128911],[-118.367628,34.129382],[-118.369510,34.129225],[-118.369980,34.129852],[-118.370921,34.130009],[-118.372176,34.131107],[-118.373274,34.130950],[-118.373587,34.130793],[-118.373587,34.130637],[-118.372960,34.130323],[-118.372646,34.129382],[-118.371862,34.128755],[-118.372019,34.128127],[-118.371392,34.126716],[-118.371549,34.126559],[-118.372490,34.126402],[-118.373274,34.126872],[-118.373901,34.126716],[-118.374058,34.126402],[-118.374215,34.125461],[-118.374685,34.124833],[-118.374685,34.124049],[-118.374999,34.123579],[-118.375313,34.123579],[-118.376254,34.124363],[-118.377508,34.124833],[-118.378920,34.125618],[-118.379234,34.125461],[-118.379391,34.126088],[-118.380488,34.126402],[-118.380488,34.126716],[-118.380802,34.126872],[-118.382214,34.126088],[-118.382214,34.125147],[-118.380959,34.124520],[-118.381743,34.123736],[-118.380959,34.122951],[-118.381586,34.122324],[-118.382527,34.122638],[-118.383312,34.122167],[-118.385037,34.122167],[-118.385507,34.121697],[-118.386135,34.121540],[-118.386762,34.121854],[-118.387076,34.122951],[-118.387389,34.123265],[-118.389115,34.123265],[-118.390056,34.122951],[-118.390526,34.122324],[-118.391467,34.122167],[-118.392095,34.121540],[-118.392722,34.121226],[-118.393349,34.120128],[-118.394134,34.120285],[-118.395231,34.119815],[-118.396173,34.119187],[-118.397114,34.119030],[-118.397584,34.119187],[-118.398055,34.119658],[-118.398211,34.119815],[-118.398055,34.120128],[-118.398211,34.120756],[-118.398055,34.121383],[-118.398839,34.121854],[-118.399152,34.122481],[-118.398839,34.123736],[-118.398996,34.124049],[-118.398525,34.124363],[-118.398055,34.125304],[-118.398211,34.125618],[-118.398525,34.125931],[-118.399309,34.126088],[-118.400407,34.126872],[-118.400878,34.127029],[-118.402289,34.126559],[-118.403230,34.125931],[-118.403387,34.126559],[-118.403858,34.127186],[-118.403858,34.127813],[-118.404328,34.127970],[-118.405897,34.127500],[-118.406210,34.127500],[-118.406681,34.128127],[-118.406994,34.129225],[-118.407465,34.129382],[-118.407622,34.129852],[-118.408406,34.130166],[-118.408406,34.130793],[-118.411543,34.130793],[-118.411543,34.132519],[-118.411700,34.133773],[-118.412013,34.134087],[-118.412954,34.133460],[-118.412641,34.132362],[-118.414837,34.130950],[-118.417816,34.139576],[-118.418287,34.139576],[-118.418601,34.140361],[-118.420953,34.142086],[-118.421110,34.142400],[-118.421267,34.143654],[-118.420169,34.143654],[-118.420326,34.146007],[-118.421267,34.146164],[-118.421267,34.146321],[-118.422522,34.146634],[-118.422522,34.149614],[-118.420796,34.148360],[-118.419228,34.148360],[-118.418444,34.148046],[-118.418130,34.148203],[-118.418130,34.154006],[-118.414993,34.154006],[-118.414837,34.156358],[-118.413739,34.156358],[-118.413739,34.156672]]]}}
,{"id":91402,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.459693,34.224741],[-118.459379,34.227093],[-118.458752,34.230387],[-118.459222,34.232112],[-118.457811,34.234935],[-118.456086,34.242621],[-118.454047,34.244816],[-118.453106,34.246228],[-118.452008,34.248581],[-118.451851,34.249992],[-118.451380,34.249992],[-118.450596,34.250620],[-118.446989,34.245287],[-118.447459,34.244973],[-118.446989,34.244660],[-118.446205,34.243091],[-118.445734,34.243405],[-118.443538,34.239954],[-118.444166,34.239484],[-118.444009,34.239170],[-118.444479,34.238856],[-118.443381,34.237445],[-118.442911,34.237602],[-118.442127,34.236347],[-118.441343,34.236661],[-118.440402,34.235406],[-118.441970,34.235406],[-118.441970,34.234622],[-118.440558,34.232740],[-118.440245,34.232426],[-118.439460,34.232583],[-118.439460,34.230387],[-118.438049,34.230387],[-118.437578,34.229603],[-118.436167,34.229603],[-118.431305,34.225055],[-118.430991,34.225368],[-118.429423,34.223800],[-118.423149,34.228348],[-118.420326,34.225682],[-118.421737,34.224270],[-118.422679,34.221604],[-118.426756,34.207332],[-118.466123,34.215017],[-118.466280,34.215174],[-118.466280,34.215644],[-118.467849,34.215958],[-118.468476,34.217213],[-118.467535,34.217683],[-118.468790,34.221447],[-118.459536,34.221447],[-118.459850,34.222545],[-118.459693,34.224741]]]}}
,{"id":91030,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.146012,34.122795],[-118.145698,34.122010],[-118.145698,34.123736],[-118.144287,34.122638],[-118.144287,34.122010],[-118.143816,34.121540],[-118.143816,34.121069],[-118.143346,34.120912],[-118.142562,34.120442],[-118.142248,34.119658],[-118.140836,34.116364],[-118.139895,34.114012],[-118.138954,34.113384],[-118.138327,34.112600],[-118.139582,34.112443],[-118.136445,34.107738],[-118.135347,34.106483],[-118.134720,34.105699],[-118.134720,34.104131],[-118.141777,34.104131],[-118.141777,34.098641],[-118.155266,34.098641],[-118.178007,34.098641],[-118.178007,34.101935],[-118.178007,34.110247],[-118.177223,34.110404],[-118.177380,34.110875],[-118.177066,34.110875],[-118.176910,34.112129],[-118.177066,34.112129],[-118.175655,34.112600],[-118.175498,34.113227],[-118.173773,34.113227],[-118.172832,34.113698],[-118.168911,34.117776],[-118.168911,34.118717],[-118.169068,34.119344],[-118.168911,34.119971],[-118.167970,34.120285],[-118.167499,34.121069],[-118.167970,34.123108],[-118.168127,34.123892],[-118.163264,34.124049],[-118.150247,34.124049],[-118.149619,34.124520],[-118.148992,34.125618],[-118.147894,34.124990],[-118.146483,34.124049],[-118.146012,34.122795]]]}}
,{"id":91108,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.135347,34.106483],[-118.136445,34.107738],[-118.139582,34.112443],[-118.138327,34.112600],[-118.138954,34.113384],[-118.139895,34.114012],[-118.140836,34.116364],[-118.142248,34.119658],[-118.139425,34.119187],[-118.137229,34.118403],[-118.137386,34.118717],[-118.136131,34.118560],[-118.134563,34.118246],[-118.134406,34.118717],[-118.134092,34.118874],[-118.131740,34.118874],[-118.131426,34.119030],[-118.131269,34.118874],[-118.128760,34.119030],[-118.128132,34.119344],[-118.128446,34.120599],[-118.128603,34.120912],[-118.129544,34.121697],[-118.129387,34.122010],[-118.129230,34.122167],[-118.129073,34.122951],[-118.130014,34.124049],[-118.130799,34.126088],[-118.131112,34.126402],[-118.130799,34.127500],[-118.130799,34.128127],[-118.131112,34.128598],[-118.130955,34.129382],[-118.131269,34.129852],[-118.119192,34.132676],[-118.113860,34.132989],[-118.113860,34.136440],[-118.114017,34.136440],[-118.114017,34.136910],[-118.113076,34.136910],[-118.110096,34.136753],[-118.110096,34.136910],[-118.110096,34.137224],[-118.108998,34.137224],[-118.108998,34.137381],[-118.104136,34.137381],[-118.103665,34.137381],[-118.103665,34.136910],[-118.103351,34.136753],[-118.094568,34.136910],[-118.094255,34.135185],[-118.093941,34.133773],[-118.093157,34.131421],[-118.090961,34.126872],[-118.090804,34.126088],[-118.090177,34.126402],[-118.090334,34.126872],[-118.090020,34.127029],[-118.088138,34.127500],[-118.087981,34.127029],[-118.088608,34.126872],[-118.088138,34.125618],[-118.089393,34.125304],[-118.089393,34.125304],[-118.089393,34.124990],[-118.090334,34.124833],[-118.090177,34.123892],[-118.090334,34.123422],[-118.091275,34.122010],[-118.091118,34.115266],[-118.098019,34.115266],[-118.099587,34.113541],[-118.106331,34.113384],[-118.106331,34.113698],[-118.107429,34.113855],[-118.107429,34.113384],[-118.108527,34.113384],[-118.108527,34.114325],[-118.113860,34.113698],[-118.114958,34.113541],[-118.116056,34.112914],[-118.116840,34.112129],[-118.120604,34.106640],[-118.121074,34.105856],[-118.121074,34.105228],[-118.121702,34.104915],[-118.127975,34.111188],[-118.135347,34.106483]]]}}
,{"id":90062,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.300186,33.992303],[-118.300186,33.989167],[-118.304578,33.989167],[-118.304421,33.989637],[-118.308969,33.989794],[-118.308969,33.989167],[-118.317125,33.989167],[-118.317125,33.994970],[-118.317282,33.994970],[-118.317595,33.997793],[-118.317439,33.999832],[-118.317125,33.999989],[-118.317595,33.999989],[-118.317595,34.003753],[-118.317125,34.003753],[-118.317125,34.010811],[-118.317752,34.010811],[-118.317595,34.014575],[-118.317125,34.014575],[-118.317125,34.017241],[-118.316027,34.017398],[-118.316027,34.017711],[-118.313204,34.017711],[-118.313204,34.018182],[-118.300186,34.018182],[-118.300186,34.015516],[-118.300500,34.015516],[-118.300500,34.012065],[-118.300186,34.012065],[-118.300186,34.010811],[-118.300500,34.010811],[-118.300814,34.006105],[-118.300814,34.003753],[-118.300186,34.003753],[-118.300186,33.992303]]]}}
,{"id":90293,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.428795,33.930979],[-118.428795,33.927215],[-118.427697,33.927215],[-118.427697,33.923607],[-118.426600,33.923607],[-118.426600,33.921725],[-118.424404,33.921725],[-118.424404,33.920000],[-118.422208,33.920000],[-118.422208,33.918902],[-118.422208,33.916393],[-118.429580,33.916393],[-118.429893,33.916706],[-118.437108,33.916393],[-118.452321,33.943055],[-118.457183,33.949800],[-118.464084,33.958739],[-118.460163,33.960465],[-118.460163,33.960622],[-118.451537,33.964699],[-118.451223,33.964229],[-118.432246,33.975051],[-118.431932,33.974580],[-118.426600,33.966582],[-118.425972,33.965954],[-118.425502,33.965640],[-118.427227,33.965170],[-118.430364,33.967209],[-118.431148,33.966895],[-118.432716,33.965797],[-118.439774,33.962347],[-118.437892,33.959681],[-118.436480,33.960308],[-118.436951,33.960778],[-118.435069,33.962974],[-118.435696,33.963758],[-118.433814,33.964699],[-118.432873,33.965013],[-118.432403,33.965013],[-118.431148,33.964072],[-118.431148,33.963288],[-118.429109,33.963288],[-118.428795,33.963602],[-118.428168,33.961876],[-118.428168,33.961406],[-118.428482,33.960622],[-118.430207,33.960622],[-118.430521,33.960151],[-118.430677,33.959681],[-118.426443,33.959681],[-118.426443,33.958583],[-118.428638,33.955289],[-118.430207,33.955916],[-118.430364,33.955446],[-118.427227,33.954348],[-118.425345,33.953877],[-118.422679,33.953721],[-118.421894,33.953721],[-118.417973,33.956073],[-118.417503,33.955289],[-118.416562,33.955916],[-118.416405,33.955916],[-118.414052,33.954034],[-118.414052,33.953877],[-118.414052,33.953721],[-118.418758,33.953250],[-118.422051,33.952623],[-118.425815,33.952623],[-118.433030,33.951995],[-118.433030,33.951839],[-118.437265,33.952152],[-118.439147,33.951682],[-118.436794,33.947604],[-118.436480,33.946506],[-118.436324,33.944310],[-118.435853,33.943212],[-118.429736,33.932704],[-118.429109,33.930979],[-118.428795,33.930979]]]}}
,{"id":90292,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.445264,33.994185],[-118.444323,33.992303],[-118.444636,33.991676],[-118.442127,33.992931],[-118.441813,33.992617],[-118.444166,33.991362],[-118.440245,33.987284],[-118.434598,33.989951],[-118.429580,33.982736],[-118.429423,33.982579],[-118.429580,33.982266],[-118.428168,33.981952],[-118.428795,33.981168],[-118.423306,33.980697],[-118.428325,33.977404],[-118.432246,33.975051],[-118.451223,33.964229],[-118.451537,33.964699],[-118.460163,33.960622],[-118.460163,33.960465],[-118.464084,33.958739],[-118.466280,33.961719],[-118.465025,33.963602],[-118.464712,33.965484],[-118.465182,33.967366],[-118.471926,33.976462],[-118.468476,33.978501],[-118.466908,33.978972],[-118.463457,33.981011],[-118.464869,33.982736],[-118.464084,33.983207],[-118.462673,33.981481],[-118.460477,33.983050],[-118.460320,33.983520],[-118.458752,33.984618],[-118.457968,33.985559],[-118.457027,33.985559],[-118.457027,33.986500],[-118.455929,33.986657],[-118.455145,33.986343],[-118.451851,33.988382],[-118.452165,33.988382],[-118.451694,33.989167],[-118.448244,33.990892],[-118.447773,33.990421],[-118.447146,33.990735],[-118.448400,33.993401],[-118.445264,33.994185]]]}}
,{"id":90003,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.283247,33.989167],[-118.273994,33.989167],[-118.271798,33.989167],[-118.271798,33.986030],[-118.270543,33.986030],[-118.270543,33.989167],[-118.265211,33.989167],[-118.265211,33.981795],[-118.263015,33.981795],[-118.263015,33.974737],[-118.265211,33.974737],[-118.265211,33.967366],[-118.264583,33.967366],[-118.264583,33.966425],[-118.265211,33.966425],[-118.265054,33.960151],[-118.265211,33.945565],[-118.263799,33.945408],[-118.263799,33.943526],[-118.265054,33.943683],[-118.265054,33.942114],[-118.265211,33.941801],[-118.265211,33.939291],[-118.265211,33.938350],[-118.265995,33.938821],[-118.273837,33.938821],[-118.273837,33.939291],[-118.278385,33.939134],[-118.278385,33.938350],[-118.280581,33.938193],[-118.280581,33.939134],[-118.282620,33.939134],[-118.282620,33.987441],[-118.283247,33.987284],[-118.283247,33.989167]]]}}
,{"id":90056,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.357903,33.997165],[-118.357747,33.996852],[-118.358374,33.996068],[-118.358844,33.994656],[-118.358844,33.993244],[-118.358531,33.991049],[-118.358531,33.988539],[-118.358217,33.988539],[-118.357276,33.985559],[-118.357590,33.984148],[-118.358060,33.984304],[-118.358217,33.983991],[-118.358688,33.982422],[-118.358531,33.981638],[-118.366216,33.981638],[-118.366687,33.981952],[-118.367000,33.981638],[-118.370294,33.981638],[-118.370294,33.979913],[-118.370451,33.979913],[-118.370294,33.978658],[-118.371705,33.977247],[-118.371862,33.978031],[-118.372333,33.977717],[-118.373117,33.977560],[-118.377195,33.977247],[-118.380175,33.976619],[-118.381586,33.976619],[-118.381586,33.976462],[-118.385351,33.976619],[-118.386448,33.977090],[-118.386605,33.977090],[-118.385664,33.978501],[-118.384566,33.978501],[-118.382684,33.981795],[-118.379391,33.987598],[-118.378606,33.989010],[-118.379234,33.996381],[-118.379077,33.996381],[-118.378920,33.996695],[-118.377038,33.998106],[-118.374372,33.997636],[-118.369510,33.998106],[-118.367314,33.998577],[-118.366530,33.998577],[-118.363079,33.997950],[-118.359942,33.996852],[-118.359315,33.996852],[-118.357903,33.997165]],[[-118.374215,33.982579],[-118.375626,33.982893],[-118.376724,33.982579],[-118.376097,33.981481],[-118.374529,33.979756],[-118.371862,33.979913],[-118.371862,33.982109],[-118.374215,33.982579]]]}}
,{"id":90732,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-118.309126,33.776491],[-118.309440,33.779000],[-118.308185,33.779314],[-118.307871,33.779314],[-118.307715,33.779157],[-118.305519,33.779628],[-118.299716,33.780098],[-118.298931,33.780412],[-118.298304,33.780882],[-118.297520,33.781667],[-118.297520,33.782137],[-118.296108,33.780412],[-118.295951,33.779314],[-118.295951,33.777589],[-118.297834,33.777589],[-118.297834,33.777118],[-118.298461,33.776177],[-118.298461,33.775393],[-118.298147,33.774923],[-118.297677,33.774923],[-118.295795,33.774766],[-118.293913,33.769747],[-118.293756,33.766296],[-118.303950,33.766296],[-118.303793,33.766139],[-118.302068,33.760493],[-118.308969,33.760493],[-118.308969,33.762689],[-118.311636,33.763003],[-118.308812,33.772570],[-118.308812,33.773825],[-118.309126,33.776491]]],[[[-118.299402,33.752808],[-118.301284,33.752808],[-118.302068,33.751710],[-118.300970,33.751710],[-118.301127,33.750299],[-118.300029,33.750299],[-118.300029,33.749201],[-118.298931,33.749201],[-118.298931,33.745593],[-118.302068,33.745593],[-118.302068,33.744652],[-118.298931,33.744652],[-118.298931,33.744182],[-118.300500,33.744025],[-118.300500,33.743398],[-118.301598,33.743398],[-118.301598,33.741672],[-118.301284,33.741045],[-118.301441,33.740418],[-118.301598,33.739163],[-118.302068,33.739163],[-118.302539,33.738536],[-118.304421,33.738379],[-118.304264,33.737908],[-118.305519,33.737751],[-118.305676,33.720813],[-118.305519,33.720028],[-118.305832,33.719872],[-118.305832,33.719558],[-118.308342,33.720028],[-118.308342,33.720342],[-118.309283,33.720342],[-118.309126,33.721126],[-118.309440,33.721597],[-118.309910,33.721597],[-118.310224,33.717676],[-118.311479,33.716892],[-118.311792,33.717048],[-118.312420,33.717519],[-118.312263,33.719087],[-118.312890,33.719401],[-118.313518,33.720028],[-118.315086,33.718617],[-118.316341,33.720185],[-118.313047,33.722224],[-118.312263,33.721754],[-118.311792,33.722224],[-118.312890,33.723008],[-118.314615,33.721754],[-118.315870,33.721597],[-118.317909,33.720185],[-118.319321,33.719558],[-118.320419,33.718774],[-118.321203,33.717519],[-118.328417,33.709520],[-118.335318,33.714225],[-118.334848,33.716578],[-118.333123,33.721910],[-118.328417,33.729439],[-118.321046,33.729439],[-118.320889,33.731007],[-118.320105,33.731478],[-118.319791,33.731948],[-118.318536,33.731948],[-118.318536,33.735242],[-118.318693,33.735242],[-118.319948,33.735556],[-118.320262,33.735399],[-118.320419,33.735712],[-118.319948,33.735869],[-118.320105,33.736183],[-118.318850,33.736653],[-118.318536,33.736340],[-118.318536,33.737438],[-118.318850,33.737751],[-118.319007,33.738222],[-118.318850,33.739477],[-118.318850,33.740261],[-118.319007,33.740574],[-118.319791,33.741045],[-118.320105,33.741516],[-118.319948,33.742143],[-118.319634,33.742613],[-118.318536,33.742613],[-118.318380,33.746848],[-118.312106,33.746848],[-118.312106,33.747319],[-118.311165,33.747319],[-118.311165,33.746848],[-118.309597,33.746848],[-118.308812,33.752338],[-118.308969,33.753435],[-118.309126,33.754220],[-118.309126,33.757670],[-118.300970,33.757670],[-118.300814,33.757513],[-118.300343,33.757670],[-118.300970,33.757356],[-118.300500,33.757043],[-118.299872,33.757043],[-118.299402,33.756729],[-118.298931,33.753749],[-118.296736,33.753749],[-118.296736,33.752808],[-118.299402,33.752808]]]]}}
,{"id":90716,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.081864,33.831228],[-118.081864,33.834051],[-118.079669,33.834051],[-118.079669,33.836874],[-118.078884,33.836874],[-118.078884,33.838757],[-118.071983,33.838757],[-118.071983,33.837972],[-118.067592,33.837972],[-118.067749,33.834679],[-118.068690,33.834679],[-118.068690,33.832483],[-118.067749,33.832483],[-118.067749,33.833267],[-118.061632,33.833267],[-118.063514,33.831542],[-118.063357,33.828562],[-118.064926,33.824014],[-118.065867,33.824014],[-118.066651,33.822131],[-118.068847,33.822131],[-118.068690,33.822602],[-118.068690,33.824014],[-118.071827,33.824014],[-118.071827,33.823229],[-118.072454,33.823543],[-118.074650,33.823386],[-118.074650,33.823073],[-118.081864,33.825111],[-118.081864,33.825739],[-118.082805,33.829817],[-118.082805,33.830130],[-118.082492,33.830601],[-118.081864,33.830915],[-118.081864,33.831228]]]}}
,{"id":90805,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.146639,33.869027],[-118.146483,33.867929],[-118.146639,33.867929],[-118.146639,33.860244],[-118.153384,33.860244],[-118.153384,33.858832],[-118.155579,33.858832],[-118.155579,33.854441],[-118.164362,33.854284],[-118.164362,33.853970],[-118.166401,33.854284],[-118.167656,33.854284],[-118.167656,33.850990],[-118.170009,33.850990],[-118.170479,33.850990],[-118.170479,33.851461],[-118.184908,33.846442],[-118.184908,33.842678],[-118.188516,33.841737],[-118.191653,33.840796],[-118.192437,33.842991],[-118.194005,33.842991],[-118.195887,33.842364],[-118.195887,33.842678],[-118.204200,33.839698],[-118.207493,33.838600],[-118.207337,33.839384],[-118.207650,33.839384],[-118.205925,33.846599],[-118.206552,33.846599],[-118.206709,33.848638],[-118.206239,33.848638],[-118.205768,33.848794],[-118.205298,33.852402],[-118.204514,33.854754],[-118.203416,33.857107],[-118.201220,33.860244],[-118.201063,33.860871],[-118.203572,33.861028],[-118.206396,33.870281],[-118.205455,33.870438],[-118.205455,33.874359],[-118.207964,33.874203],[-118.208121,33.874830],[-118.208591,33.874830],[-118.208591,33.880790],[-118.208905,33.880790],[-118.208905,33.881260],[-118.187888,33.881417],[-118.187418,33.882986],[-118.187261,33.885338],[-118.177380,33.885338],[-118.177380,33.881888],[-118.151345,33.882045],[-118.151345,33.879849],[-118.151188,33.869027],[-118.146639,33.869027]]]}}
,{"id":90402,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.507059,34.022574],[-118.512234,34.018182],[-118.518979,34.023201],[-118.521802,34.024926],[-118.520076,34.026965],[-118.518979,34.029161],[-118.517881,34.030102],[-118.518038,34.030416],[-118.517096,34.031043],[-118.517724,34.031670],[-118.518351,34.031984],[-118.518822,34.031357],[-118.519135,34.031513],[-118.519135,34.031984],[-118.519135,34.032768],[-118.519606,34.033552],[-118.519606,34.034650],[-118.519449,34.035434],[-118.518508,34.037473],[-118.518194,34.038571],[-118.518038,34.039826],[-118.518194,34.041238],[-118.517567,34.041394],[-118.517253,34.041865],[-118.516783,34.043276],[-118.516783,34.044218],[-118.516469,34.044688],[-118.514901,34.045629],[-118.514430,34.045002],[-118.515842,34.044061],[-118.515999,34.043747],[-118.515842,34.043120],[-118.514273,34.043433],[-118.513960,34.043276],[-118.515371,34.041394],[-118.515528,34.040924],[-118.515371,34.040453],[-118.514587,34.040297],[-118.514117,34.039983],[-118.514117,34.040924],[-118.513332,34.042335],[-118.512234,34.040924],[-118.512862,34.040610],[-118.512234,34.039826],[-118.513332,34.037473],[-118.515371,34.035591],[-118.515214,34.034964],[-118.515842,34.034493],[-118.515685,34.034023],[-118.515058,34.033082],[-118.514117,34.033552],[-118.513646,34.033709],[-118.510039,34.041081],[-118.509411,34.041394],[-118.508313,34.040610],[-118.508000,34.040767],[-118.507372,34.040140],[-118.504549,34.041238],[-118.503922,34.040767],[-118.496864,34.048139],[-118.494825,34.050334],[-118.494668,34.050177],[-118.494511,34.050491],[-118.489649,34.046413],[-118.489336,34.046570],[-118.487610,34.045786],[-118.486983,34.044688],[-118.486983,34.044218],[-118.483689,34.041394],[-118.486669,34.039042],[-118.487140,34.039355],[-118.488395,34.038258],[-118.488081,34.037944],[-118.492316,34.034493],[-118.492629,34.034807],[-118.494511,34.033239],[-118.494198,34.032925],[-118.496550,34.031043],[-118.498589,34.032768],[-118.499060,34.032454],[-118.497021,34.030729],[-118.497491,34.030259],[-118.499530,34.031984],[-118.500001,34.031670],[-118.497962,34.029945],[-118.501256,34.027279],[-118.501569,34.027436],[-118.502040,34.026965],[-118.502197,34.027279],[-118.507372,34.023044],[-118.506902,34.022730],[-118.507059,34.022574]]]}}
,{"id":90010,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-118.291560,34.061784],[-118.291717,34.063666],[-118.289992,34.063666],[-118.289835,34.061784],[-118.291560,34.061784]]],[[[-118.291560,34.061784],[-118.291560,34.059745],[-118.294069,34.059745],[-118.294069,34.061784],[-118.295324,34.061784],[-118.295324,34.063666],[-118.292972,34.063666],[-118.292972,34.061784],[-118.291560,34.061784]]],[[[-118.337044,34.060529],[-118.336573,34.062097],[-118.338455,34.062097],[-118.338455,34.064920],[-118.337201,34.064920],[-118.333593,34.064920],[-118.332809,34.064764],[-118.332182,34.064136],[-118.331868,34.063979],[-118.327790,34.063979],[-118.326692,34.063666],[-118.321360,34.063509],[-118.321360,34.061784],[-118.324026,34.061784],[-118.324810,34.060372],[-118.325594,34.060686],[-118.327320,34.060686],[-118.328731,34.060999],[-118.329515,34.060999],[-118.329045,34.061940],[-118.330456,34.061940],[-118.330770,34.060999],[-118.335318,34.060843],[-118.334848,34.062097],[-118.335475,34.062097],[-118.335946,34.060843],[-118.337044,34.060529]]],[[[-118.304107,34.061784],[-118.302852,34.061784],[-118.302852,34.062411],[-118.302852,34.063509],[-118.301598,34.063509],[-118.301598,34.061784],[-118.300970,34.061784],[-118.299245,34.061784],[-118.299245,34.063509],[-118.296579,34.063666],[-118.296579,34.061784],[-118.298775,34.061784],[-118.298775,34.059745],[-118.309126,34.059745],[-118.309126,34.060686],[-118.317125,34.060686],[-118.316654,34.061627],[-118.319948,34.061784],[-118.319948,34.063509],[-118.316811,34.063509],[-118.315400,34.063195],[-118.315243,34.061627],[-118.312733,34.061627],[-118.310381,34.061627],[-118.310381,34.063509],[-118.305362,34.063509],[-118.305362,34.061784],[-118.304107,34.061784]]]]}}
,{"id":90073,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.454203,34.058490],[-118.454047,34.058333],[-118.452008,34.055824],[-118.452165,34.055667],[-118.450126,34.053157],[-118.448557,34.049236],[-118.449969,34.048295],[-118.451067,34.049707],[-118.451851,34.049393],[-118.452792,34.049236],[-118.455301,34.049707],[-118.456086,34.050491],[-118.456086,34.051119],[-118.455772,34.051589],[-118.454831,34.052216],[-118.454674,34.052844],[-118.454203,34.053157],[-118.454988,34.054569],[-118.456870,34.054098],[-118.457497,34.053628],[-118.458281,34.052844],[-118.458595,34.051275],[-118.459222,34.050805],[-118.460007,34.051746],[-118.468005,34.060843],[-118.468319,34.062568],[-118.467692,34.062568],[-118.464869,34.058804],[-118.464241,34.059117],[-118.464398,34.058333],[-118.462359,34.058333],[-118.460477,34.058804],[-118.456713,34.056765],[-118.454203,34.058490]]]}}
,{"id":91040,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.322458,34.249678],[-118.326692,34.250620],[-118.358217,34.238856],[-118.366216,34.243405],[-118.364961,34.244189],[-118.364961,34.245601],[-118.366843,34.245444],[-118.367471,34.245130],[-118.368882,34.246385],[-118.369039,34.246699],[-118.369823,34.251404],[-118.371549,34.252972],[-118.370451,34.255168],[-118.370608,34.256266],[-118.372960,34.254541],[-118.372646,34.254697],[-118.373587,34.256423],[-118.375156,34.256893],[-118.372960,34.258305],[-118.371235,34.260344],[-118.371078,34.263167],[-118.370764,34.263324],[-118.370451,34.263951],[-118.370451,34.264108],[-118.370921,34.264265],[-118.371549,34.263951],[-118.372333,34.263324],[-118.372960,34.263324],[-118.373274,34.263794],[-118.374215,34.264421],[-118.374529,34.264892],[-118.374529,34.265206],[-118.374215,34.265363],[-118.372176,34.265519],[-118.372333,34.265833],[-118.374058,34.267715],[-118.374372,34.268342],[-118.373274,34.269754],[-118.372960,34.270538],[-118.372803,34.272107],[-118.372960,34.273832],[-118.361511,34.273205],[-118.361511,34.272263],[-118.360256,34.271322],[-118.359315,34.271479],[-118.359315,34.271166],[-118.358060,34.271636],[-118.356806,34.271793],[-118.356178,34.271950],[-118.356178,34.272577],[-118.343631,34.270695],[-118.340965,34.269911],[-118.338769,34.268499],[-118.337201,34.267245],[-118.334064,34.263951],[-118.332809,34.264892],[-118.332966,34.265049],[-118.332495,34.265519],[-118.332338,34.266147],[-118.333907,34.266617],[-118.335318,34.266774],[-118.335946,34.267872],[-118.338142,34.272263],[-118.336416,34.272577],[-118.335789,34.272263],[-118.334848,34.272107],[-118.333750,34.272107],[-118.332966,34.271950],[-118.331868,34.271950],[-118.330770,34.271636],[-118.329672,34.272107],[-118.328574,34.272107],[-118.327006,34.272734],[-118.326222,34.273361],[-118.325751,34.273518],[-118.323242,34.273048],[-118.322144,34.273048],[-118.320262,34.273361],[-118.317282,34.272891],[-118.315086,34.274146],[-118.317282,34.273675],[-118.317595,34.273675],[-118.317595,34.273989],[-118.317125,34.274459],[-118.316341,34.275243],[-118.316498,34.275557],[-118.316811,34.275714],[-118.316968,34.275400],[-118.317752,34.275243],[-118.318223,34.274930],[-118.318693,34.275243],[-118.319321,34.275714],[-118.319478,34.276655],[-118.319791,34.277910],[-118.319478,34.278851],[-118.348179,34.279008],[-118.351787,34.279478],[-118.351787,34.282458],[-118.326849,34.282458],[-118.326849,34.286065],[-118.316811,34.286065],[-118.317439,34.284811],[-118.317282,34.283713],[-118.316654,34.282458],[-118.316184,34.280733],[-118.316184,34.279635],[-118.315870,34.279164],[-118.315400,34.278694],[-118.311636,34.278694],[-118.306303,34.281988],[-118.305832,34.278851],[-118.296893,34.278851],[-118.297363,34.278223],[-118.297834,34.277753],[-118.299716,34.276655],[-118.299402,34.276028],[-118.299716,34.275243],[-118.300970,34.275087],[-118.302225,34.274146],[-118.303166,34.273989],[-118.303323,34.273675],[-118.303166,34.273361],[-118.302225,34.272891],[-118.302696,34.272420],[-118.302696,34.252345],[-118.304421,34.252345],[-118.306146,34.252188],[-118.306146,34.252031],[-118.305832,34.251404],[-118.305989,34.251247],[-118.306146,34.251247],[-118.306617,34.250463],[-118.306460,34.248267],[-118.307087,34.248110],[-118.312420,34.248894],[-118.316654,34.248581],[-118.322458,34.249678]]]}}
,{"id":90403,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.507059,34.022574],[-118.506902,34.022730],[-118.507372,34.023044],[-118.502197,34.027279],[-118.502040,34.026965],[-118.501569,34.027436],[-118.501256,34.027279],[-118.497962,34.029945],[-118.500001,34.031670],[-118.499530,34.031984],[-118.497491,34.030259],[-118.497021,34.030729],[-118.499060,34.032454],[-118.498589,34.032768],[-118.496550,34.031043],[-118.494198,34.032925],[-118.494511,34.033239],[-118.492629,34.034807],[-118.492316,34.034493],[-118.488081,34.037944],[-118.488395,34.038258],[-118.487140,34.039355],[-118.486669,34.039042],[-118.483689,34.041394],[-118.480082,34.044531],[-118.480239,34.044531],[-118.479768,34.044688],[-118.479612,34.045159],[-118.479141,34.045002],[-118.478984,34.045629],[-118.478514,34.045629],[-118.478357,34.046256],[-118.477259,34.046727],[-118.474436,34.044218],[-118.473652,34.044061],[-118.471299,34.041865],[-118.471456,34.041708],[-118.470985,34.041238],[-118.472711,34.039826],[-118.476475,34.036846],[-118.476161,34.036376],[-118.478671,34.034180],[-118.481023,34.032298],[-118.481494,34.032768],[-118.486983,34.028377],[-118.485415,34.026965],[-118.485728,34.026651],[-118.486356,34.026181],[-118.487924,34.027592],[-118.490277,34.025710],[-118.490747,34.025240],[-118.505961,34.013006],[-118.512234,34.018182],[-118.507059,34.022574]]]}}
,{"id":93550,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.206396,34.376719],[-118.205455,34.376876],[-118.204984,34.377660],[-118.204670,34.377817],[-118.204200,34.378444],[-118.205611,34.378444],[-118.205768,34.378915],[-118.205611,34.379072],[-118.205298,34.379229],[-118.204984,34.379856],[-118.204200,34.380797],[-118.204357,34.380954],[-118.205141,34.380797],[-118.205141,34.381111],[-118.204514,34.381738],[-118.205298,34.382679],[-118.205455,34.382993],[-118.204984,34.383307],[-118.204670,34.382993],[-118.204357,34.382993],[-118.204043,34.383463],[-118.204357,34.383934],[-118.204514,34.384718],[-118.204670,34.384875],[-118.204827,34.384875],[-118.204984,34.384561],[-118.205298,34.384561],[-118.205611,34.384248],[-118.206082,34.384561],[-118.206396,34.384404],[-118.206866,34.384561],[-118.206866,34.384875],[-118.206396,34.385032],[-118.206396,34.385345],[-118.207493,34.385659],[-118.207964,34.385973],[-118.208435,34.386130],[-118.208435,34.386757],[-118.208748,34.387228],[-118.208748,34.387384],[-118.206866,34.387541],[-118.206709,34.388169],[-118.206082,34.388012],[-118.205925,34.388012],[-118.205611,34.388325],[-118.205611,34.389266],[-118.205298,34.389580],[-118.205298,34.390051],[-118.204670,34.390835],[-118.204670,34.391776],[-118.204357,34.391933],[-118.203729,34.391619],[-118.203886,34.390835],[-118.203729,34.390521],[-118.203102,34.389894],[-118.202318,34.390207],[-118.201377,34.389894],[-118.201220,34.389423],[-118.200593,34.389110],[-118.200436,34.388325],[-118.199808,34.387855],[-118.199495,34.387855],[-118.199338,34.388012],[-118.199181,34.388796],[-118.197613,34.389580],[-118.197299,34.389737],[-118.196985,34.389266],[-118.196515,34.389266],[-118.196044,34.388796],[-118.195730,34.388796],[-118.194789,34.388639],[-118.194633,34.388796],[-118.194789,34.389110],[-118.196671,34.389737],[-118.197613,34.390992],[-118.198240,34.391305],[-118.198397,34.391149],[-118.198397,34.390835],[-118.198554,34.390678],[-118.199651,34.390835],[-118.200122,34.391149],[-118.200436,34.391305],[-118.200749,34.392090],[-118.201377,34.392246],[-118.201690,34.392560],[-118.201690,34.393344],[-118.202945,34.394128],[-118.202945,34.394599],[-118.202475,34.395383],[-118.202475,34.396167],[-118.202631,34.396795],[-118.203102,34.397265],[-118.202945,34.398050],[-118.202631,34.398050],[-118.202631,34.397579],[-118.202161,34.397265],[-118.202161,34.396952],[-118.201690,34.396638],[-118.201847,34.396324],[-118.201847,34.395540],[-118.201534,34.395383],[-118.201220,34.395854],[-118.199965,34.395697],[-118.199808,34.396011],[-118.199651,34.396638],[-118.199965,34.397108],[-118.200436,34.397893],[-118.200436,34.398050],[-118.200279,34.398363],[-118.200279,34.398991],[-118.200593,34.399304],[-118.200906,34.398834],[-118.201220,34.398677],[-118.202004,34.399618],[-118.202161,34.399775],[-118.202161,34.402598],[-118.202318,34.402912],[-118.202318,34.403696],[-118.203102,34.404166],[-118.203102,34.404323],[-118.202631,34.405107],[-118.202318,34.404950],[-118.202004,34.405264],[-118.201063,34.404637],[-118.200593,34.404794],[-118.201063,34.405892],[-118.200906,34.406519],[-118.200749,34.406519],[-118.200593,34.406205],[-118.200279,34.406362],[-118.200436,34.406676],[-118.200279,34.407303],[-118.200436,34.407617],[-118.200436,34.408871],[-118.200749,34.409656],[-118.200593,34.410126],[-118.200436,34.409656],[-118.200122,34.409969],[-118.199651,34.409969],[-118.199651,34.409813],[-118.199338,34.409969],[-118.199495,34.410283],[-118.199181,34.410283],[-118.198867,34.411067],[-118.197299,34.411067],[-118.196671,34.411538],[-118.196671,34.412165],[-118.196358,34.412165],[-118.196201,34.412008],[-118.196044,34.411224],[-118.196358,34.410597],[-118.196201,34.410283],[-118.196044,34.410283],[-118.195103,34.410597],[-118.195103,34.410910],[-118.195260,34.411224],[-118.194476,34.412165],[-118.194162,34.411538],[-118.193848,34.411695],[-118.193692,34.411851],[-118.193064,34.412165],[-118.191182,34.413106],[-118.191025,34.413263],[-118.191496,34.413577],[-118.191496,34.413734],[-118.191182,34.413577],[-118.190868,34.412949],[-118.190555,34.412636],[-118.190241,34.412949],[-118.190084,34.413420],[-118.189457,34.413263],[-118.189143,34.412949],[-118.188986,34.412949],[-118.189143,34.413263],[-118.188829,34.413577],[-118.188673,34.413420],[-118.188202,34.413734],[-118.187418,34.414047],[-118.186947,34.413890],[-118.186634,34.413890],[-118.186163,34.413420],[-118.185379,34.413263],[-118.185222,34.413420],[-118.185536,34.413734],[-118.185693,34.414518],[-118.184752,34.415145],[-118.184281,34.414988],[-118.181928,34.415616],[-118.181615,34.415616],[-118.181144,34.415302],[-118.180360,34.415302],[-118.180360,34.415459],[-118.180674,34.415929],[-118.180360,34.416086],[-118.179733,34.415772],[-118.178478,34.415929],[-118.178321,34.416243],[-118.177851,34.416400],[-118.178007,34.417811],[-118.178321,34.418125],[-118.178478,34.418909],[-118.178321,34.419850],[-118.179262,34.420635],[-118.180046,34.420948],[-118.180046,34.421262],[-118.179890,34.421576],[-118.178949,34.421889],[-118.178478,34.422830],[-118.179105,34.422673],[-118.180203,34.422203],[-118.179890,34.423928],[-118.180831,34.425183],[-118.181301,34.425497],[-118.182713,34.425810],[-118.183026,34.426124],[-118.183654,34.426281],[-118.183967,34.426594],[-118.183967,34.427536],[-118.184281,34.428006],[-118.184908,34.440553],[-118.184752,34.453728],[-118.154481,34.452003],[-118.149149,34.452003],[-118.148678,34.465648],[-118.148521,34.466275],[-118.132681,34.466432],[-118.124368,34.466275],[-118.124368,34.466746],[-118.124211,34.466902],[-118.123270,34.467059],[-118.123270,34.468628],[-118.124054,34.469255],[-118.124211,34.469569],[-118.124995,34.470667],[-118.124682,34.471137],[-118.123584,34.471451],[-118.123113,34.471765],[-118.122956,34.473960],[-118.123113,34.477254],[-118.122486,34.477881],[-118.121545,34.477411],[-118.120447,34.478352],[-118.120918,34.479293],[-118.120918,34.481959],[-118.121388,34.482743],[-118.120133,34.481802],[-118.119192,34.480391],[-118.118565,34.478352],[-118.118565,34.476940],[-118.118094,34.476313],[-118.117781,34.476470],[-118.118251,34.477097],[-118.118408,34.476940],[-118.118565,34.480704],[-118.117781,34.480704],[-118.115899,34.488860],[-118.119663,34.489174],[-118.120604,34.488233],[-118.122015,34.487762],[-118.122172,34.487449],[-118.122643,34.486351],[-118.123113,34.486037],[-118.130328,34.486037],[-118.130485,34.485723],[-118.130642,34.486037],[-118.131896,34.486037],[-118.132681,34.485096],[-118.133465,34.484782],[-118.134720,34.483841],[-118.135661,34.483371],[-118.135347,34.483057],[-118.135504,34.482900],[-118.136602,34.483214],[-118.137699,34.484625],[-118.133778,34.487135],[-118.127505,34.490585],[-118.125780,34.492311],[-118.124368,34.493252],[-118.122956,34.494193],[-118.120290,34.495134],[-118.121074,34.495134],[-118.119820,34.495918],[-118.119035,34.496702],[-118.117624,34.498741],[-118.114801,34.503603],[-118.111664,34.507524],[-118.110723,34.508622],[-118.110880,34.508936],[-118.111037,34.509249],[-118.111507,34.509249],[-118.114017,34.506113],[-118.114487,34.505799],[-118.113389,34.507054],[-118.110880,34.511131],[-118.110409,34.512700],[-118.110409,34.514425],[-118.110723,34.520856],[-118.111037,34.521953],[-118.111978,34.524306],[-118.113232,34.527286],[-118.113703,34.530893],[-118.114330,34.532462],[-118.115271,34.533403],[-118.118251,34.535599],[-118.123270,34.540931],[-118.127191,34.544225],[-118.127505,34.544225],[-118.129857,34.546421],[-118.129701,34.546577],[-118.131112,34.548616],[-118.131583,34.550498],[-118.131740,34.553949],[-118.133151,34.567437],[-118.133465,34.581239],[-118.130955,34.580141],[-118.129544,34.579828],[-118.129701,34.587042],[-118.133622,34.587199],[-118.133778,34.592375],[-118.134406,34.594414],[-118.129701,34.594414],[-118.130014,34.621861],[-118.130014,34.645857],[-118.129857,34.645857],[-118.112291,34.646014],[-118.112291,34.660444],[-118.076689,34.660600],[-118.076532,34.646014],[-118.054260,34.646014],[-118.040929,34.646014],[-118.040772,34.630330],[-118.040929,34.616528],[-118.040772,34.601942],[-118.058495,34.602099],[-118.058338,34.583278],[-118.058181,34.573240],[-118.058338,34.559752],[-118.058495,34.558027],[-118.058495,34.558027],[-118.058338,34.528227],[-118.059122,34.528227],[-118.059593,34.526972],[-118.060220,34.526188],[-118.060220,34.524777],[-118.061005,34.523051],[-118.061161,34.522110],[-118.061005,34.521640],[-118.060377,34.521012],[-118.059593,34.518032],[-118.059279,34.515837],[-118.060377,34.513641],[-118.079198,34.513641],[-118.078571,34.504701],[-118.078414,34.499212],[-118.078571,34.470039],[-118.065396,34.470196],[-118.022735,34.470039],[-118.022579,34.469882],[-118.020853,34.469255],[-118.020697,34.468941],[-118.020540,34.468157],[-118.021167,34.467530],[-118.021167,34.466275],[-118.020226,34.464707],[-118.019756,34.463138],[-118.019442,34.462511],[-118.019442,34.461884],[-118.019128,34.460786],[-118.019285,34.460629],[-118.020069,34.459688],[-118.020226,34.458904],[-118.019756,34.457963],[-118.019285,34.457335],[-118.018030,34.457335],[-118.018187,34.456080],[-118.017873,34.454355],[-118.018187,34.453257],[-118.017873,34.452787],[-118.017403,34.451689],[-118.017717,34.451062],[-118.017403,34.450277],[-118.017089,34.449964],[-118.016619,34.449023],[-118.016776,34.447611],[-118.016305,34.447297],[-118.014580,34.446984],[-118.013639,34.446670],[-118.013482,34.446043],[-118.013482,34.445102],[-118.013325,34.444474],[-118.011443,34.442906],[-118.011129,34.442906],[-118.010972,34.365270],[-118.009561,34.365427],[-118.008934,34.365740],[-118.008463,34.366054],[-118.006738,34.366995],[-118.005640,34.367779],[-118.004856,34.367779],[-118.004228,34.367622],[-118.003130,34.368407],[-118.002817,34.368564],[-118.002346,34.369191],[-118.001562,34.369661],[-118.000464,34.369661],[-117.999523,34.370289],[-118.000150,34.369505],[-118.001091,34.369505],[-118.001876,34.368564],[-118.003915,34.367152],[-118.005169,34.367152],[-118.005797,34.366681],[-118.007365,34.366211],[-118.009561,34.364799],[-118.011600,34.364642],[-118.012227,34.364486],[-118.012384,34.364172],[-118.013011,34.364015],[-118.011913,34.363858],[-118.010972,34.364172],[-118.010816,34.363701],[-118.011129,34.363074],[-118.011129,34.362917],[-118.010659,34.362604],[-118.010345,34.361976],[-118.010972,34.361819],[-118.011286,34.361192],[-118.011129,34.361035],[-118.010031,34.361192],[-118.009875,34.361035],[-118.010031,34.360565],[-118.010502,34.359780],[-118.010972,34.359624],[-118.011757,34.359780],[-118.012227,34.359624],[-118.013011,34.358996],[-118.013325,34.358212],[-118.013168,34.357742],[-118.012070,34.357585],[-118.011913,34.356957],[-118.011600,34.356487],[-118.011913,34.355859],[-118.012070,34.355075],[-118.011600,34.354448],[-118.011443,34.353821],[-118.011286,34.353036],[-118.011129,34.339548],[-117.993563,34.338921],[-117.978977,34.338136],[-117.979291,34.294849],[-117.979134,34.267088],[-118.032146,34.266774],[-118.032146,34.268029],[-118.051280,34.268029],[-118.051437,34.250933],[-118.051280,34.245287],[-118.051751,34.245601],[-118.052849,34.245601],[-118.053319,34.245914],[-118.053633,34.246228],[-118.053790,34.246855],[-118.055672,34.247796],[-118.055986,34.247640],[-118.055829,34.247326],[-118.055986,34.247169],[-118.057084,34.247640],[-118.057554,34.248267],[-118.058181,34.248424],[-118.059907,34.248894],[-118.060063,34.249051],[-118.060377,34.249678],[-118.060848,34.249835],[-118.061475,34.249835],[-118.062730,34.249365],[-118.063043,34.248581],[-118.063828,34.248424],[-118.063984,34.248581],[-118.064141,34.249208],[-118.064298,34.249365],[-118.064455,34.249522],[-118.065396,34.249365],[-118.065239,34.250776],[-118.066023,34.250620],[-118.067435,34.251404],[-118.068062,34.251247],[-118.068533,34.251404],[-118.069788,34.251404],[-118.070101,34.251561],[-118.070101,34.251874],[-118.069944,34.252031],[-118.069631,34.252031],[-118.069631,34.252188],[-118.070101,34.252658],[-118.070572,34.252972],[-118.071042,34.252815],[-118.071513,34.252815],[-118.072297,34.253599],[-118.072768,34.253756],[-118.072768,34.254070],[-118.073081,34.254384],[-118.073552,34.253756],[-118.073865,34.253443],[-118.074493,34.253443],[-118.076532,34.254070],[-118.077943,34.253913],[-118.077943,34.254070],[-118.076845,34.254384],[-118.076532,34.254854],[-118.076061,34.254697],[-118.075904,34.254854],[-118.076061,34.255011],[-118.076689,34.255168],[-118.077002,34.254697],[-118.078100,34.254697],[-118.078414,34.254854],[-118.079041,34.255952],[-118.079198,34.255795],[-118.079355,34.255325],[-118.079825,34.255168],[-118.080923,34.255168],[-118.081707,34.254854],[-118.082178,34.255325],[-118.082805,34.255011],[-118.083119,34.255011],[-118.083746,34.255325],[-118.083903,34.255952],[-118.083903,34.256893],[-118.084374,34.256736],[-118.084844,34.255952],[-118.085472,34.255795],[-118.086570,34.256736],[-118.087667,34.256736],[-118.087824,34.256423],[-118.087981,34.256423],[-118.088138,34.256736],[-118.088608,34.256423],[-118.089393,34.256109],[-118.089706,34.256266],[-118.090177,34.256736],[-118.090020,34.257364],[-118.090020,34.257520],[-118.090804,34.256893],[-118.091745,34.257364],[-118.092373,34.257364],[-118.092686,34.257677],[-118.093157,34.257207],[-118.093314,34.257207],[-118.093627,34.257677],[-118.094255,34.257364],[-118.094725,34.257364],[-118.095039,34.256893],[-118.095353,34.256893],[-118.096607,34.257364],[-118.096607,34.257207],[-118.096137,34.256423],[-118.096137,34.256109],[-118.096294,34.255638],[-118.096137,34.255325],[-118.097235,34.255795],[-118.096607,34.256109],[-118.096607,34.256423],[-118.097392,34.256893],[-118.098333,34.256893],[-118.098646,34.257677],[-118.099117,34.257834],[-118.100058,34.257207],[-118.100215,34.256423],[-118.100371,34.256423],[-118.101156,34.256579],[-118.101156,34.257364],[-118.101940,34.257207],[-118.102254,34.256736],[-118.102567,34.257050],[-118.103038,34.256893],[-118.104449,34.257520],[-118.104920,34.257520],[-118.105234,34.258148],[-118.105234,34.258462],[-118.105861,34.258618],[-118.106645,34.259559],[-118.107429,34.260814],[-118.107743,34.261598],[-118.108213,34.262226],[-118.108213,34.262696],[-118.107586,34.263324],[-118.107743,34.263794],[-118.108213,34.263951],[-118.109939,34.263637],[-118.110880,34.264108],[-118.111193,34.264108],[-118.112135,34.263480],[-118.112291,34.262539],[-118.112762,34.262226],[-118.113232,34.262226],[-118.114644,34.263010],[-118.115271,34.263794],[-118.115114,34.264735],[-118.114487,34.265676],[-118.114487,34.266147],[-118.114644,34.266304],[-118.116212,34.267088],[-118.117310,34.268186],[-118.117781,34.268186],[-118.118251,34.268029],[-118.118408,34.267715],[-118.117938,34.266931],[-118.117624,34.266774],[-118.116683,34.266774],[-118.116526,34.266617],[-118.116212,34.266304],[-118.116369,34.265990],[-118.116840,34.265206],[-118.117153,34.263637],[-118.116369,34.262069],[-118.115742,34.261912],[-118.115271,34.261442],[-118.115271,34.261128],[-118.115585,34.260814],[-118.116369,34.260814],[-118.116997,34.261598],[-118.117467,34.261912],[-118.119506,34.262383],[-118.120604,34.263480],[-118.121388,34.263637],[-118.122956,34.263480],[-118.124368,34.263794],[-118.125466,34.264265],[-118.126878,34.265206],[-118.127505,34.265363],[-118.128916,34.265206],[-118.131112,34.265990],[-118.133308,34.265833],[-118.134092,34.265833],[-118.136602,34.266931],[-118.137856,34.267872],[-118.139425,34.268029],[-118.139895,34.268499],[-118.140209,34.269440],[-118.140523,34.269440],[-118.141464,34.269440],[-118.143816,34.268499],[-118.144444,34.268342],[-118.147267,34.269284],[-118.152286,34.270381],[-118.152756,34.270381],[-118.153384,34.270225],[-118.153697,34.271166],[-118.154011,34.271322],[-118.154638,34.271636],[-118.156364,34.271322],[-118.157148,34.271479],[-118.158089,34.271950],[-118.159657,34.273361],[-118.162010,34.274146],[-118.163578,34.275400],[-118.164049,34.275714],[-118.165931,34.275871],[-118.166401,34.276185],[-118.166715,34.276812],[-118.167029,34.278380],[-118.167342,34.278851],[-118.169381,34.279164],[-118.170009,34.280106],[-118.170636,34.280576],[-118.172989,34.280733],[-118.176125,34.281360],[-118.176596,34.281674],[-118.176910,34.282458],[-118.177380,34.282772],[-118.179105,34.282615],[-118.179419,34.282772],[-118.180360,34.284027],[-118.180517,34.284497],[-118.180046,34.285595],[-118.180203,34.286222],[-118.180674,34.287006],[-118.180674,34.287320],[-118.180674,34.287634],[-118.180046,34.288104],[-118.179576,34.288418],[-118.178321,34.288575],[-118.177223,34.289359],[-118.176125,34.289673],[-118.175498,34.290614],[-118.175028,34.290928],[-118.172989,34.291398],[-118.172518,34.291555],[-118.170636,34.290928],[-118.170009,34.291084],[-118.169695,34.291398],[-118.169538,34.291869],[-118.170009,34.292810],[-118.170009,34.293437],[-118.169538,34.294064],[-118.167656,34.295162],[-118.166088,34.295319],[-118.165774,34.295476],[-118.165617,34.296417],[-118.165147,34.296887],[-118.164519,34.296887],[-118.163421,34.296574],[-118.162794,34.296574],[-118.161539,34.296731],[-118.161382,34.297044],[-118.163264,34.297358],[-118.163735,34.297515],[-118.164519,34.298299],[-118.164990,34.298299],[-118.165774,34.298142],[-118.166088,34.297672],[-118.166244,34.296731],[-118.166715,34.296417],[-118.167499,34.296417],[-118.168440,34.297201],[-118.169381,34.297358],[-118.169852,34.297044],[-118.170793,34.295790],[-118.171734,34.295476],[-118.172675,34.294849],[-118.173302,34.294849],[-118.173930,34.295005],[-118.174086,34.295319],[-118.174086,34.295790],[-118.173773,34.296731],[-118.173930,34.296887],[-118.174714,34.297672],[-118.175498,34.297985],[-118.176439,34.297672],[-118.178949,34.296103],[-118.188202,34.296103],[-118.188359,34.299711],[-118.188986,34.321041],[-118.189771,34.361349],[-118.189614,34.380640],[-118.190555,34.381268],[-118.191182,34.381424],[-118.191809,34.381268],[-118.192123,34.380170],[-118.193378,34.379856],[-118.194946,34.380483],[-118.195574,34.380483],[-118.195574,34.380170],[-118.195417,34.379699],[-118.194946,34.378288],[-118.194946,34.377817],[-118.198083,34.378288],[-118.198867,34.377660],[-118.202945,34.377033],[-118.203259,34.376876],[-118.203729,34.376092],[-118.204514,34.375621],[-118.205141,34.375621],[-118.205925,34.376249],[-118.206396,34.376719]]]}}
,{"id":92397,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-117.605383,34.382993],[-117.602717,34.382993],[-117.602403,34.383150],[-117.602246,34.383620],[-117.601933,34.383620],[-117.601619,34.383463],[-117.600207,34.384091],[-117.598325,34.384091],[-117.597855,34.384561],[-117.596914,34.384404],[-117.596600,34.385032],[-117.596443,34.385032],[-117.596130,34.384718],[-117.596443,34.384091],[-117.596130,34.383307],[-117.595816,34.383150],[-117.594404,34.383150],[-117.594091,34.382993],[-117.591111,34.385345],[-117.587974,34.387071],[-117.588131,34.387698],[-117.588915,34.388325],[-117.585935,34.389423],[-117.585308,34.389580],[-117.584994,34.390051],[-117.584366,34.390207],[-117.584053,34.390835],[-117.583112,34.390992],[-117.583112,34.391933],[-117.582798,34.392717],[-117.581073,34.395697],[-117.581073,34.397736],[-117.580759,34.398520],[-117.579191,34.401657],[-117.579034,34.401657],[-117.580445,34.398206],[-117.580602,34.397422],[-117.580445,34.396167],[-117.579504,34.393501],[-117.578563,34.392403],[-117.576211,34.390835],[-117.575583,34.389894],[-117.574799,34.388796],[-117.573858,34.386443],[-117.573074,34.385502],[-117.571976,34.384561],[-117.569310,34.383150],[-117.586562,34.383307],[-117.594247,34.382836],[-117.596914,34.380327],[-117.598168,34.379699],[-117.599580,34.379542],[-117.601619,34.380170],[-117.602560,34.380327],[-117.603658,34.380170],[-117.604599,34.379699],[-117.605383,34.378915],[-117.607579,34.376406],[-117.608049,34.375464],[-117.608363,34.373582],[-117.607736,34.372171],[-117.607422,34.371543],[-117.603972,34.367936],[-117.603501,34.367152],[-117.603187,34.366368],[-117.603344,34.364799],[-117.604285,34.361663],[-117.604913,34.360878],[-117.606010,34.359780],[-117.607265,34.358839],[-117.608834,34.358212],[-117.609147,34.356173],[-117.609775,34.353977],[-117.606795,34.353977],[-117.606795,34.351468],[-117.606324,34.351311],[-117.606638,34.350213],[-117.605697,34.349586],[-117.605697,34.347076],[-117.606010,34.346135],[-117.606324,34.346135],[-117.606481,34.346292],[-117.607579,34.345822],[-117.608834,34.346606],[-117.611029,34.346763],[-117.611500,34.347076],[-117.611970,34.346763],[-117.609304,34.345822],[-117.608206,34.344881],[-117.606638,34.344410],[-117.605540,34.343469],[-117.604128,34.343155],[-117.603344,34.342685],[-117.602874,34.342057],[-117.602560,34.341273],[-117.602089,34.340332],[-117.602089,34.339862],[-117.602403,34.339234],[-117.650239,34.338921],[-117.650396,34.339078],[-117.652278,34.360878],[-117.652435,34.360565],[-117.652906,34.360878],[-117.652749,34.361349],[-117.652906,34.361976],[-117.652906,34.363231],[-117.653847,34.364486],[-117.653690,34.365270],[-117.656043,34.366211],[-117.656827,34.366054],[-117.657297,34.366211],[-117.658081,34.366838],[-117.657768,34.367152],[-117.656199,34.367309],[-117.653376,34.366211],[-117.652749,34.366211],[-117.655258,34.396952],[-117.642084,34.397265],[-117.641927,34.390051],[-117.632203,34.389737],[-117.632046,34.389894],[-117.630948,34.390521],[-117.630791,34.391149],[-117.630478,34.391462],[-117.629223,34.390992],[-117.628125,34.390835],[-117.622636,34.391149],[-117.621538,34.390678],[-117.620283,34.389737],[-117.619499,34.388169],[-117.619656,34.387228],[-117.618715,34.386443],[-117.613539,34.386443],[-117.613696,34.388169],[-117.613382,34.388325],[-117.607108,34.388169],[-117.607108,34.382993],[-117.605383,34.382993]]]}}
,{"id":91732,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-118.020226,34.097073],[-118.020226,34.097857],[-118.017246,34.099112],[-118.015050,34.102092],[-118.015207,34.103033],[-118.007365,34.105542],[-118.007992,34.104131],[-118.009561,34.100994],[-118.001091,34.098014],[-118.000307,34.099739],[-117.997484,34.098641],[-117.997955,34.098014],[-117.998582,34.097230],[-117.997641,34.096916],[-118.001876,34.088290],[-117.998896,34.087192],[-117.999994,34.084839],[-118.000621,34.082643],[-118.001405,34.076840],[-118.001876,34.074958],[-118.005326,34.064607],[-118.005169,34.064607],[-118.005640,34.063352],[-118.005954,34.063352],[-118.007051,34.059745],[-118.007679,34.058019],[-118.007522,34.057706],[-118.008934,34.053314],[-118.009561,34.051589],[-118.010345,34.050177],[-118.011600,34.048295],[-118.012855,34.046884],[-118.015050,34.045002],[-118.016305,34.044061],[-118.017717,34.043276],[-118.021638,34.041708],[-118.021951,34.041551],[-118.023520,34.042806],[-118.021638,34.043904],[-118.023206,34.045159],[-118.025559,34.043276],[-118.027598,34.045002],[-118.026029,34.046256],[-118.026343,34.046727],[-118.026500,34.046570],[-118.025559,34.047354],[-118.029793,34.050805],[-118.029480,34.051119],[-118.029793,34.051432],[-118.029950,34.054412],[-118.030577,34.054569],[-118.030577,34.055040],[-118.030107,34.055040],[-118.028068,34.056922],[-118.027284,34.056765],[-118.025872,34.057863],[-118.026656,34.058490],[-118.027127,34.058176],[-118.028225,34.058333],[-118.028382,34.057863],[-118.030577,34.058019],[-118.030577,34.063352],[-118.030577,34.065077],[-118.030264,34.066018],[-118.029323,34.067430],[-118.028068,34.068841],[-118.026813,34.067900],[-118.023363,34.067900],[-118.022108,34.067744],[-118.020540,34.067273],[-118.020069,34.068998],[-118.018501,34.071978],[-118.021951,34.074174],[-118.022892,34.074017],[-118.020540,34.078722],[-118.026029,34.079820],[-118.025402,34.082016],[-118.026500,34.082643],[-118.026029,34.083114],[-118.025088,34.083114],[-118.024931,34.083428],[-118.024461,34.083271],[-118.024304,34.083741],[-118.024147,34.083741],[-118.023677,34.084996],[-118.023206,34.084996],[-118.023049,34.085153],[-118.024147,34.085310],[-118.023833,34.086094],[-118.023990,34.086251],[-118.023677,34.086878],[-118.023206,34.087035],[-118.023520,34.087349],[-118.023049,34.088603],[-118.022892,34.088760],[-118.022892,34.089231],[-118.022108,34.089858],[-118.021638,34.089858],[-118.020069,34.095191],[-118.019912,34.095504],[-118.019599,34.095504],[-118.019599,34.096132],[-118.020069,34.096602],[-118.020226,34.097073]]]}}
,{"id":91731,"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-118.056770,34.085153],[-118.057711,34.082800],[-118.059436,34.083271],[-118.059593,34.082957],[-118.059750,34.082957],[-118.059907,34.082487],[-118.058966,34.082330],[-118.059436,34.081232],[-118.063043,34.081232],[-118.062573,34.083428],[-118.061789,34.086564],[-118.056770,34.085153]]],[[[-118.056770,34.085153],[-118.054888,34.089858],[-118.053476,34.090015],[-118.053476,34.090015],[-118.051908,34.090172],[-118.051908,34.090329],[-118.034028,34.092838],[-118.034185,34.093309],[-118.033087,34.093465],[-118.032460,34.095034],[-118.032616,34.096445],[-118.032460,34.096445],[-118.032303,34.096289],[-118.030734,34.096445],[-118.030577,34.095191],[-118.029950,34.095347],[-118.029950,34.094877],[-118.030421,34.093779],[-118.031675,34.094250],[-118.031989,34.093465],[-118.032146,34.092681],[-118.031048,34.092524],[-118.028539,34.094720],[-118.027441,34.095347],[-118.025872,34.095818],[-118.020226,34.097073],[-118.020069,34.096602],[-118.019599,34.096132],[-118.019599,34.095504],[-118.019912,34.095504],[-118.020069,34.095191],[-118.021638,34.089858],[-118.022108,34.089858],[-118.022892,34.089231],[-118.022892,34.088760],[-118.023049,34.088603],[-118.023520,34.087349],[-118.023206,34.087035],[-118.023677,34.086878],[-118.023990,34.086251],[-118.023833,34.086094],[-118.024147,34.085310],[-118.023049,34.085153],[-118.023206,34.084996],[-118.023677,34.084996],[-118.024147,34.083741],[-118.024304,34.083741],[-118.024461,34.083271],[-118.024931,34.083428],[-118.025088,34.083114],[-118.026029,34.083114],[-118.026500,34.082643],[-118.025402,34.082016],[-118.026029,34.079820],[-118.020540,34.078722],[-118.022892,34.074017],[-118.021951,34.074174],[-118.018501,34.071978],[-118.020069,34.068998],[-118.020540,34.067273],[-118.022108,34.067744],[-118.023363,34.067900],[-118.026813,34.067900],[-118.028068,34.068841],[-118.029323,34.067430],[-118.030264,34.066018],[-118.030577,34.065077],[-118.030577,34.063352],[-118.038106,34.063195],[-118.038106,34.062882],[-118.041399,34.062725],[-118.041399,34.063666],[-118.041243,34.064450],[-118.042027,34.064293],[-118.042184,34.065234],[-118.040929,34.065234],[-118.040929,34.066959],[-118.042497,34.067116],[-118.042184,34.068685],[-118.044066,34.068998],[-118.045477,34.069469],[-118.049398,34.071037],[-118.060534,34.067744],[-118.063514,34.066175],[-118.067749,34.062882],[-118.068847,34.062882],[-118.069788,34.062882],[-118.068847,34.063823],[-118.068690,34.064764],[-118.069003,34.065705],[-118.068690,34.065705],[-118.068219,34.065077],[-118.067749,34.065391],[-118.072297,34.069626],[-118.072924,34.070880],[-118.072924,34.072292],[-118.055829,34.072449],[-118.055829,34.080291],[-118.056142,34.080448],[-118.055829,34.080918],[-118.055986,34.084526],[-118.056142,34.084996],[-118.056770,34.085153]]]]}}
,{"id":94949,"type":"Feature","properties":{},"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":{},"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":95306,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-120.175370,37.497373],[-120.171449,37.498000],[-120.168312,37.497687],[-120.165489,37.498000],[-120.162823,37.497530],[-120.161098,37.497530],[-120.159529,37.497059],[-120.158118,37.495648],[-120.156549,37.494393],[-120.153726,37.493766],[-120.152001,37.493138],[-120.149335,37.492511],[-120.148080,37.491884],[-120.147139,37.491727],[-120.143375,37.491413],[-120.141022,37.491727],[-120.139611,37.491413],[-120.139140,37.490943],[-120.138826,37.490315],[-120.138356,37.488747],[-120.135690,37.484826],[-120.134121,37.479336],[-120.133964,37.477141],[-120.132710,37.474631],[-120.132553,37.474317],[-120.131925,37.474004],[-120.126122,37.474004],[-120.122201,37.474474],[-120.117967,37.476356],[-120.114359,37.477925],[-120.113418,37.477925],[-120.112320,37.477768],[-120.112007,37.478395],[-120.111693,37.478552],[-120.109027,37.478866],[-120.107772,37.478866],[-120.106674,37.479180],[-120.105419,37.479336],[-120.104165,37.480121],[-120.103224,37.479964],[-120.102753,37.480121],[-120.101028,37.480434],[-120.099930,37.480905],[-120.099459,37.480905],[-120.099303,37.480434],[-120.098832,37.480121],[-120.098205,37.480121],[-120.097577,37.479807],[-120.096009,37.479650],[-120.094911,37.479180],[-120.094441,37.479180],[-120.093970,37.479336],[-120.093186,37.479964],[-120.093029,37.480591],[-120.091617,37.480748],[-120.090833,37.480591],[-120.090206,37.479964],[-120.089108,37.479807],[-120.088637,37.479964],[-120.086599,37.479493],[-120.086128,37.479180],[-120.085814,37.478552],[-120.084089,37.479023],[-120.083462,37.478552],[-120.082364,37.478395],[-120.081893,37.478709],[-120.081423,37.479336],[-120.080795,37.479650],[-120.080168,37.479650],[-120.077188,37.480591],[-120.075933,37.480748],[-120.073424,37.481689],[-120.071699,37.483101],[-120.069346,37.482316],[-120.067778,37.482473],[-120.067150,37.481532],[-120.065582,37.480277],[-120.065739,37.479964],[-120.064014,37.479650],[-120.064798,37.479023],[-120.063229,37.479180],[-120.061504,37.478866],[-120.056956,37.477141],[-120.057583,37.476200],[-120.057426,37.475572],[-120.056799,37.474474],[-120.056956,37.473690],[-120.056642,37.472749],[-120.056799,37.472279],[-120.055544,37.471338],[-120.055230,37.470553],[-120.056485,37.469769],[-120.056485,37.469299],[-120.057113,37.468671],[-120.057740,37.468358],[-120.058681,37.468358],[-120.058210,37.467573],[-120.059622,37.466632],[-120.059779,37.466319],[-120.059465,37.465848],[-120.059465,37.465534],[-120.060249,37.465064],[-120.060249,37.464280],[-120.060563,37.463495],[-120.060093,37.462554],[-120.059936,37.462084],[-120.059308,37.460986],[-120.057897,37.460202],[-120.057426,37.459574],[-120.057426,37.459104],[-120.057740,37.458477],[-120.057426,37.457065],[-120.056799,37.456281],[-120.056799,37.455183],[-120.057269,37.454085],[-120.057113,37.452830],[-120.057897,37.452203],[-120.057583,37.450948],[-120.056171,37.450478],[-120.055074,37.449694],[-120.053348,37.449380],[-120.052564,37.448752],[-120.052407,37.448439],[-120.052250,37.447655],[-120.051153,37.446714],[-120.051153,37.446243],[-120.050839,37.445459],[-120.048173,37.442479],[-120.046761,37.441067],[-120.046134,37.440754],[-120.044722,37.438872],[-120.042683,37.436833],[-120.041585,37.436048],[-120.041585,37.435578],[-120.040801,37.434166],[-120.040801,37.433539],[-120.041115,37.433225],[-120.041115,37.433068],[-120.040487,37.432598],[-120.039860,37.432284],[-120.038605,37.431971],[-120.038135,37.431657],[-120.037194,37.431500],[-120.037037,37.431186],[-120.036723,37.430559],[-120.036253,37.430245],[-120.035782,37.429775],[-120.035155,37.429932],[-120.034371,37.429618],[-120.033900,37.429618],[-120.032959,37.429304],[-120.032489,37.429304],[-120.031548,37.428991],[-120.030293,37.429147],[-120.028568,37.428677],[-120.028254,37.428363],[-120.028411,37.427736],[-120.027940,37.427109],[-120.027783,37.426638],[-120.027156,37.426167],[-120.026215,37.426167],[-120.025117,37.425854],[-120.024490,37.423815],[-120.024333,37.423501],[-120.023862,37.423031],[-120.022137,37.422717],[-120.020255,37.422090],[-120.019785,37.422090],[-120.019314,37.421776],[-120.018687,37.421776],[-120.017746,37.421149],[-120.016648,37.421149],[-120.016491,37.420992],[-120.016648,37.420521],[-120.016648,37.420208],[-120.016491,37.419894],[-120.015864,37.419423],[-120.015079,37.419266],[-120.013511,37.419266],[-120.012256,37.418639],[-120.011942,37.418796],[-120.010845,37.418639],[-120.010060,37.419110],[-120.009276,37.418953],[-120.008806,37.419110],[-120.008492,37.419894],[-120.007865,37.420521],[-120.007865,37.420835],[-120.006924,37.420364],[-120.006453,37.420051],[-120.006296,37.419423],[-120.005355,37.417541],[-120.005042,37.415973],[-120.004885,37.415189],[-120.005198,37.414561],[-120.005512,37.413307],[-120.005198,37.412366],[-120.005198,37.411738],[-120.004571,37.410797],[-120.004728,37.410170],[-120.004100,37.409072],[-120.003787,37.408131],[-120.003630,37.406249],[-120.003630,37.405621],[-120.004414,37.404053],[-120.004414,37.403426],[-120.004885,37.402485],[-120.004885,37.402014],[-120.004571,37.401544],[-120.003473,37.401073],[-120.003159,37.400602],[-120.003787,37.399034],[-120.003473,37.398720],[-120.003473,37.398564],[-120.004100,37.397309],[-120.004571,37.396681],[-120.005669,37.396681],[-120.005983,37.396525],[-120.006139,37.396368],[-120.006139,37.395897],[-120.005826,37.395584],[-120.005826,37.394956],[-120.005042,37.394172],[-120.004728,37.393702],[-120.004100,37.393231],[-120.004885,37.391192],[-120.004571,37.390878],[-120.004571,37.389937],[-120.003630,37.389310],[-120.003316,37.388683],[-120.003630,37.388212],[-120.003630,37.388055],[-120.003003,37.387271],[-120.002689,37.386644],[-120.002689,37.386173],[-120.002846,37.386173],[-120.003944,37.386644],[-120.004257,37.386487],[-120.004571,37.385546],[-120.004571,37.384762],[-120.003944,37.384291],[-120.003787,37.382880],[-120.002062,37.381782],[-119.999866,37.381625],[-119.999238,37.382252],[-119.998768,37.382252],[-119.996729,37.379586],[-119.996258,37.377704],[-119.996572,37.377390],[-119.997200,37.377233],[-119.997043,37.376449],[-119.997200,37.376292],[-119.997984,37.376135],[-119.999082,37.375037],[-119.999238,37.374096],[-119.999709,37.373312],[-120.000336,37.373155],[-120.000179,37.372685],[-120.000336,37.372214],[-120.001748,37.370175],[-120.001905,37.369705],[-120.001905,37.369234],[-120.001121,37.368607],[-120.000964,37.367352],[-120.001277,37.366882],[-120.001748,37.366568],[-120.002375,37.365941],[-120.006296,37.365941],[-120.008649,37.365000],[-120.010374,37.364059],[-120.011158,37.363118],[-120.011942,37.362647],[-120.017118,37.360608],[-120.017902,37.360451],[-120.019000,37.359981],[-120.021353,37.358099],[-120.021667,37.357628],[-120.021196,37.355589],[-120.020882,37.355276],[-120.020098,37.354648],[-120.019785,37.354021],[-120.019471,37.352766],[-120.019471,37.352296],[-120.019941,37.351982],[-120.020255,37.351198],[-120.020882,37.350727],[-120.020882,37.350570],[-120.020569,37.350414],[-120.020569,37.350257],[-120.020882,37.349786],[-120.021823,37.349473],[-120.023392,37.347747],[-120.024019,37.347747],[-120.024333,37.347434],[-120.024960,37.346806],[-120.025117,37.346022],[-120.026842,37.344297],[-120.028568,37.344140],[-120.030450,37.344140],[-120.032175,37.343669],[-120.033273,37.343199],[-120.033586,37.342572],[-120.033900,37.342258],[-120.035312,37.341944],[-120.035782,37.341630],[-120.036096,37.341317],[-120.036253,37.340689],[-120.036880,37.340219],[-120.037037,37.339278],[-120.037664,37.338494],[-120.037821,37.337709],[-120.038449,37.337082],[-120.038762,37.335984],[-120.039076,37.335827],[-120.039076,37.335514],[-120.040174,37.334416],[-120.041272,37.333632],[-120.042370,37.332691],[-120.044565,37.332063],[-120.045977,37.331279],[-120.046761,37.331279],[-120.048329,37.331750],[-120.049584,37.331436],[-120.051466,37.330965],[-120.052407,37.330338],[-120.053348,37.330024],[-120.058524,37.328770],[-120.059779,37.328142],[-120.059779,37.327829],[-120.059936,37.327044],[-120.059936,37.325633],[-120.059779,37.323908],[-120.059151,37.322339],[-120.058838,37.322025],[-120.057740,37.321398],[-120.057583,37.319673],[-120.057269,37.319045],[-120.055701,37.317948],[-120.054289,37.317634],[-120.053819,37.317320],[-120.054133,37.314340],[-120.054603,37.313086],[-120.054603,37.311360],[-120.054917,37.310262],[-120.056485,37.309008],[-120.056642,37.307439],[-120.056015,37.306498],[-120.055858,37.304930],[-120.055544,37.304146],[-120.054760,37.303205],[-120.053662,37.302264],[-120.053348,37.301793],[-120.053348,37.301009],[-120.052564,37.299911],[-120.051780,37.297872],[-120.051466,37.297088],[-120.050996,37.296617],[-120.051623,37.296147],[-120.052094,37.295519],[-120.053192,37.294892],[-120.054133,37.294892],[-120.054760,37.294578],[-120.055387,37.293794],[-120.056171,37.293324],[-120.058367,37.292853],[-120.058995,37.292226],[-120.059779,37.292069],[-120.060877,37.292226],[-120.061504,37.292069],[-120.063386,37.291912],[-120.064641,37.291598],[-120.067150,37.290501],[-120.067621,37.290657],[-120.068091,37.291442],[-120.068091,37.292383],[-120.068405,37.292853],[-120.068876,37.293167],[-120.069660,37.293324],[-120.070444,37.293010],[-120.071071,37.292226],[-120.071699,37.291755],[-120.073738,37.290971],[-120.075463,37.289403],[-120.077659,37.288462],[-120.080325,37.288462],[-120.080952,37.288775],[-120.082678,37.288305],[-120.084246,37.288462],[-120.085501,37.288932],[-120.086128,37.288305],[-120.087853,37.287677],[-120.089579,37.286266],[-120.090676,37.286109],[-120.092558,37.287677],[-120.093500,37.288148],[-120.096009,37.288618],[-120.096479,37.289403],[-120.096793,37.289559],[-120.099773,37.289246],[-120.101812,37.290187],[-120.104008,37.290657],[-120.104635,37.291128],[-120.105576,37.291285],[-120.106674,37.292069],[-120.107301,37.292226],[-120.107929,37.292539],[-120.109654,37.292539],[-120.110125,37.292853],[-120.111536,37.293010],[-120.112320,37.293480],[-120.112634,37.293794],[-120.112477,37.294422],[-120.113418,37.295519],[-120.113418,37.296147],[-120.114046,37.297245],[-120.114046,37.298186],[-120.114046,37.299284],[-120.113732,37.300695],[-120.113261,37.301166],[-120.113418,37.301636],[-120.113732,37.302107],[-120.113889,37.302891],[-120.113889,37.303675],[-120.117967,37.301166],[-120.119535,37.301009],[-120.120162,37.301479],[-120.120790,37.301636],[-120.122201,37.301479],[-120.123927,37.301166],[-120.127534,37.298970],[-120.127691,37.298656],[-120.127848,37.298343],[-120.127848,37.297401],[-120.128161,37.296460],[-120.128004,37.295676],[-120.128161,37.295049],[-120.128475,37.293324],[-120.128475,37.293010],[-120.127848,37.292539],[-120.127848,37.292226],[-120.128161,37.291912],[-120.129259,37.291442],[-120.132396,37.291598],[-120.132710,37.291285],[-120.132866,37.290501],[-120.133337,37.290187],[-120.135062,37.290030],[-120.136003,37.290501],[-120.136474,37.290344],[-120.136944,37.290030],[-120.136787,37.288775],[-120.137258,37.287677],[-120.138042,37.286579],[-120.138670,37.286266],[-120.138983,37.286266],[-120.140081,37.287050],[-120.141179,37.287364],[-120.141806,37.288462],[-120.142591,37.288775],[-120.143218,37.288932],[-120.144629,37.288618],[-120.145884,37.289246],[-120.146825,37.289559],[-120.147453,37.289559],[-120.147923,37.289246],[-120.149178,37.287991],[-120.150589,37.285482],[-120.151530,37.285011],[-120.151844,37.284541],[-120.152472,37.283913],[-120.154824,37.282658],[-120.156393,37.281090],[-120.159216,37.279835],[-120.161411,37.279522],[-120.161568,37.272307],[-120.163764,37.268543],[-120.165489,37.266190],[-120.167685,37.263994],[-120.169724,37.262426],[-120.174586,37.260544],[-120.176311,37.260544],[-120.177566,37.261485],[-120.178507,37.262426],[-120.178978,37.263367],[-120.179291,37.264308],[-120.182114,37.267602],[-120.182742,37.269170],[-120.183369,37.269641],[-120.183683,37.270425],[-120.183840,37.271209],[-120.186663,37.280306],[-120.186506,37.282502],[-120.185565,37.285011],[-120.182742,37.291442],[-120.187761,37.301009],[-120.189643,37.303518],[-120.194662,37.306655],[-120.198896,37.309635],[-120.203601,37.313399],[-120.209091,37.325005],[-120.212541,37.330338],[-120.216462,37.337396],[-120.219129,37.341003],[-120.220540,37.341944],[-120.222893,37.345551],[-120.224148,37.347277],[-120.224618,37.348218],[-120.225716,37.349786],[-120.226657,37.350884],[-120.228225,37.351668],[-120.231362,37.358256],[-120.233872,37.360608],[-120.242812,37.372528],[-120.245635,37.376763],[-120.247046,37.380213],[-120.250967,37.382723],[-120.254731,37.385389],[-120.257868,37.390565],[-120.262260,37.396211],[-120.266338,37.401073],[-120.268063,37.403896],[-120.272611,37.412052],[-120.273395,37.414875],[-120.274493,37.416130],[-120.275748,37.418796],[-120.278414,37.419580],[-120.277944,37.419894],[-120.276532,37.420992],[-120.275278,37.421305],[-120.273552,37.420835],[-120.271827,37.420678],[-120.269318,37.420992],[-120.269161,37.422403],[-120.269474,37.423344],[-120.268847,37.424285],[-120.268063,37.425697],[-120.267906,37.426952],[-120.266181,37.427265],[-120.265240,37.427736],[-120.264299,37.427109],[-120.260848,37.426952],[-120.259594,37.427265],[-120.257084,37.427579],[-120.255359,37.428206],[-120.252849,37.428363],[-120.252222,37.428520],[-120.251438,37.429147],[-120.251281,37.429775],[-120.251281,37.430402],[-120.250967,37.431657],[-120.250654,37.431657],[-120.247674,37.431500],[-120.246576,37.431186],[-120.244537,37.431030],[-120.243909,37.429932],[-120.243596,37.428520],[-120.243909,37.428050],[-120.244694,37.427422],[-120.244694,37.426952],[-120.244066,37.426481],[-120.243125,37.426324],[-120.242655,37.426167],[-120.242341,37.425540],[-120.241871,37.425540],[-120.240930,37.425697],[-120.240459,37.425383],[-120.239518,37.425383],[-120.239047,37.425540],[-120.237793,37.426167],[-120.236224,37.428050],[-120.235754,37.428520],[-120.235283,37.429147],[-120.233244,37.429147],[-120.232460,37.428991],[-120.231990,37.428363],[-120.230892,37.427893],[-120.229951,37.426952],[-120.228853,37.426638],[-120.227755,37.426481],[-120.227128,37.426167],[-120.226814,37.425697],[-120.226030,37.425540],[-120.225402,37.425226],[-120.224304,37.425540],[-120.223520,37.424756],[-120.222893,37.423972],[-120.222266,37.425070],[-120.222109,37.425540],[-120.222422,37.425854],[-120.222736,37.426167],[-120.222893,37.426481],[-120.222736,37.428206],[-120.223050,37.428677],[-120.222893,37.429461],[-120.223677,37.430245],[-120.224304,37.431186],[-120.223991,37.431657],[-120.223207,37.431657],[-120.221952,37.432441],[-120.221638,37.432441],[-120.219756,37.432127],[-120.219129,37.431814],[-120.218658,37.431186],[-120.218031,37.431030],[-120.217403,37.431030],[-120.215835,37.430088],[-120.213796,37.430559],[-120.213326,37.429775],[-120.212228,37.428520],[-120.210973,37.427736],[-120.209718,37.427422],[-120.208307,37.427422],[-120.207679,37.427422],[-120.206738,37.427893],[-120.204699,37.427109],[-120.204543,37.427893],[-120.202347,37.428520],[-120.201719,37.429147],[-120.199524,37.435892],[-120.197328,37.438558],[-120.196857,37.439499],[-120.195132,37.439813],[-120.194191,37.441067],[-120.194191,37.441695],[-120.194662,37.442322],[-120.194034,37.442165],[-120.193564,37.442165],[-120.193407,37.442322],[-120.192936,37.443106],[-120.192623,37.443263],[-120.191368,37.442165],[-120.189800,37.442479],[-120.188545,37.442479],[-120.187290,37.442008],[-120.186820,37.442165],[-120.186349,37.442479],[-120.185408,37.442322],[-120.184624,37.442793],[-120.184467,37.443577],[-120.183055,37.443577],[-120.182585,37.443734],[-120.181330,37.444675],[-120.180075,37.444831],[-120.180075,37.446714],[-120.180546,37.447655],[-120.180389,37.448125],[-120.180389,37.448752],[-120.179919,37.449537],[-120.179762,37.452203],[-120.178978,37.453301],[-120.179291,37.453771],[-120.179134,37.454085],[-120.178507,37.454556],[-120.177880,37.454399],[-120.177095,37.454869],[-120.175684,37.457065],[-120.175684,37.458947],[-120.175841,37.461143],[-120.174900,37.463339],[-120.174429,37.466005],[-120.174743,37.468044],[-120.175057,37.468985],[-120.175684,37.472906],[-120.175527,37.473847],[-120.175370,37.476513],[-120.175527,37.491256],[-120.175370,37.497373]]]}}
,{"id":95428,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-123.341037,39.977334],[-123.232817,39.977491],[-123.233131,39.977020],[-123.234072,39.976863],[-123.234386,39.976550],[-123.235327,39.976079],[-123.236738,39.975765],[-123.237366,39.975295],[-123.238620,39.974981],[-123.239091,39.974354],[-123.240659,39.974040],[-123.241757,39.974197],[-123.242541,39.973883],[-123.241444,39.973256],[-123.240816,39.972315],[-123.240973,39.971844],[-123.240503,39.971374],[-123.239875,39.970746],[-123.238934,39.970590],[-123.238307,39.969649],[-123.237366,39.969492],[-123.237209,39.969649],[-123.237052,39.970433],[-123.237209,39.970746],[-123.238150,39.971687],[-123.237993,39.971844],[-123.237523,39.972001],[-123.237052,39.971531],[-123.236425,39.971687],[-123.235797,39.971531],[-123.235484,39.971217],[-123.235484,39.970590],[-123.234543,39.969962],[-123.234229,39.969962],[-123.233915,39.970276],[-123.233288,39.970119],[-123.232817,39.970276],[-123.231876,39.969492],[-123.230778,39.969492],[-123.229994,39.969335],[-123.229524,39.968707],[-123.229681,39.967923],[-123.229524,39.967610],[-123.229367,39.967766],[-123.229053,39.968237],[-123.228583,39.968237],[-123.227798,39.968707],[-123.227642,39.968707],[-123.227485,39.968080],[-123.227014,39.967766],[-123.226544,39.967923],[-123.225446,39.967766],[-123.225446,39.967453],[-123.224818,39.967296],[-123.224662,39.966669],[-123.224191,39.966669],[-123.223093,39.966041],[-123.222936,39.965728],[-123.222780,39.965414],[-123.221682,39.965571],[-123.221525,39.965414],[-123.221525,39.964943],[-123.221211,39.964786],[-123.219956,39.964473],[-123.218702,39.964630],[-123.217761,39.964159],[-123.217133,39.964316],[-123.216349,39.963845],[-123.215879,39.963845],[-123.215408,39.963375],[-123.214467,39.963061],[-123.213996,39.962277],[-123.214310,39.961493],[-123.213996,39.961022],[-123.214310,39.960552],[-123.214310,39.960395],[-123.213369,39.960238],[-123.212742,39.959768],[-123.211644,39.959454],[-123.211801,39.958983],[-123.210860,39.959140],[-123.210546,39.958983],[-123.210075,39.958983],[-123.209762,39.958983],[-123.209605,39.959454],[-123.208821,39.959454],[-123.207880,39.959924],[-123.206939,39.959924],[-123.206154,39.960238],[-123.205527,39.959924],[-123.205213,39.959768],[-123.205057,39.959454],[-123.205213,39.958827],[-123.205684,39.958513],[-123.205684,39.958199],[-123.203174,39.957415],[-123.202077,39.957415],[-123.200822,39.957258],[-123.200508,39.956944],[-123.200508,39.956160],[-123.199724,39.955847],[-123.198940,39.956003],[-123.198626,39.955690],[-123.198626,39.955533],[-123.199410,39.954749],[-123.199253,39.954435],[-123.197528,39.954592],[-123.197215,39.954435],[-123.196901,39.953965],[-123.197058,39.953337],[-123.195960,39.952396],[-123.197058,39.951612],[-123.197215,39.950671],[-123.195646,39.949730],[-123.199567,39.949102],[-123.200351,39.948632],[-123.201136,39.948632],[-123.201449,39.948475],[-123.202704,39.948318],[-123.203018,39.948161],[-123.203174,39.946907],[-123.203802,39.946436],[-123.204429,39.946279],[-123.205213,39.946436],[-123.206311,39.947377],[-123.206939,39.947534],[-123.207252,39.948005],[-123.208193,39.948318],[-123.208507,39.948789],[-123.209134,39.948632],[-123.209919,39.949730],[-123.210232,39.949887],[-123.212114,39.950043],[-123.212428,39.949887],[-123.213055,39.949573],[-123.213526,39.949416],[-123.214781,39.949887],[-123.215722,39.950671],[-123.216035,39.950671],[-123.216035,39.950200],[-123.214781,39.948789],[-123.214624,39.946122],[-123.214624,39.945652],[-123.214310,39.945181],[-123.214310,39.943613],[-123.214467,39.942829],[-123.214310,39.942201],[-123.215251,39.941104],[-123.215408,39.940319],[-123.215251,39.940006],[-123.214467,39.939065],[-123.214467,39.938751],[-123.215408,39.937339],[-123.217447,39.936712],[-123.218388,39.935928],[-123.218702,39.935300],[-123.218545,39.935144],[-123.218231,39.935144],[-123.218231,39.935614],[-123.217604,39.935928],[-123.216976,39.936085],[-123.215408,39.935928],[-123.214938,39.935771],[-123.214624,39.935457],[-123.213369,39.935144],[-123.212899,39.934673],[-123.212271,39.934359],[-123.212114,39.932948],[-123.212271,39.932477],[-123.212114,39.932007],[-123.212585,39.931223],[-123.213683,39.929968],[-123.213683,39.929654],[-123.213369,39.929341],[-123.213683,39.929027],[-123.213683,39.928556],[-123.213996,39.928400],[-123.215094,39.929027],[-123.215408,39.929027],[-123.215565,39.928870],[-123.215408,39.928556],[-123.214624,39.928086],[-123.214467,39.927772],[-123.213683,39.926674],[-123.213526,39.925420],[-123.213526,39.924949],[-123.213996,39.924635],[-123.213996,39.924008],[-123.214938,39.923067],[-123.214781,39.922753],[-123.214153,39.922440],[-123.213840,39.922126],[-123.213996,39.921812],[-123.214938,39.921185],[-123.215251,39.920714],[-123.215565,39.920244],[-123.216192,39.920244],[-123.215879,39.919616],[-123.214310,39.919303],[-123.214467,39.918989],[-123.215251,39.918362],[-123.214624,39.917264],[-123.214624,39.916950],[-123.215408,39.915695],[-123.215722,39.915695],[-123.216349,39.915852],[-123.216663,39.915695],[-123.216506,39.915068],[-123.216820,39.914598],[-123.216663,39.914127],[-123.216820,39.913970],[-123.217917,39.913500],[-123.219172,39.913500],[-123.219329,39.913186],[-123.220584,39.913500],[-123.221054,39.912872],[-123.221839,39.912872],[-123.222309,39.912715],[-123.221682,39.912088],[-123.221839,39.910520],[-123.221054,39.908951],[-123.221525,39.908481],[-123.222623,39.908167],[-123.221682,39.908167],[-123.220741,39.908638],[-123.220427,39.908951],[-123.220584,39.909265],[-123.220427,39.909422],[-123.219643,39.909108],[-123.219329,39.908638],[-123.219329,39.908481],[-123.219800,39.908010],[-123.220584,39.907853],[-123.221211,39.907540],[-123.221839,39.907853],[-123.222466,39.907697],[-123.224191,39.907540],[-123.224662,39.907226],[-123.225603,39.906912],[-123.226073,39.906599],[-123.227014,39.906442],[-123.227642,39.905814],[-123.228269,39.905501],[-123.228739,39.905501],[-123.230151,39.906442],[-123.230935,39.906442],[-123.232033,39.906128],[-123.233131,39.905501],[-123.234072,39.905187],[-123.234699,39.905187],[-123.236268,39.905501],[-123.237836,39.906285],[-123.240032,39.906442],[-123.242541,39.907226],[-123.244110,39.907853],[-123.246933,39.907383],[-123.247247,39.907226],[-123.247247,39.906912],[-123.246776,39.905658],[-123.245521,39.904403],[-123.244894,39.903932],[-123.243639,39.902050],[-123.243639,39.901737],[-123.243953,39.900796],[-123.243796,39.900168],[-123.243953,39.899070],[-123.243953,39.898600],[-123.244424,39.897659],[-123.247560,39.893738],[-123.248345,39.892013],[-123.248188,39.891542],[-123.248345,39.889974],[-123.249129,39.888719],[-123.250227,39.888092],[-123.250540,39.887150],[-123.249599,39.886053],[-123.249756,39.885112],[-123.249442,39.884641],[-123.249442,39.884171],[-123.249129,39.883386],[-123.249129,39.883229],[-123.249599,39.882916],[-123.249129,39.881347],[-123.248345,39.881191],[-123.247560,39.881661],[-123.244894,39.881347],[-123.244737,39.881347],[-123.244737,39.879779],[-123.245208,39.879465],[-123.245365,39.878367],[-123.246306,39.877583],[-123.246462,39.877426],[-123.247090,39.876485],[-123.248031,39.875544],[-123.248501,39.875231],[-123.248658,39.874917],[-123.249599,39.874603],[-123.249286,39.874446],[-123.247874,39.874603],[-123.247090,39.873976],[-123.246149,39.873976],[-123.245678,39.873662],[-123.245208,39.873662],[-123.245051,39.873349],[-123.244424,39.873505],[-123.243639,39.873349],[-123.242698,39.872878],[-123.242541,39.872564],[-123.241914,39.872564],[-123.241444,39.872094],[-123.240346,39.872094],[-123.239875,39.871623],[-123.239248,39.871780],[-123.238934,39.871623],[-123.238620,39.871780],[-123.238307,39.871780],[-123.238150,39.871623],[-123.238150,39.871310],[-123.237209,39.871310],[-123.236268,39.870839],[-123.235327,39.870525],[-123.234699,39.870055],[-123.232974,39.869271],[-123.232660,39.868643],[-123.231876,39.868173],[-123.231406,39.867389],[-123.233758,39.867075],[-123.234386,39.866134],[-123.234856,39.866134],[-123.235170,39.866448],[-123.236268,39.866604],[-123.236738,39.866918],[-123.237366,39.866604],[-123.237209,39.866291],[-123.237209,39.866134],[-123.237836,39.865977],[-123.239091,39.866134],[-123.240189,39.866448],[-123.240973,39.866291],[-123.241757,39.866134],[-123.242385,39.865193],[-123.243012,39.864879],[-123.243796,39.864722],[-123.245208,39.865036],[-123.245835,39.864879],[-123.246776,39.864409],[-123.246776,39.864409],[-123.246149,39.863781],[-123.246776,39.863311],[-123.246462,39.862997],[-123.246619,39.862527],[-123.244580,39.860488],[-123.244580,39.860174],[-123.244894,39.859703],[-123.245521,39.859233],[-123.245521,39.858919],[-123.245208,39.858762],[-123.243796,39.858762],[-123.242698,39.859076],[-123.242385,39.859076],[-123.242228,39.858762],[-123.242071,39.857978],[-123.242228,39.857508],[-123.242385,39.857194],[-123.242855,39.857037],[-123.242541,39.857508],[-123.242698,39.857664],[-123.244424,39.857037],[-123.244580,39.856880],[-123.244580,39.856410],[-123.244110,39.855939],[-123.244110,39.854998],[-123.243796,39.854841],[-123.243953,39.854371],[-123.243953,39.854057],[-123.242855,39.853743],[-123.241914,39.853900],[-123.241444,39.853587],[-123.240816,39.853900],[-123.240189,39.853743],[-123.239561,39.853116],[-123.239091,39.853430],[-123.238777,39.853900],[-123.237679,39.853743],[-123.237366,39.852018],[-123.237052,39.852175],[-123.236895,39.852646],[-123.236268,39.853430],[-123.235484,39.853430],[-123.234229,39.853743],[-123.233288,39.853587],[-123.234229,39.852802],[-123.235954,39.851861],[-123.236111,39.851548],[-123.236111,39.850920],[-123.236268,39.850607],[-123.236582,39.850450],[-123.237209,39.850920],[-123.237523,39.850920],[-123.237366,39.850136],[-123.237523,39.849195],[-123.237366,39.848568],[-123.237679,39.848254],[-123.238307,39.848254],[-123.237993,39.846999],[-123.237052,39.846686],[-123.236738,39.846372],[-123.228112,39.846372],[-123.228112,39.842294],[-123.226701,39.841196],[-123.225446,39.840412],[-123.225289,39.839942],[-123.225289,39.839314],[-123.225132,39.838844],[-123.224975,39.839157],[-123.223407,39.840255],[-123.222780,39.839942],[-123.222466,39.839471],[-123.222309,39.839000],[-123.221682,39.838844],[-123.221839,39.838373],[-123.221682,39.837746],[-123.221682,39.836962],[-123.221525,39.836648],[-123.220741,39.836334],[-123.220113,39.835236],[-123.218545,39.834609],[-123.219329,39.835393],[-123.218074,39.835864],[-123.217917,39.836491],[-123.217761,39.836334],[-123.217447,39.835707],[-123.216820,39.835550],[-123.216506,39.835236],[-123.216035,39.835079],[-123.214781,39.835079],[-123.214467,39.835236],[-123.214153,39.835550],[-123.213683,39.835236],[-123.213212,39.835236],[-123.211958,39.835393],[-123.211487,39.835393],[-123.210232,39.834609],[-123.209919,39.833825],[-123.209919,39.833511],[-123.209134,39.833197],[-123.208978,39.831002],[-123.196587,39.830845],[-123.196587,39.830531],[-123.196117,39.830688],[-123.196117,39.830845],[-123.195489,39.831629],[-123.194548,39.831786],[-123.193921,39.832256],[-123.193921,39.832413],[-123.193921,39.833041],[-123.193764,39.833982],[-123.192980,39.834766],[-123.192196,39.835079],[-123.191568,39.835707],[-123.191725,39.836021],[-123.192353,39.835864],[-123.192666,39.836021],[-123.192980,39.836334],[-123.193450,39.836805],[-123.193294,39.837118],[-123.192666,39.837746],[-123.192353,39.838216],[-123.191725,39.838687],[-123.191725,39.839000],[-123.192039,39.839628],[-123.192039,39.840412],[-123.190941,39.842137],[-123.189843,39.842137],[-123.188902,39.841824],[-123.187647,39.840883],[-123.187177,39.840255],[-123.187020,39.839628],[-123.186549,39.839157],[-123.186236,39.839157],[-123.185452,39.839785],[-123.184354,39.839942],[-123.183569,39.839785],[-123.182785,39.839157],[-123.183413,39.840255],[-123.184510,39.841353],[-123.183569,39.841980],[-123.183256,39.842765],[-123.183413,39.843706],[-123.183099,39.844960],[-123.183726,39.845745],[-123.183726,39.846058],[-123.182942,39.846372],[-123.181844,39.847627],[-123.181687,39.847627],[-123.181374,39.847156],[-123.181060,39.846999],[-123.181060,39.845901],[-123.180433,39.845431],[-123.179805,39.845274],[-123.179021,39.845274],[-123.178551,39.844960],[-123.177610,39.845274],[-123.177139,39.845274],[-123.176982,39.844804],[-123.176825,39.844647],[-123.176041,39.844960],[-123.174630,39.845274],[-123.173845,39.844804],[-123.173532,39.844960],[-123.173532,39.845117],[-123.173689,39.845588],[-123.173689,39.845901],[-123.173845,39.846686],[-123.173845,39.847470],[-123.173375,39.847940],[-123.172904,39.848254],[-123.172434,39.848725],[-123.172277,39.849509],[-123.171493,39.850293],[-123.171022,39.850293],[-123.170081,39.850136],[-123.168513,39.850293],[-123.168356,39.850136],[-123.168513,39.849666],[-123.168199,39.849352],[-123.166474,39.849038],[-123.165219,39.847784],[-123.164905,39.847784],[-123.164435,39.848097],[-123.163337,39.848254],[-123.162867,39.848097],[-123.162710,39.847627],[-123.162396,39.847627],[-123.162082,39.847627],[-123.160984,39.848725],[-123.160514,39.848568],[-123.160671,39.848254],[-123.160514,39.848097],[-123.159730,39.847784],[-123.159416,39.847940],[-123.159102,39.848568],[-123.158475,39.848254],[-123.158004,39.848411],[-123.157691,39.848881],[-123.156750,39.848881],[-123.156436,39.848725],[-123.156122,39.848881],[-123.156122,39.849038],[-123.156436,39.849195],[-123.157377,39.849352],[-123.158161,39.849979],[-123.159102,39.850450],[-123.159730,39.851391],[-123.160043,39.852332],[-123.153456,39.852332],[-123.153456,39.849195],[-123.151417,39.849195],[-123.150790,39.849509],[-123.149535,39.849822],[-123.149378,39.850136],[-123.149378,39.850920],[-123.150006,39.851077],[-123.151103,39.851077],[-123.151103,39.851548],[-123.151574,39.852018],[-123.151574,39.852489],[-123.152358,39.852646],[-123.152829,39.853116],[-123.153456,39.853430],[-123.153456,39.853743],[-123.153142,39.854371],[-123.153770,39.855312],[-123.154083,39.856253],[-123.154711,39.857194],[-123.155181,39.857194],[-123.155495,39.857821],[-123.157063,39.858292],[-123.156907,39.858606],[-123.156279,39.858919],[-123.156279,39.859233],[-123.155809,39.859547],[-123.155495,39.860174],[-123.155652,39.860644],[-123.156750,39.861115],[-123.157377,39.860958],[-123.157691,39.861115],[-123.157377,39.861585],[-123.156750,39.862056],[-123.156279,39.862997],[-123.156122,39.862997],[-123.156122,39.862683],[-123.156750,39.861899],[-123.156907,39.861429],[-123.155338,39.861429],[-123.154711,39.861115],[-123.154240,39.860801],[-123.154083,39.860017],[-123.154240,39.859547],[-123.154554,39.859076],[-123.154554,39.858919],[-123.154397,39.858762],[-123.153299,39.859076],[-123.153299,39.856096],[-123.150319,39.855939],[-123.150633,39.855312],[-123.151260,39.854841],[-123.150947,39.854685],[-123.150162,39.854998],[-123.149221,39.854998],[-123.147810,39.855626],[-123.147810,39.852175],[-123.143889,39.852175],[-123.143732,39.852175],[-123.143732,39.851861],[-123.142948,39.852018],[-123.143418,39.852646],[-123.143261,39.853587],[-123.142791,39.854214],[-123.142164,39.854528],[-123.142007,39.855312],[-123.141379,39.856096],[-123.140909,39.856567],[-123.140281,39.856723],[-123.139184,39.856567],[-123.137145,39.857821],[-123.134792,39.858135],[-123.134165,39.858606],[-123.134322,39.859390],[-123.133851,39.859703],[-123.133067,39.859860],[-123.132753,39.860331],[-123.132596,39.860958],[-123.131342,39.860958],[-123.130087,39.862056],[-123.129460,39.862213],[-123.129146,39.862840],[-123.128362,39.863311],[-123.127734,39.864722],[-123.126480,39.865507],[-123.125695,39.866918],[-123.124441,39.867545],[-123.124284,39.868016],[-123.125068,39.868800],[-123.125068,39.869114],[-123.124911,39.869584],[-123.124441,39.870212],[-123.124911,39.871780],[-123.124754,39.872251],[-123.124284,39.872721],[-123.124284,39.873035],[-123.125538,39.874446],[-123.125538,39.874760],[-123.123500,39.873349],[-123.123343,39.872721],[-123.123029,39.872251],[-123.122559,39.872407],[-123.121931,39.872407],[-123.121774,39.873035],[-123.122245,39.873819],[-123.122088,39.874603],[-123.122402,39.874760],[-123.122402,39.875074],[-123.121931,39.875544],[-123.121304,39.876642],[-123.119735,39.877897],[-123.117853,39.878838],[-123.117540,39.879465],[-123.116599,39.879465],[-123.116128,39.879779],[-123.115814,39.881504],[-123.116599,39.881975],[-123.116755,39.882288],[-123.115187,39.885268],[-123.116285,39.886680],[-123.116599,39.887307],[-123.116442,39.887621],[-123.115187,39.887935],[-123.114873,39.888092],[-123.114403,39.887778],[-123.113775,39.887935],[-123.113148,39.887935],[-123.112207,39.888092],[-123.111423,39.887621],[-123.112050,39.886994],[-123.112207,39.886523],[-123.112050,39.886366],[-123.110639,39.886209],[-123.109070,39.886209],[-123.108286,39.885896],[-123.108600,39.885425],[-123.110011,39.884798],[-123.110011,39.883543],[-123.110639,39.883229],[-123.110795,39.882759],[-123.110639,39.882288],[-123.109698,39.881661],[-123.109227,39.880877],[-123.108913,39.880877],[-123.108913,39.881034],[-123.109227,39.881661],[-123.109227,39.881818],[-123.109070,39.882132],[-123.108757,39.882288],[-123.107502,39.881975],[-123.106247,39.881034],[-123.105620,39.880877],[-123.104992,39.881347],[-123.104522,39.881975],[-123.104522,39.882445],[-123.104836,39.882759],[-123.104679,39.882916],[-123.103267,39.883229],[-123.102483,39.883543],[-123.101385,39.883543],[-123.099189,39.882288],[-123.098405,39.882445],[-123.098248,39.882132],[-123.098248,39.881504],[-123.098091,39.881347],[-123.097464,39.881191],[-123.097150,39.881504],[-123.096052,39.881504],[-123.095268,39.881818],[-123.094955,39.882288],[-123.093543,39.882916],[-123.091975,39.882916],[-123.091190,39.882602],[-123.090249,39.883386],[-123.088995,39.883857],[-123.088367,39.884327],[-123.087583,39.884171],[-123.088210,39.882916],[-123.087426,39.881034],[-123.086328,39.880720],[-123.085387,39.879779],[-123.084446,39.879152],[-123.084289,39.878211],[-123.084133,39.877897],[-123.083348,39.877426],[-123.082251,39.877270],[-123.081937,39.877113],[-123.080525,39.875544],[-123.080525,39.874917],[-123.080996,39.874446],[-123.081623,39.874290],[-123.082251,39.874446],[-123.084603,39.873819],[-123.085858,39.873662],[-123.086485,39.873819],[-123.088054,39.873035],[-123.088210,39.872407],[-123.087740,39.871623],[-123.087740,39.870996],[-123.087897,39.870839],[-123.088995,39.870525],[-123.089622,39.869114],[-123.089152,39.867702],[-123.089152,39.866761],[-123.088524,39.865977],[-123.088210,39.865193],[-123.087583,39.864409],[-123.087740,39.863468],[-123.087269,39.862840],[-123.086328,39.862370],[-123.084760,39.862840],[-123.083348,39.862840],[-123.083035,39.862683],[-123.082878,39.862370],[-123.083035,39.861272],[-123.082878,39.860958],[-123.081937,39.860488],[-123.081466,39.859076],[-123.081153,39.858762],[-123.081153,39.858292],[-123.081466,39.857978],[-123.082878,39.857821],[-123.083505,39.856880],[-123.084289,39.856253],[-123.084446,39.855312],[-123.084133,39.854528],[-123.084133,39.853273],[-123.084446,39.852959],[-123.085701,39.852175],[-123.086799,39.852018],[-123.086956,39.851705],[-123.086799,39.851391],[-123.086328,39.851234],[-123.085074,39.850920],[-123.084133,39.849979],[-123.083976,39.849666],[-123.083976,39.848411],[-123.083819,39.847784],[-123.083819,39.846999],[-123.083348,39.846058],[-123.082721,39.845745],[-123.082721,39.845431],[-123.083192,39.845274],[-123.083976,39.845274],[-123.084917,39.845117],[-123.086172,39.845117],[-123.087269,39.845431],[-123.088367,39.845274],[-123.089936,39.845745],[-123.091661,39.845431],[-123.092288,39.845745],[-123.092759,39.846529],[-123.093857,39.847470],[-123.094641,39.847784],[-123.094955,39.847470],[-123.094170,39.846999],[-123.094170,39.846215],[-123.094014,39.845901],[-123.093386,39.844804],[-123.092602,39.843706],[-123.091818,39.843235],[-123.090877,39.843078],[-123.089152,39.841667],[-123.088367,39.841196],[-123.087426,39.840883],[-123.086328,39.840098],[-123.083976,39.839471],[-123.083662,39.839471],[-123.082721,39.840098],[-123.082407,39.840255],[-123.080682,39.840098],[-123.079427,39.840726],[-123.078957,39.840726],[-123.078800,39.840412],[-123.079741,39.839785],[-123.080055,39.839314],[-123.080525,39.838844],[-123.080839,39.837903],[-123.081466,39.837589],[-123.082407,39.837118],[-123.084133,39.836805],[-123.084603,39.836334],[-123.085858,39.835393],[-123.087113,39.835236],[-123.087426,39.834766],[-123.088054,39.834609],[-123.088681,39.834766],[-123.088838,39.834138],[-123.088838,39.833825],[-123.088054,39.833668],[-123.086642,39.832884],[-123.086642,39.832570],[-123.088210,39.832570],[-123.089152,39.831943],[-123.090877,39.832256],[-123.090877,39.831786],[-123.091818,39.831472],[-123.092131,39.830845],[-123.092602,39.830531],[-123.092759,39.830217],[-123.092445,39.829590],[-123.092916,39.828492],[-123.091347,39.827708],[-123.090406,39.828022],[-123.088367,39.827865],[-123.088210,39.828022],[-123.087740,39.828022],[-123.087269,39.827865],[-123.085858,39.827865],[-123.085858,39.827708],[-123.086328,39.827394],[-123.086328,39.827081],[-123.085701,39.827081],[-123.084917,39.826767],[-123.084603,39.827081],[-123.084289,39.827551],[-123.083819,39.827708],[-123.082564,39.827394],[-123.081780,39.826924],[-123.081466,39.827081],[-123.080996,39.827551],[-123.080212,39.828022],[-123.078330,39.828335],[-123.077702,39.828806],[-123.076761,39.829120],[-123.075350,39.829120],[-123.071115,39.828806],[-123.070331,39.829276],[-123.069860,39.830531],[-123.068605,39.831786],[-123.068605,39.832413],[-123.069076,39.833197],[-123.068919,39.833668],[-123.068292,39.833982],[-123.066410,39.834609],[-123.065939,39.835079],[-123.065782,39.836648],[-123.065939,39.837746],[-123.065939,39.838216],[-123.064998,39.838844],[-123.064684,39.839314],[-123.062959,39.839942],[-123.062645,39.840255],[-123.062802,39.842294],[-123.062959,39.843078],[-123.062332,39.843549],[-123.062489,39.843863],[-123.062332,39.844176],[-123.062489,39.844647],[-123.063743,39.845117],[-123.063900,39.845588],[-123.063743,39.846372],[-123.062645,39.846215],[-123.062332,39.846215],[-123.062018,39.846215],[-123.060920,39.846372],[-123.060763,39.846842],[-123.060920,39.847940],[-123.060450,39.848568],[-123.059195,39.849666],[-123.059038,39.849979],[-123.059195,39.850607],[-123.058724,39.851391],[-123.058724,39.852018],[-123.059509,39.852646],[-123.060763,39.853273],[-123.061077,39.853743],[-123.061077,39.854685],[-123.061234,39.855155],[-123.061704,39.855626],[-123.062018,39.856723],[-123.063743,39.857508],[-123.063430,39.858135],[-123.062489,39.858762],[-123.060136,39.859233],[-123.059195,39.858606],[-123.058254,39.858292],[-123.057627,39.857351],[-123.056215,39.856723],[-123.054333,39.856723],[-123.052451,39.856880],[-123.051510,39.856567],[-123.050412,39.856567],[-123.049000,39.856253],[-123.046334,39.857351],[-123.044766,39.857351],[-123.043825,39.857664],[-123.043668,39.858135],[-123.042884,39.858449],[-123.040688,39.857978],[-123.039119,39.858292],[-123.038649,39.858135],[-123.037551,39.857351],[-123.035983,39.857508],[-123.034571,39.857664],[-123.033944,39.857508],[-123.033473,39.856880],[-123.031748,39.856880],[-123.030650,39.856723],[-123.029082,39.856253],[-123.027513,39.855469],[-123.024847,39.855626],[-123.024533,39.855626],[-123.024376,39.856096],[-123.025004,39.857037],[-123.025161,39.857508],[-123.024376,39.858449],[-123.024376,39.858762],[-123.026259,39.860331],[-123.030650,39.862997],[-123.030650,39.863311],[-123.030336,39.863624],[-123.029082,39.864095],[-123.028454,39.864095],[-123.026102,39.862527],[-123.024847,39.862370],[-123.023749,39.861742],[-123.022651,39.861742],[-123.021867,39.860801],[-123.021240,39.860644],[-123.020455,39.860488],[-123.019514,39.860644],[-123.018416,39.860488],[-123.017162,39.861429],[-123.016534,39.861429],[-123.015280,39.860174],[-123.014966,39.858919],[-123.014025,39.858135],[-123.014025,39.857508],[-123.014025,39.857194],[-123.012770,39.856567],[-123.012457,39.855626],[-123.013084,39.854685],[-123.011986,39.853587],[-123.011829,39.852959],[-123.010104,39.852018],[-123.008536,39.851548],[-123.007751,39.851391],[-123.005242,39.851705],[-123.005712,39.852175],[-123.006967,39.852646],[-123.007438,39.852959],[-123.007751,39.853430],[-123.007751,39.853743],[-123.006653,39.854214],[-123.006340,39.854685],[-123.005869,39.855312],[-123.003987,39.855782],[-123.002419,39.856723],[-123.002262,39.857194],[-123.002576,39.858135],[-123.002419,39.858449],[-123.000537,39.858762],[-123.000066,39.858449],[-122.999596,39.857821],[-122.999125,39.857664],[-122.998341,39.857821],[-122.997714,39.857821],[-122.997400,39.857978],[-122.997400,39.858449],[-122.997086,39.859233],[-122.996616,39.859390],[-122.995988,39.859233],[-122.995204,39.858606],[-122.993165,39.857978],[-122.991440,39.858135],[-122.990656,39.858606],[-122.989872,39.858762],[-122.989872,39.859390],[-122.989558,39.859860],[-122.990656,39.860331],[-122.991283,39.860174],[-122.991597,39.860331],[-122.993165,39.861272],[-122.993793,39.862213],[-122.994263,39.863468],[-122.995361,39.864565],[-122.995204,39.866134],[-122.995047,39.867075],[-122.995518,39.868486],[-122.994734,39.867859],[-122.993793,39.867859],[-122.993322,39.867545],[-122.990499,39.866291],[-122.990028,39.865663],[-122.988930,39.865350],[-122.986735,39.865036],[-122.986735,39.865193],[-122.987048,39.865350],[-122.987833,39.865663],[-122.988303,39.866448],[-122.989401,39.867232],[-122.989401,39.867389],[-122.988774,39.868173],[-122.989087,39.869114],[-122.988774,39.869741],[-122.988774,39.870525],[-122.988146,39.870996],[-122.987833,39.871466],[-122.988146,39.871937],[-122.988930,39.872251],[-122.988930,39.872564],[-122.988774,39.873035],[-122.988774,39.873976],[-122.988303,39.874290],[-122.987205,39.874760],[-122.985794,39.874917],[-122.987205,39.875858],[-122.987989,39.876015],[-122.990499,39.875701],[-122.990969,39.876799],[-122.991597,39.877113],[-122.992381,39.877270],[-122.993322,39.877897],[-122.993636,39.877740],[-122.994263,39.877426],[-122.994734,39.877426],[-122.995204,39.877113],[-122.998655,39.877113],[-122.999125,39.877270],[-122.999596,39.877740],[-123.000380,39.878054],[-123.000380,39.878367],[-122.999909,39.878681],[-122.998184,39.879308],[-122.998027,39.879622],[-122.998184,39.880563],[-122.998027,39.880720],[-122.997557,39.880877],[-122.997557,39.881191],[-122.997714,39.881975],[-122.998341,39.882445],[-122.998498,39.883229],[-122.998184,39.884171],[-122.998184,39.886837],[-122.998341,39.887150],[-122.998655,39.887464],[-122.999596,39.889033],[-122.999125,39.889503],[-122.998811,39.890287],[-122.998027,39.891071],[-122.997243,39.891385],[-122.995988,39.891385],[-122.995518,39.891071],[-122.995361,39.890758],[-122.993949,39.889660],[-122.994106,39.889189],[-122.993949,39.889033],[-122.992067,39.888092],[-122.991440,39.887464],[-122.989715,39.886680],[-122.989401,39.886366],[-122.988930,39.886523],[-122.988617,39.886523],[-122.988303,39.886680],[-122.987989,39.886209],[-122.987519,39.886209],[-122.987519,39.886680],[-122.987205,39.887150],[-122.987676,39.887621],[-122.987676,39.888248],[-122.988303,39.888719],[-122.988774,39.889817],[-122.988774,39.890287],[-122.988930,39.890444],[-122.988460,39.890915],[-122.987989,39.891071],[-122.988146,39.891385],[-122.987676,39.892797],[-122.987048,39.893267],[-122.985166,39.894051],[-122.985009,39.894208],[-122.985009,39.894522],[-122.985166,39.894993],[-122.987205,39.895463],[-122.987833,39.895777],[-122.988146,39.896875],[-122.989087,39.897659],[-122.989558,39.899541],[-122.990342,39.900011],[-122.990499,39.900325],[-122.989558,39.900796],[-122.989244,39.900952],[-122.988774,39.900796],[-122.987989,39.900482],[-122.987519,39.900482],[-122.987048,39.900482],[-122.985951,39.899855],[-122.981559,39.899384],[-122.978265,39.900011],[-122.977481,39.900796],[-122.976383,39.901109],[-122.976697,39.901737],[-122.977795,39.902207],[-122.978736,39.902050],[-122.979206,39.901580],[-122.980147,39.901737],[-122.980304,39.902991],[-122.979677,39.905344],[-122.979206,39.905658],[-122.978265,39.905658],[-122.978108,39.905971],[-122.979834,39.906912],[-122.980147,39.907697],[-122.980775,39.907853],[-122.981716,39.908010],[-122.982814,39.908638],[-122.983284,39.909422],[-122.984696,39.910363],[-122.983598,39.911461],[-122.981559,39.911461],[-122.980775,39.912088],[-122.978893,39.912559],[-122.978265,39.912872],[-122.977795,39.913186],[-122.977638,39.913813],[-122.976697,39.913970],[-122.976070,39.914284],[-122.975599,39.914911],[-122.976226,39.915852],[-122.976070,39.916480],[-122.976854,39.919146],[-122.976854,39.919930],[-122.976383,39.920714],[-122.974815,39.921185],[-122.973560,39.920714],[-122.972776,39.920714],[-122.972305,39.920557],[-122.970266,39.921028],[-122.969169,39.920087],[-122.968541,39.919930],[-122.968698,39.921028],[-122.968855,39.921185],[-122.972776,39.921969],[-122.977795,39.923537],[-122.977795,39.924322],[-122.976226,39.924949],[-122.975599,39.925576],[-122.976383,39.926361],[-122.976226,39.926674],[-122.975756,39.926988],[-122.976226,39.927615],[-122.975599,39.929184],[-122.975599,39.929497],[-122.976070,39.929968],[-122.976070,39.930438],[-122.975129,39.930909],[-122.975285,39.931379],[-122.975129,39.931850],[-122.974031,39.932164],[-122.974031,39.932321],[-122.973246,39.932791],[-122.972149,39.933889],[-122.970894,39.933732],[-122.969953,39.934359],[-122.969169,39.934046],[-122.968855,39.934046],[-122.968698,39.934203],[-122.968855,39.934830],[-122.968541,39.935300],[-122.967443,39.936555],[-122.966973,39.936712],[-122.966502,39.936555],[-122.965875,39.935614],[-122.965091,39.934987],[-122.963993,39.934673],[-122.962738,39.934673],[-122.962111,39.934203],[-122.961483,39.933575],[-122.961483,39.932634],[-122.961327,39.932634],[-122.960856,39.932791],[-122.960386,39.933889],[-122.959758,39.934046],[-122.959288,39.934046],[-122.958347,39.933732],[-122.957092,39.933105],[-122.955680,39.933105],[-122.954269,39.933889],[-122.953798,39.936242],[-122.953328,39.936398],[-122.952700,39.936085],[-122.951602,39.936869],[-122.950505,39.936398],[-122.949877,39.937810],[-122.948936,39.937810],[-122.947681,39.938437],[-122.947054,39.938124],[-122.946270,39.937967],[-122.945956,39.937496],[-122.945643,39.937339],[-122.944701,39.937967],[-122.943760,39.937653],[-122.943290,39.937810],[-122.942349,39.937967],[-122.940937,39.938594],[-122.939996,39.938437],[-122.939526,39.937967],[-122.939212,39.937496],[-122.939369,39.936555],[-122.939055,39.936398],[-122.938428,39.937183],[-122.938114,39.937810],[-122.937801,39.937496],[-122.936389,39.937496],[-122.934977,39.937183],[-122.933409,39.936085],[-122.932938,39.934987],[-122.932311,39.934830],[-122.931841,39.934359],[-122.930743,39.931379],[-122.930900,39.930909],[-122.930743,39.930909],[-122.930115,39.930909],[-122.929645,39.931536],[-122.929958,39.932948],[-122.929331,39.934203],[-122.928861,39.934359],[-122.927763,39.934359],[-122.927292,39.934987],[-122.926508,39.935144],[-122.926037,39.934987],[-122.925096,39.933732],[-122.924626,39.933418],[-122.923528,39.934203],[-122.922587,39.934203],[-122.921175,39.934359],[-122.920705,39.934203],[-122.920078,39.933732],[-122.918823,39.933575],[-122.918352,39.932948],[-122.915686,39.931693],[-122.914902,39.932007],[-122.913333,39.932007],[-122.912706,39.932321],[-122.912549,39.932007],[-122.911922,39.932007],[-122.912549,39.931536],[-122.914431,39.931223],[-122.915372,39.930752],[-122.916157,39.930438],[-122.917254,39.929811],[-122.918666,39.930282],[-122.920078,39.929654],[-122.920548,39.928870],[-122.920705,39.927302],[-122.920548,39.923851],[-122.921489,39.922283],[-122.921489,39.922126],[-122.920548,39.921028],[-122.920705,39.920087],[-122.920548,39.919616],[-122.920234,39.919146],[-122.920078,39.918675],[-122.920234,39.917264],[-122.920548,39.916480],[-122.921019,39.916323],[-122.922116,39.915382],[-122.922901,39.915068],[-122.924783,39.914754],[-122.926351,39.914284],[-122.927449,39.913029],[-122.928233,39.912559],[-122.930272,39.912245],[-122.931213,39.912245],[-122.933409,39.911461],[-122.934664,39.911618],[-122.936389,39.911461],[-122.936859,39.910990],[-122.937957,39.910520],[-122.940624,39.909892],[-122.941878,39.909422],[-122.942819,39.909422],[-122.943604,39.909108],[-122.945015,39.908951],[-122.945643,39.909265],[-122.946740,39.908794],[-122.949407,39.908167],[-122.950034,39.907697],[-122.950975,39.906128],[-122.949877,39.904246],[-122.948936,39.903305],[-122.948466,39.902364],[-122.948152,39.900482],[-122.948622,39.899855],[-122.948779,39.898286],[-122.948779,39.897031],[-122.948466,39.896561],[-122.948152,39.894836],[-122.947681,39.894365],[-122.947838,39.892797],[-122.947368,39.892483],[-122.948309,39.892013],[-122.948466,39.891385],[-122.948779,39.890601],[-122.949564,39.889660],[-122.949407,39.888719],[-122.949877,39.888248],[-122.949720,39.886366],[-122.950191,39.885112],[-122.949877,39.884171],[-122.950348,39.883857],[-122.950661,39.883073],[-122.950034,39.882288],[-122.949877,39.881661],[-122.949720,39.879936],[-122.949877,39.878838],[-122.950661,39.877270],[-122.951759,39.876642],[-122.951916,39.876015],[-122.952387,39.875387],[-122.952230,39.874446],[-122.953328,39.872878],[-122.953171,39.872094],[-122.952857,39.871623],[-122.951289,39.870525],[-122.950661,39.869271],[-122.950505,39.868486],[-122.950818,39.868016],[-122.951289,39.866134],[-122.951916,39.865663],[-122.952073,39.865350],[-122.952387,39.865036],[-122.952544,39.864095],[-122.952230,39.863624],[-122.952544,39.863311],[-122.952700,39.862683],[-122.954896,39.860488],[-122.955837,39.858606],[-122.955523,39.857351],[-122.955523,39.856096],[-122.955367,39.855469],[-122.953955,39.854685],[-122.955994,39.853273],[-122.955994,39.852959],[-122.956621,39.852646],[-122.957406,39.851861],[-122.957876,39.850293],[-122.957719,39.849822],[-122.957876,39.849195],[-122.957719,39.848725],[-122.958033,39.848568],[-122.958190,39.848097],[-122.958974,39.846215],[-122.960072,39.845117],[-122.959915,39.844960],[-122.959288,39.843863],[-122.957406,39.842294],[-122.957406,39.841667],[-122.957406,39.841039],[-122.956778,39.840412],[-122.956465,39.839942],[-122.956465,39.839157],[-122.955210,39.838530],[-122.953485,39.838216],[-122.951446,39.837432],[-122.950348,39.836491],[-122.948466,39.835236],[-122.946740,39.833511],[-122.946427,39.832884],[-122.947054,39.831629],[-122.947211,39.830688],[-122.946740,39.829433],[-122.947525,39.827708],[-122.947525,39.826767],[-122.946897,39.825512],[-122.946897,39.824571],[-122.946740,39.823630],[-122.946584,39.822375],[-122.946740,39.822062],[-122.946270,39.820807],[-122.945799,39.818925],[-122.946270,39.816102],[-122.945956,39.815004],[-122.945172,39.814533],[-122.944858,39.813749],[-122.944231,39.811240],[-122.944074,39.810299],[-122.944231,39.809828],[-122.943917,39.809358],[-122.944231,39.808260],[-122.944231,39.806535],[-122.943760,39.805280],[-122.944074,39.803555],[-122.943760,39.802770],[-122.943604,39.801672],[-122.943133,39.801202],[-122.941251,39.800104],[-122.940780,39.799947],[-122.940780,39.799634],[-122.940624,39.799320],[-122.938271,39.798222],[-122.937644,39.798222],[-122.937801,39.795242],[-122.938898,39.795399],[-122.940467,39.796340],[-122.943133,39.796340],[-122.944545,39.797595],[-122.945329,39.797908],[-122.946584,39.797751],[-122.947054,39.797908],[-122.948622,39.797124],[-122.948779,39.796810],[-122.949093,39.796654],[-122.950818,39.797438],[-122.950818,39.798065],[-122.951132,39.798536],[-122.951289,39.799006],[-122.951132,39.799477],[-122.950818,39.799790],[-122.950975,39.799790],[-122.951759,39.799477],[-122.952387,39.798536],[-122.953328,39.798065],[-122.954269,39.797124],[-122.955053,39.797124],[-122.955053,39.796654],[-122.955837,39.796340],[-122.956935,39.796183],[-122.957719,39.795869],[-122.958660,39.795713],[-122.962111,39.795556],[-122.963522,39.795869],[-122.964934,39.795399],[-122.965875,39.795556],[-122.967287,39.795085],[-122.968541,39.795085],[-122.968855,39.794771],[-122.969012,39.794144],[-122.969325,39.793987],[-122.970580,39.793674],[-122.973090,39.792733],[-122.974031,39.793046],[-122.974658,39.792889],[-122.975129,39.793046],[-122.975442,39.792262],[-122.976854,39.791792],[-122.978422,39.790537],[-122.979520,39.790223],[-122.981402,39.790066],[-122.983755,39.789282],[-122.986264,39.789125],[-122.987676,39.789125],[-122.992851,39.790223],[-122.995831,39.789753],[-122.996616,39.789439],[-122.996773,39.789753],[-122.996145,39.790066],[-122.995831,39.790850],[-122.995831,39.791792],[-122.996302,39.792105],[-122.996459,39.791948],[-122.997086,39.790850],[-122.997714,39.790380],[-122.998968,39.790066],[-123.000066,39.790223],[-123.002889,39.788968],[-123.003360,39.788812],[-123.003673,39.789125],[-123.003046,39.789596],[-123.003046,39.789753],[-123.002732,39.790066],[-123.002889,39.790066],[-123.004458,39.790066],[-123.006026,39.790223],[-123.007281,39.790223],[-123.009947,39.790066],[-123.010418,39.789753],[-123.010888,39.790066],[-123.011829,39.791164],[-123.014966,39.791635],[-123.017005,39.791635],[-123.020299,39.793046],[-123.025161,39.794301],[-123.025945,39.794615],[-123.025945,39.794928],[-123.025788,39.794928],[-123.024533,39.794771],[-123.023435,39.794771],[-123.022337,39.795085],[-123.022024,39.795399],[-123.022337,39.795713],[-123.023906,39.796026],[-123.025474,39.796654],[-123.025945,39.796654],[-123.025945,39.796967],[-123.025631,39.797124],[-123.023906,39.797124],[-123.023592,39.797281],[-123.023749,39.797595],[-123.025004,39.797595],[-123.026572,39.797908],[-123.027984,39.797751],[-123.028297,39.797908],[-123.027827,39.798065],[-123.027356,39.798692],[-123.026415,39.798692],[-123.025788,39.798849],[-123.027513,39.799320],[-123.028141,39.799006],[-123.028768,39.798849],[-123.029238,39.798379],[-123.029866,39.798379],[-123.030807,39.798849],[-123.032062,39.798536],[-123.033003,39.799163],[-123.034257,39.799320],[-123.034885,39.798692],[-123.035669,39.798379],[-123.036296,39.799006],[-123.037080,39.799790],[-123.037551,39.799790],[-123.038022,39.800104],[-123.039276,39.800418],[-123.039747,39.800731],[-123.040845,39.802143],[-123.042256,39.802613],[-123.044923,39.802613],[-123.045864,39.803711],[-123.046648,39.804025],[-123.047589,39.803868],[-123.048373,39.804182],[-123.050255,39.805437],[-123.052294,39.805593],[-123.052765,39.805750],[-123.053549,39.806378],[-123.054333,39.806535],[-123.056058,39.805907],[-123.057156,39.805750],[-123.058097,39.805280],[-123.059509,39.805437],[-123.061234,39.804809],[-123.062489,39.805750],[-123.063273,39.805907],[-123.063900,39.805907],[-123.064684,39.806378],[-123.065625,39.807632],[-123.067508,39.807319],[-123.067821,39.807476],[-123.067978,39.807946],[-123.067978,39.808730],[-123.068762,39.809671],[-123.068919,39.810142],[-123.070644,39.810926],[-123.070958,39.812338],[-123.070644,39.813906],[-123.070958,39.814377],[-123.072213,39.815318],[-123.072683,39.816102],[-123.072840,39.816572],[-123.074095,39.817200],[-123.075820,39.817513],[-123.077075,39.817200],[-123.078173,39.817670],[-123.079271,39.818454],[-123.079741,39.819709],[-123.080212,39.819866],[-123.080839,39.820180],[-123.081309,39.820180],[-123.081623,39.820336],[-123.083662,39.822062],[-123.084446,39.822532],[-123.086015,39.823160],[-123.086799,39.823160],[-123.086799,39.823003],[-123.086015,39.823003],[-123.084446,39.821905],[-123.083819,39.821121],[-123.083662,39.820023],[-123.082721,39.819552],[-123.081937,39.818611],[-123.081780,39.818141],[-123.080996,39.817670],[-123.080682,39.817043],[-123.079741,39.816415],[-123.079114,39.816259],[-123.078486,39.815631],[-123.078800,39.814533],[-123.078016,39.814220],[-123.077859,39.813749],[-123.077859,39.813435],[-123.078486,39.813122],[-123.078800,39.812808],[-123.079584,39.812494],[-123.079898,39.811710],[-123.079741,39.811553],[-123.078016,39.811710],[-123.076447,39.810612],[-123.076291,39.810299],[-123.076761,39.809671],[-123.076291,39.808573],[-123.077232,39.808260],[-123.077075,39.808103],[-123.076134,39.807789],[-123.076134,39.807632],[-123.076604,39.807319],[-123.076918,39.806691],[-123.078016,39.806848],[-123.078486,39.806691],[-123.078486,39.806378],[-123.078173,39.806064],[-123.077859,39.805593],[-123.078800,39.805750],[-123.080212,39.805750],[-123.080212,39.805593],[-123.079741,39.805280],[-123.078957,39.804809],[-123.078800,39.803711],[-123.079271,39.803398],[-123.080212,39.803711],[-123.080996,39.803555],[-123.080996,39.803241],[-123.079898,39.802613],[-123.080368,39.801986],[-123.081309,39.802143],[-123.082407,39.802613],[-123.082564,39.802613],[-123.081780,39.801672],[-123.081623,39.801202],[-123.080682,39.800261],[-123.080525,39.799790],[-123.079898,39.799163],[-123.078800,39.798536],[-123.078643,39.798222],[-123.078173,39.797751],[-123.078957,39.797595],[-123.080525,39.797751],[-123.081937,39.798222],[-123.084760,39.798379],[-123.085858,39.797595],[-123.086328,39.796967],[-123.086172,39.796810],[-123.084446,39.796967],[-123.083662,39.796026],[-123.083819,39.795242],[-123.083819,39.794771],[-123.084133,39.794615],[-123.084760,39.794928],[-123.085074,39.794771],[-123.085074,39.793987],[-123.084603,39.793674],[-123.084446,39.793046],[-123.084133,39.792576],[-123.084133,39.792262],[-123.084760,39.791321],[-123.086015,39.790537],[-123.086799,39.790380],[-123.088681,39.790694],[-123.089152,39.790537],[-123.089465,39.790066],[-123.090249,39.789596],[-123.090563,39.787714],[-123.091661,39.786929],[-123.091975,39.786302],[-123.091818,39.785675],[-123.091661,39.783479],[-123.092131,39.782852],[-123.092916,39.782538],[-123.091661,39.781597],[-123.088210,39.780342],[-123.085701,39.778303],[-123.083505,39.776107],[-123.082564,39.775480],[-123.080682,39.775010],[-123.080368,39.774539],[-123.079427,39.772971],[-123.078800,39.772030],[-123.077859,39.771716],[-123.076604,39.771559],[-123.075820,39.771245],[-123.074095,39.768422],[-123.073467,39.767952],[-123.072056,39.767011],[-123.071585,39.766697],[-123.070017,39.762933],[-123.069233,39.762619],[-123.067351,39.762776],[-123.066566,39.762462],[-123.066410,39.761992],[-123.067194,39.760894],[-123.067508,39.759953],[-123.067664,39.758855],[-123.067351,39.758228],[-123.066410,39.757914],[-123.059352,39.756189],[-123.055431,39.754307],[-123.053862,39.752581],[-123.052451,39.750229],[-123.047746,39.746621],[-123.047432,39.745994],[-123.047275,39.744583],[-123.046491,39.743641],[-123.044138,39.742387],[-123.041158,39.740348],[-123.038806,39.740034],[-123.038022,39.739564],[-123.037865,39.738936],[-123.037865,39.737682],[-123.038492,39.737682],[-123.038649,39.737368],[-123.038492,39.736113],[-123.037865,39.735329],[-123.038335,39.734702],[-123.038335,39.734388],[-123.037865,39.733917],[-123.037708,39.733290],[-123.036767,39.732192],[-123.037080,39.731878],[-123.036139,39.730467],[-123.036453,39.730310],[-123.037080,39.730781],[-123.037237,39.730937],[-123.037551,39.730467],[-123.037237,39.729996],[-123.037394,39.729840],[-123.039119,39.729840],[-123.039590,39.728585],[-123.041158,39.728585],[-123.042570,39.727801],[-123.043040,39.727801],[-123.043981,39.728271],[-123.044452,39.728271],[-123.045079,39.728585],[-123.045550,39.728585],[-123.045393,39.727173],[-123.046491,39.727016],[-123.047275,39.726232],[-123.046961,39.725291],[-123.047275,39.724821],[-123.047275,39.724350],[-123.048216,39.723566],[-123.048373,39.723095],[-123.048216,39.722625],[-123.048687,39.721998],[-123.048687,39.721684],[-123.049471,39.721213],[-123.049785,39.720586],[-123.050569,39.720115],[-123.051667,39.719174],[-123.052294,39.718233],[-123.052294,39.717920],[-123.052765,39.717449],[-123.052765,39.716979],[-123.053078,39.716508],[-123.054333,39.716508],[-123.055901,39.716038],[-123.056372,39.715253],[-123.056372,39.714783],[-123.056215,39.714469],[-123.055431,39.714156],[-123.055588,39.713371],[-123.055901,39.713058],[-123.056686,39.713058],[-123.057313,39.712430],[-123.058254,39.712430],[-123.058881,39.711960],[-123.059195,39.711176],[-123.058724,39.710705],[-123.058411,39.710234],[-123.058097,39.709137],[-123.058097,39.708823],[-123.059195,39.707725],[-123.059195,39.707255],[-123.059509,39.706784],[-123.062018,39.704275],[-123.063587,39.701765],[-123.065312,39.700510],[-123.066880,39.698785],[-123.067351,39.698001],[-123.067821,39.696119],[-123.067664,39.695021],[-123.067194,39.692355],[-123.066253,39.691727],[-123.065155,39.690002],[-123.064528,39.689375],[-123.064214,39.688591],[-123.062332,39.687022],[-123.061861,39.686708],[-123.061861,39.686395],[-123.062489,39.685924],[-123.064371,39.686081],[-123.066410,39.685924],[-123.067351,39.685297],[-123.069233,39.684670],[-123.069233,39.684199],[-123.070017,39.684042],[-123.070801,39.682944],[-123.071742,39.682787],[-123.072840,39.681690],[-123.072840,39.680435],[-123.073154,39.679807],[-123.074095,39.678710],[-123.074722,39.678396],[-123.074565,39.677925],[-123.074252,39.676984],[-123.074409,39.675730],[-123.074565,39.675259],[-123.075663,39.674161],[-123.075977,39.673534],[-123.076134,39.673377],[-123.076134,39.673063],[-123.076291,39.672279],[-123.078016,39.671024],[-123.078173,39.670397],[-123.078643,39.670397],[-123.078957,39.670711],[-123.079271,39.670711],[-123.079427,39.669613],[-123.080368,39.668515],[-123.080055,39.668044],[-123.080682,39.668044],[-123.081153,39.668201],[-123.080996,39.669299],[-123.081153,39.669613],[-123.082251,39.670083],[-123.084289,39.671181],[-123.085858,39.672593],[-123.086485,39.672906],[-123.088054,39.673534],[-123.089465,39.674632],[-123.091975,39.675416],[-123.092288,39.675730],[-123.092445,39.676357],[-123.093229,39.676671],[-123.093857,39.677612],[-123.094641,39.678082],[-123.095111,39.678710],[-123.096523,39.678866],[-123.098719,39.679807],[-123.099032,39.680121],[-123.098876,39.681062],[-123.100601,39.682944],[-123.100915,39.683101],[-123.101856,39.683101],[-123.102483,39.683415],[-123.103424,39.683415],[-123.103895,39.683572],[-123.104365,39.684042],[-123.104208,39.684826],[-123.104679,39.685140],[-123.105306,39.685297],[-123.106090,39.685140],[-123.107972,39.685140],[-123.109227,39.685924],[-123.110482,39.686081],[-123.112678,39.686395],[-123.114246,39.687336],[-123.115501,39.687963],[-123.115971,39.688277],[-123.116912,39.688591],[-123.117540,39.688434],[-123.117696,39.687963],[-123.117696,39.687806],[-123.117540,39.687493],[-123.117696,39.686238],[-123.117540,39.685297],[-123.118010,39.684826],[-123.119892,39.684356],[-123.120049,39.684513],[-123.119892,39.684670],[-123.120206,39.684670],[-123.120833,39.684199],[-123.121461,39.684042],[-123.122088,39.683415],[-123.122559,39.683258],[-123.123186,39.683101],[-123.124284,39.682787],[-123.124754,39.682474],[-123.125382,39.681219],[-123.126009,39.680435],[-123.126166,39.679964],[-123.126793,39.679337],[-123.127891,39.679023],[-123.128989,39.678396],[-123.130557,39.677925],[-123.132126,39.677141],[-123.132439,39.677298],[-123.133537,39.677141],[-123.134165,39.677455],[-123.133851,39.677925],[-123.133381,39.678082],[-123.133224,39.678710],[-123.133537,39.679180],[-123.133381,39.679651],[-123.133694,39.680121],[-123.134635,39.680435],[-123.134635,39.681219],[-123.134478,39.681219],[-123.133694,39.681376],[-123.133851,39.681690],[-123.132753,39.682474],[-123.132753,39.682787],[-123.132126,39.684199],[-123.132439,39.684826],[-123.132283,39.685924],[-123.131655,39.686552],[-123.131969,39.687336],[-123.132753,39.688120],[-123.133067,39.688277],[-123.133694,39.688904],[-123.134792,39.689845],[-123.135576,39.690159],[-123.135890,39.690629],[-123.136204,39.691727],[-123.136988,39.692825],[-123.136988,39.693453],[-123.137772,39.693766],[-123.138713,39.693609],[-123.138870,39.693923],[-123.138870,39.694237],[-123.139027,39.694394],[-123.140281,39.694394],[-123.141066,39.695178],[-123.141379,39.695805],[-123.141693,39.696119],[-123.142007,39.696746],[-123.142320,39.697060],[-123.143418,39.697530],[-123.144987,39.697687],[-123.145771,39.697530],[-123.146398,39.696903],[-123.147026,39.696589],[-123.148280,39.696746],[-123.149221,39.697060],[-123.149535,39.696903],[-123.149692,39.697060],[-123.149849,39.697374],[-123.148594,39.698471],[-123.148437,39.698785],[-123.147810,39.699413],[-123.147967,39.699726],[-123.147496,39.700040],[-123.147653,39.700510],[-123.147496,39.701138],[-123.146555,39.702236],[-123.145300,39.704118],[-123.145144,39.704275],[-123.145457,39.704745],[-123.144830,39.705216],[-123.144673,39.705686],[-123.144987,39.705843],[-123.144987,39.706470],[-123.145457,39.706627],[-123.145614,39.706941],[-123.147026,39.706784],[-123.148437,39.708039],[-123.149692,39.708823],[-123.150790,39.708666],[-123.151574,39.709293],[-123.152358,39.710078],[-123.152515,39.710705],[-123.153613,39.711019],[-123.154240,39.711646],[-123.155181,39.712117],[-123.155809,39.712273],[-123.156593,39.711960],[-123.156750,39.712117],[-123.156593,39.712587],[-123.156907,39.713371],[-123.156593,39.713685],[-123.156593,39.714156],[-123.157377,39.715253],[-123.158475,39.715881],[-123.158475,39.716194],[-123.158789,39.716508],[-123.158632,39.716822],[-123.158946,39.717449],[-123.159887,39.717606],[-123.160357,39.718077],[-123.160828,39.718233],[-123.161925,39.718861],[-123.162553,39.719018],[-123.162867,39.719331],[-123.163651,39.719331],[-123.163964,39.719645],[-123.164749,39.719802],[-123.164905,39.720115],[-123.165533,39.719959],[-123.165690,39.720115],[-123.164592,39.720429],[-123.164121,39.721213],[-123.163651,39.720586],[-123.163337,39.721370],[-123.164592,39.722782],[-123.165533,39.723409],[-123.166631,39.723566],[-123.168199,39.724350],[-123.170238,39.724664],[-123.170709,39.725134],[-123.170709,39.724821],[-123.171336,39.724664],[-123.171336,39.724507],[-123.173375,39.725134],[-123.174159,39.725134],[-123.174786,39.725448],[-123.175100,39.726232],[-123.175727,39.726389],[-123.176825,39.726860],[-123.177766,39.726860],[-123.180276,39.727801],[-123.181531,39.727957],[-123.182472,39.728585],[-123.182628,39.729055],[-123.182472,39.729369],[-123.182628,39.729526],[-123.183883,39.729369],[-123.185138,39.729369],[-123.186236,39.728742],[-123.186863,39.729526],[-123.187177,39.730153],[-123.187647,39.730624],[-123.188431,39.730937],[-123.188745,39.731565],[-123.189216,39.731878],[-123.190157,39.731878],[-123.190941,39.732035],[-123.192353,39.731565],[-123.193764,39.731878],[-123.194705,39.731408],[-123.195176,39.731251],[-123.196744,39.731408],[-123.197371,39.731722],[-123.198156,39.731565],[-123.198469,39.730781],[-123.198469,39.729212],[-123.198940,39.728742],[-123.199567,39.728428],[-123.200508,39.729369],[-123.201292,39.729683],[-123.202547,39.730467],[-123.204116,39.730467],[-123.205370,39.730937],[-123.205998,39.731408],[-123.206939,39.730937],[-123.208664,39.731094],[-123.209605,39.731094],[-123.211017,39.731251],[-123.211644,39.731565],[-123.212742,39.731408],[-123.213526,39.731878],[-123.213996,39.732506],[-123.214781,39.732976],[-123.215879,39.732820],[-123.216976,39.733290],[-123.218388,39.733604],[-123.219800,39.735015],[-123.221995,39.733917],[-123.222623,39.733290],[-123.223721,39.733133],[-123.224191,39.732820],[-123.224975,39.732506],[-123.225916,39.732663],[-123.226701,39.733133],[-123.227014,39.733761],[-123.226857,39.739250],[-123.227328,39.739407],[-123.227328,39.740505],[-123.235954,39.740505],[-123.239405,39.739877],[-123.241600,39.740191],[-123.244110,39.740034],[-123.244737,39.739877],[-123.245051,39.739564],[-123.244267,39.738623],[-123.243326,39.737995],[-123.243796,39.736897],[-123.243326,39.735486],[-123.243012,39.735172],[-123.243012,39.734858],[-123.241600,39.733917],[-123.241444,39.733447],[-123.240346,39.733133],[-123.239091,39.731878],[-123.237523,39.727330],[-123.237523,39.726546],[-123.237679,39.726232],[-123.239248,39.726075],[-123.240032,39.725762],[-123.240659,39.725762],[-123.243639,39.727801],[-123.244424,39.727330],[-123.245208,39.727644],[-123.247560,39.727644],[-123.249913,39.728428],[-123.250540,39.728271],[-123.250854,39.728114],[-123.251481,39.729212],[-123.252109,39.729369],[-123.254304,39.729212],[-123.256343,39.729526],[-123.257441,39.729526],[-123.257912,39.729840],[-123.258539,39.729840],[-123.259167,39.730153],[-123.259794,39.731094],[-123.260108,39.730937],[-123.260578,39.730624],[-123.260892,39.730624],[-123.261049,39.730624],[-123.261049,39.731094],[-123.261205,39.731251],[-123.262146,39.731094],[-123.262931,39.731722],[-123.263872,39.731722],[-123.265440,39.732035],[-123.267950,39.732820],[-123.269518,39.733133],[-123.270145,39.733447],[-123.270773,39.733604],[-123.272027,39.733133],[-123.273753,39.733290],[-123.275164,39.732820],[-123.277517,39.732976],[-123.279556,39.733604],[-123.280497,39.733604],[-123.281281,39.733917],[-123.282536,39.733761],[-123.285202,39.733761],[-123.286143,39.733447],[-123.287711,39.733447],[-123.288809,39.733133],[-123.290378,39.734074],[-123.291632,39.734074],[-123.292417,39.734388],[-123.292417,39.734545],[-123.292260,39.735172],[-123.291946,39.735486],[-123.293044,39.736113],[-123.294456,39.735329],[-123.295240,39.735172],[-123.295240,39.734702],[-123.295554,39.734388],[-123.296651,39.734231],[-123.298377,39.733133],[-123.299788,39.733290],[-123.300259,39.732976],[-123.300729,39.732349],[-123.301827,39.732820],[-123.302298,39.732663],[-123.302925,39.732976],[-123.304493,39.732976],[-123.305591,39.732820],[-123.306532,39.733133],[-123.307160,39.732976],[-123.308101,39.732976],[-123.308414,39.733447],[-123.311394,39.735486],[-123.312806,39.735329],[-123.313120,39.735643],[-123.313747,39.735486],[-123.315159,39.735799],[-123.315472,39.735643],[-123.315472,39.735015],[-123.316100,39.734545],[-123.316100,39.735172],[-123.317354,39.736427],[-123.317197,39.736584],[-123.316884,39.736584],[-123.317197,39.737368],[-123.316727,39.737682],[-123.316570,39.738152],[-123.316256,39.738466],[-123.315943,39.740034],[-123.315943,39.740191],[-123.316884,39.740348],[-123.317041,39.740662],[-123.316413,39.741446],[-123.315629,39.741289],[-123.315315,39.741446],[-123.315472,39.741603],[-123.316100,39.742073],[-123.315786,39.742544],[-123.316100,39.743014],[-123.315629,39.743641],[-123.315629,39.743955],[-123.315786,39.744269],[-123.316100,39.744426],[-123.317825,39.744583],[-123.317825,39.744896],[-123.317354,39.745680],[-123.317354,39.745994],[-123.318139,39.745994],[-123.318609,39.746308],[-123.319550,39.746308],[-123.320177,39.746308],[-123.320021,39.747249],[-123.320334,39.748190],[-123.320491,39.749601],[-123.320021,39.750072],[-123.319550,39.751170],[-123.320962,39.751327],[-123.320805,39.751797],[-123.320962,39.752268],[-123.322530,39.753366],[-123.322687,39.753679],[-123.322530,39.753993],[-123.322530,39.754150],[-123.323157,39.754150],[-123.323942,39.753836],[-123.323785,39.754150],[-123.324255,39.754150],[-123.324569,39.754463],[-123.325040,39.753836],[-123.325824,39.753836],[-123.326137,39.754620],[-123.326137,39.754934],[-123.326294,39.755405],[-123.326294,39.755875],[-123.327235,39.756032],[-123.327863,39.756346],[-123.329117,39.756659],[-123.329431,39.757287],[-123.329274,39.757757],[-123.330058,39.757443],[-123.330529,39.757443],[-123.331940,39.758228],[-123.332254,39.758698],[-123.332568,39.758855],[-123.333823,39.758541],[-123.335234,39.758855],[-123.335705,39.758855],[-123.335861,39.758855],[-123.335705,39.759169],[-123.335705,39.759482],[-123.336489,39.760110],[-123.336018,39.760580],[-123.336018,39.761051],[-123.336959,39.761521],[-123.337273,39.761835],[-123.336959,39.762619],[-123.337116,39.763090],[-123.337430,39.763403],[-123.338371,39.763874],[-123.338685,39.764344],[-123.339155,39.764658],[-123.339155,39.765599],[-123.339626,39.766070],[-123.339155,39.767168],[-123.338685,39.767324],[-123.338528,39.767795],[-123.338998,39.768422],[-123.338841,39.769991],[-123.339469,39.770932],[-123.339312,39.771245],[-123.338528,39.771716],[-123.338528,39.772500],[-123.338685,39.773284],[-123.338214,39.774069],[-123.338057,39.774382],[-123.338998,39.775323],[-123.339312,39.776264],[-123.339939,39.776735],[-123.340567,39.777519],[-123.340724,39.778460],[-123.340096,39.778931],[-123.339783,39.779558],[-123.340410,39.780813],[-123.340253,39.781911],[-123.340410,39.782224],[-123.340410,39.782538],[-123.340724,39.782852],[-123.340724,39.783479],[-123.341351,39.783949],[-123.341194,39.784263],[-123.340567,39.784106],[-123.340410,39.784263],[-123.342449,39.785361],[-123.342449,39.785832],[-123.341978,39.786616],[-123.341665,39.786616],[-123.341351,39.786302],[-123.340724,39.787086],[-123.341665,39.787243],[-123.342135,39.787557],[-123.343233,39.787400],[-123.343547,39.787870],[-123.342919,39.787870],[-123.342919,39.787870],[-123.343704,39.788341],[-123.344488,39.788027],[-123.344645,39.787557],[-123.345115,39.787714],[-123.345429,39.788184],[-123.345742,39.787870],[-123.346683,39.787557],[-123.347154,39.787086],[-123.348722,39.785832],[-123.349820,39.784106],[-123.352173,39.783322],[-123.353584,39.783479],[-123.354682,39.783008],[-123.356878,39.782224],[-123.357662,39.781597],[-123.358290,39.781283],[-123.360015,39.781126],[-123.361897,39.781283],[-123.362995,39.781597],[-123.364877,39.781597],[-123.365818,39.781911],[-123.368641,39.783479],[-123.369739,39.784106],[-123.370366,39.784420],[-123.374287,39.788655],[-123.375228,39.789282],[-123.376640,39.789282],[-123.378522,39.789753],[-123.379306,39.789753],[-123.380718,39.790066],[-123.383855,39.791321],[-123.385737,39.791164],[-123.386521,39.791007],[-123.386835,39.791007],[-123.387305,39.791635],[-123.387776,39.791792],[-123.388560,39.791948],[-123.389344,39.791792],[-123.390128,39.791792],[-123.390128,39.792419],[-123.390285,39.792576],[-123.389971,39.793517],[-123.389971,39.794144],[-123.390599,39.794615],[-123.392167,39.794301],[-123.392951,39.794458],[-123.393265,39.794615],[-123.393265,39.795085],[-123.393892,39.796340],[-123.396088,39.797438],[-123.398284,39.798849],[-123.401264,39.800261],[-123.401578,39.800575],[-123.401734,39.801045],[-123.400480,39.801045],[-123.399382,39.801672],[-123.398598,39.801829],[-123.394990,39.801516],[-123.394206,39.801516],[-123.393736,39.801672],[-123.390756,39.801672],[-123.389815,39.801829],[-123.389501,39.802613],[-123.388560,39.803398],[-123.388403,39.803711],[-123.388560,39.804182],[-123.389344,39.804496],[-123.389658,39.804809],[-123.389658,39.805123],[-123.389344,39.806064],[-123.389658,39.806535],[-123.389187,39.807319],[-123.389187,39.808103],[-123.388560,39.809044],[-123.388089,39.810456],[-123.387776,39.810769],[-123.386835,39.811083],[-123.386207,39.812024],[-123.384482,39.812651],[-123.384325,39.812965],[-123.384325,39.813592],[-123.383384,39.815318],[-123.381502,39.815945],[-123.381032,39.816259],[-123.380247,39.816886],[-123.379149,39.817513],[-123.378679,39.818298],[-123.377738,39.819082],[-123.374601,39.820023],[-123.373346,39.820023],[-123.371464,39.820807],[-123.370366,39.820807],[-123.369896,39.821121],[-123.369582,39.821591],[-123.368014,39.822689],[-123.367073,39.823630],[-123.366602,39.825042],[-123.366289,39.825512],[-123.365818,39.825512],[-123.365661,39.825355],[-123.366445,39.824101],[-123.365975,39.823630],[-123.365818,39.823787],[-123.365975,39.824257],[-123.365504,39.824885],[-123.365191,39.824728],[-123.365347,39.823944],[-123.365034,39.823787],[-123.364877,39.824571],[-123.364563,39.824885],[-123.363936,39.824885],[-123.364093,39.824414],[-123.363152,39.824414],[-123.361583,39.825042],[-123.362211,39.823944],[-123.362211,39.823316],[-123.362368,39.822689],[-123.361583,39.822375],[-123.361426,39.822062],[-123.361583,39.821905],[-123.361426,39.821591],[-123.361113,39.821278],[-123.360485,39.820964],[-123.360329,39.821121],[-123.360485,39.821591],[-123.360485,39.821905],[-123.360485,39.822219],[-123.360329,39.822689],[-123.359858,39.823003],[-123.359701,39.823003],[-123.359701,39.822532],[-123.359544,39.822375],[-123.358447,39.822375],[-123.358133,39.822689],[-123.357505,39.823316],[-123.357349,39.823316],[-123.356878,39.822375],[-123.357192,39.821591],[-123.357035,39.821434],[-123.356408,39.821591],[-123.355937,39.822062],[-123.354996,39.821748],[-123.353741,39.822062],[-123.353428,39.822375],[-123.353271,39.823003],[-123.352643,39.823160],[-123.352016,39.823473],[-123.352330,39.824257],[-123.351859,39.824571],[-123.351232,39.825983],[-123.350918,39.827081],[-123.350448,39.827081],[-123.349663,39.827551],[-123.349350,39.827551],[-123.349036,39.827237],[-123.349193,39.826767],[-123.348879,39.826140],[-123.348409,39.825826],[-123.347938,39.825983],[-123.347781,39.826610],[-123.347938,39.826924],[-123.347781,39.827708],[-123.345899,39.829120],[-123.345742,39.829747],[-123.345272,39.830217],[-123.345429,39.830688],[-123.344645,39.831158],[-123.344174,39.831002],[-123.342762,39.830374],[-123.341978,39.830217],[-123.341665,39.829590],[-123.341978,39.828963],[-123.341037,39.828963],[-123.340410,39.828335],[-123.339312,39.827865],[-123.338214,39.827708],[-123.337744,39.827865],[-123.337273,39.827865],[-123.336959,39.827708],[-123.336646,39.827237],[-123.335861,39.827237],[-123.335391,39.826610],[-123.335077,39.826610],[-123.335077,39.827081],[-123.334293,39.827551],[-123.333509,39.827394],[-123.332882,39.826924],[-123.332725,39.828022],[-123.332568,39.828178],[-123.331940,39.828492],[-123.331784,39.828963],[-123.330686,39.829590],[-123.329902,39.829590],[-123.329117,39.830061],[-123.328961,39.830531],[-123.329117,39.831002],[-123.330215,39.831472],[-123.330215,39.831786],[-123.329588,39.832256],[-123.328804,39.832256],[-123.328176,39.834295],[-123.327078,39.834766],[-123.326608,39.835236],[-123.326294,39.835079],[-123.326294,39.834609],[-123.323471,39.833197],[-123.322216,39.833354],[-123.320177,39.832884],[-123.319550,39.832256],[-123.317511,39.831472],[-123.316413,39.830061],[-123.315315,39.829590],[-123.314531,39.828963],[-123.313433,39.828649],[-123.313433,39.825983],[-123.310140,39.825983],[-123.309512,39.825512],[-123.309669,39.825355],[-123.309826,39.824885],[-123.310297,39.824414],[-123.311081,39.824257],[-123.311865,39.824571],[-123.312022,39.824571],[-123.312179,39.824257],[-123.312022,39.824101],[-123.310767,39.823473],[-123.310610,39.823316],[-123.310767,39.823003],[-123.311081,39.823003],[-123.311708,39.822532],[-123.311394,39.822062],[-123.311708,39.821591],[-123.311865,39.821434],[-123.312179,39.821748],[-123.312649,39.822219],[-123.313433,39.822219],[-123.313433,39.817200],[-123.317041,39.817200],[-123.317041,39.816886],[-123.316884,39.813279],[-123.315472,39.813279],[-123.314061,39.812965],[-123.313120,39.812494],[-123.312179,39.811867],[-123.310140,39.811083],[-123.309669,39.810612],[-123.309512,39.809514],[-123.309669,39.809358],[-123.310297,39.809201],[-123.310924,39.808730],[-123.311394,39.808730],[-123.311551,39.809201],[-123.311865,39.809358],[-123.312649,39.808887],[-123.313120,39.808887],[-123.313276,39.807632],[-123.314218,39.808103],[-123.314531,39.808417],[-123.314688,39.809671],[-123.315159,39.810456],[-123.315943,39.810926],[-123.317041,39.811397],[-123.317041,39.809514],[-123.318452,39.808730],[-123.318452,39.802613],[-123.308571,39.802300],[-123.308571,39.805750],[-123.306689,39.804652],[-123.306219,39.804182],[-123.303866,39.802927],[-123.302768,39.801986],[-123.301827,39.801359],[-123.301043,39.801202],[-123.300416,39.801359],[-123.299788,39.801359],[-123.299161,39.800575],[-123.298063,39.800104],[-123.297279,39.799320],[-123.296495,39.799320],[-123.294769,39.799634],[-123.292730,39.800731],[-123.291632,39.801202],[-123.291005,39.801202],[-123.289280,39.800418],[-123.289123,39.800104],[-123.289123,39.799634],[-123.288966,39.799477],[-123.288653,39.799320],[-123.288182,39.799163],[-123.287555,39.798536],[-123.286614,39.798065],[-123.285986,39.798379],[-123.285359,39.799006],[-123.284261,39.798849],[-123.283477,39.799477],[-123.282222,39.800261],[-123.282536,39.800888],[-123.282222,39.801359],[-123.282379,39.802770],[-123.281438,39.803084],[-123.281124,39.803868],[-123.280811,39.804025],[-123.281438,39.804496],[-123.281438,39.804809],[-123.281281,39.805123],[-123.281281,39.805907],[-123.280497,39.807162],[-123.280967,39.808260],[-123.281281,39.808573],[-123.281124,39.808730],[-123.281438,39.809044],[-123.281281,39.809358],[-123.281908,39.809514],[-123.282379,39.810769],[-123.281908,39.810612],[-123.280967,39.809358],[-123.280811,39.808573],[-123.280497,39.808417],[-123.280026,39.807789],[-123.280026,39.807476],[-123.279713,39.807162],[-123.279399,39.807162],[-123.279556,39.807632],[-123.279556,39.807946],[-123.280026,39.810142],[-123.280497,39.811710],[-123.281438,39.812651],[-123.281595,39.813122],[-123.281908,39.813592],[-123.283634,39.815004],[-123.283790,39.815631],[-123.284418,39.816572],[-123.285829,39.817827],[-123.286300,39.819082],[-123.286300,39.820023],[-123.286770,39.820964],[-123.286770,39.821434],[-123.288966,39.822846],[-123.288966,39.823160],[-123.284888,39.823160],[-123.285045,39.827081],[-123.285359,39.827237],[-123.285986,39.827081],[-123.288182,39.827081],[-123.289437,39.827394],[-123.289437,39.831943],[-123.293671,39.831943],[-123.293671,39.846058],[-123.296024,39.846058],[-123.293044,39.846842],[-123.292417,39.846686],[-123.291476,39.846372],[-123.290848,39.847156],[-123.289437,39.847940],[-123.289750,39.849195],[-123.289750,39.850136],[-123.288653,39.850607],[-123.288966,39.850920],[-123.289437,39.852489],[-123.290378,39.853587],[-123.290848,39.853900],[-123.291162,39.854371],[-123.292887,39.854214],[-123.295240,39.855469],[-123.295554,39.855939],[-123.295083,39.856567],[-123.295710,39.856880],[-123.295397,39.857508],[-123.295554,39.857821],[-123.296024,39.857978],[-123.296024,39.858606],[-123.295710,39.859076],[-123.296181,39.859860],[-123.296338,39.860331],[-123.296181,39.860801],[-123.295554,39.861742],[-123.294769,39.861899],[-123.293828,39.861585],[-123.293515,39.860958],[-123.292887,39.860801],[-123.291789,39.862056],[-123.292260,39.862683],[-123.292260,39.863624],[-123.292574,39.863938],[-123.292887,39.863781],[-123.293044,39.862840],[-123.293358,39.862370],[-123.294299,39.862997],[-123.295240,39.863311],[-123.295710,39.863624],[-123.298533,39.863938],[-123.299161,39.864409],[-123.299788,39.864409],[-123.300102,39.864565],[-123.299945,39.864879],[-123.298377,39.864565],[-123.297592,39.864565],[-123.297279,39.864879],[-123.297436,39.865036],[-123.299318,39.865820],[-123.300102,39.867389],[-123.301357,39.868800],[-123.301513,39.869271],[-123.300886,39.869898],[-123.300729,39.870369],[-123.300886,39.870839],[-123.301200,39.871310],[-123.301357,39.872721],[-123.301827,39.873819],[-123.301513,39.873976],[-123.300886,39.873819],[-123.300572,39.873662],[-123.300102,39.872407],[-123.299788,39.872094],[-123.299318,39.872251],[-123.299004,39.872564],[-123.299161,39.873505],[-123.298690,39.874446],[-123.298533,39.874917],[-123.299475,39.876172],[-123.299788,39.877270],[-123.298533,39.879152],[-123.298533,39.879465],[-123.299475,39.880093],[-123.301827,39.880877],[-123.301984,39.881504],[-123.302768,39.882445],[-123.302925,39.883386],[-123.303239,39.883857],[-123.302925,39.884955],[-123.303709,39.886209],[-123.303552,39.886994],[-123.304337,39.886523],[-123.305278,39.886366],[-123.305121,39.886837],[-123.305748,39.887621],[-123.305748,39.887935],[-123.305905,39.888248],[-123.306219,39.887621],[-123.306375,39.886680],[-123.306846,39.885582],[-123.307473,39.885112],[-123.308571,39.884955],[-123.308885,39.884641],[-123.309042,39.885268],[-123.309042,39.885739],[-123.309355,39.886209],[-123.309355,39.886680],[-123.309669,39.887307],[-123.309983,39.887621],[-123.310297,39.887621],[-123.310297,39.888092],[-123.310767,39.888719],[-123.311708,39.888876],[-123.313120,39.890130],[-123.313120,39.890444],[-123.314061,39.890444],[-123.314061,39.890915],[-123.315159,39.891385],[-123.316100,39.892169],[-123.316100,39.892483],[-123.316256,39.892797],[-123.316413,39.893424],[-123.317041,39.893895],[-123.316727,39.894051],[-123.316727,39.894365],[-123.317041,39.894679],[-123.317354,39.895620],[-123.316256,39.896090],[-123.316256,39.896247],[-123.315786,39.896718],[-123.313747,39.897031],[-123.312806,39.897502],[-123.312335,39.897816],[-123.312179,39.898286],[-123.312649,39.897659],[-123.313276,39.897502],[-123.313904,39.897502],[-123.315315,39.897816],[-123.315943,39.897659],[-123.316884,39.897816],[-123.317982,39.897659],[-123.319707,39.898757],[-123.320805,39.899227],[-123.321432,39.899070],[-123.321903,39.899384],[-123.322216,39.900325],[-123.323471,39.901109],[-123.323314,39.894365],[-123.323628,39.894365],[-123.325040,39.894365],[-123.325981,39.894836],[-123.327235,39.894993],[-123.328490,39.895463],[-123.328490,39.895620],[-123.329902,39.896090],[-123.330215,39.896718],[-123.330529,39.897345],[-123.330999,39.897502],[-123.331156,39.897816],[-123.331627,39.898129],[-123.331313,39.898757],[-123.331313,39.899227],[-123.331627,39.898757],[-123.331940,39.898600],[-123.332882,39.898757],[-123.334136,39.898600],[-123.337116,39.899070],[-123.337587,39.899541],[-123.338998,39.899855],[-123.339312,39.900011],[-123.339312,39.900482],[-123.339155,39.901109],[-123.339155,39.901580],[-123.340096,39.902521],[-123.340410,39.902521],[-123.340567,39.902835],[-123.342135,39.904560],[-123.342135,39.903305],[-123.343076,39.903932],[-123.344017,39.904717],[-123.345115,39.904873],[-123.345272,39.905658],[-123.345742,39.905971],[-123.346840,39.906285],[-123.347938,39.906285],[-123.348722,39.906599],[-123.349663,39.906756],[-123.350134,39.907069],[-123.350134,39.916480],[-123.342135,39.916480],[-123.342135,39.924165],[-123.336959,39.924165],[-123.336959,39.927929],[-123.342135,39.927929],[-123.342135,39.931850],[-123.350134,39.931850],[-123.350134,39.934359],[-123.350291,39.934673],[-123.350604,39.935457],[-123.351389,39.936085],[-123.350448,39.936085],[-123.349820,39.935614],[-123.349663,39.935771],[-123.350134,39.936242],[-123.349977,39.936398],[-123.349350,39.935928],[-123.349193,39.935614],[-123.349036,39.935614],[-123.348879,39.936085],[-123.349193,39.936398],[-123.349350,39.937183],[-123.349820,39.937183],[-123.351075,39.937496],[-123.349663,39.937496],[-123.349193,39.938124],[-123.350761,39.937967],[-123.352330,39.938437],[-123.352957,39.938437],[-123.353898,39.937810],[-123.353898,39.937339],[-123.353898,39.937183],[-123.353898,39.936555],[-123.354682,39.936085],[-123.356564,39.935457],[-123.357349,39.935300],[-123.359701,39.935457],[-123.361583,39.934987],[-123.364406,39.933262],[-123.365661,39.931536],[-123.366916,39.930909],[-123.368171,39.931066],[-123.370053,39.932477],[-123.370837,39.933262],[-123.371307,39.933418],[-123.371935,39.934830],[-123.371778,39.935300],[-123.371151,39.935771],[-123.371151,39.936085],[-123.371935,39.936712],[-123.371935,39.937810],[-123.372248,39.938124],[-123.372719,39.938437],[-123.373503,39.938280],[-123.374444,39.937810],[-123.376483,39.936869],[-123.378993,39.937496],[-123.381502,39.938594],[-123.381032,39.939222],[-123.379934,39.939849],[-123.379463,39.940476],[-123.379620,39.941104],[-123.380247,39.941731],[-123.380247,39.942045],[-123.380090,39.942201],[-123.379149,39.942358],[-123.378836,39.942672],[-123.378836,39.943770],[-123.378208,39.944711],[-123.378208,39.945025],[-123.378365,39.945338],[-123.379777,39.945809],[-123.380090,39.946122],[-123.380090,39.947220],[-123.380875,39.948161],[-123.381502,39.949259],[-123.382443,39.950043],[-123.383227,39.950357],[-123.383698,39.950985],[-123.384325,39.952396],[-123.384796,39.952867],[-123.388560,39.954278],[-123.389030,39.954592],[-123.389187,39.955219],[-123.391226,39.956631],[-123.392638,39.956944],[-123.392951,39.957572],[-123.392951,39.958356],[-123.393892,39.959454],[-123.393108,39.961022],[-123.393422,39.962277],[-123.392951,39.964316],[-123.392795,39.965100],[-123.391854,39.966982],[-123.391854,39.969335],[-123.392010,39.969805],[-123.392481,39.970433],[-123.392481,39.971060],[-123.392324,39.971217],[-123.392010,39.972001],[-123.391697,39.972472],[-123.391069,39.972942],[-123.390285,39.973099],[-123.390128,39.973726],[-123.389658,39.974040],[-123.389658,39.974824],[-123.390128,39.975922],[-123.391383,39.977334],[-123.359231,39.977334],[-123.341037,39.977334]]]}}
,{"id":95429,"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-123.252109,39.729369],[-123.251481,39.729212],[-123.250854,39.728114],[-123.250540,39.728271],[-123.249913,39.728428],[-123.247560,39.727644],[-123.245208,39.727644],[-123.244424,39.727330],[-123.243639,39.727801],[-123.240659,39.725762],[-123.240032,39.725762],[-123.239248,39.726075],[-123.237679,39.726232],[-123.237523,39.726546],[-123.237523,39.727330],[-123.239091,39.731878],[-123.240346,39.733133],[-123.241444,39.733447],[-123.241600,39.733917],[-123.243012,39.734858],[-123.243012,39.735172],[-123.243326,39.735486],[-123.243796,39.736897],[-123.243326,39.737995],[-123.244267,39.738623],[-123.245051,39.739564],[-123.244737,39.739877],[-123.244110,39.740034],[-123.241600,39.740191],[-123.239405,39.739877],[-123.235954,39.740505],[-123.227328,39.740505],[-123.227328,39.739407],[-123.226857,39.739250],[-123.227014,39.733761],[-123.226701,39.733133],[-123.225916,39.732663],[-123.224975,39.732506],[-123.224191,39.732820],[-123.223721,39.733133],[-123.222623,39.733290],[-123.221995,39.733917],[-123.219800,39.735015],[-123.218388,39.733604],[-123.216976,39.733290],[-123.215879,39.732820],[-123.214781,39.732976],[-123.213996,39.732506],[-123.213526,39.731878],[-123.212742,39.731408],[-123.211644,39.731565],[-123.211017,39.731251],[-123.209605,39.731094],[-123.208664,39.731094],[-123.206939,39.730937],[-123.205998,39.731408],[-123.205370,39.730937],[-123.204116,39.730467],[-123.202547,39.730467],[-123.201292,39.729683],[-123.200508,39.729369],[-123.199567,39.728428],[-123.198940,39.728742],[-123.198469,39.729212],[-123.198469,39.730781],[-123.198156,39.731565],[-123.197371,39.731722],[-123.196744,39.731408],[-123.195176,39.731251],[-123.194705,39.731408],[-123.193764,39.731878],[-123.192353,39.731565],[-123.190941,39.732035],[-123.190157,39.731878],[-123.189216,39.731878],[-123.188745,39.731565],[-123.188431,39.730937],[-123.187647,39.730624],[-123.187177,39.730153],[-123.186863,39.729526],[-123.186236,39.728742],[-123.185138,39.729369],[-123.183883,39.729369],[-123.182628,39.729526],[-123.182472,39.729369],[-123.182628,39.729055],[-123.182472,39.728585],[-123.181531,39.727957],[-123.180276,39.727801],[-123.177766,39.726860],[-123.176825,39.726860],[-123.175727,39.726389],[-123.175100,39.726232],[-123.174786,39.725448],[-123.174159,39.725134],[-123.173375,39.725134],[-123.171336,39.724507],[-123.171336,39.724664],[-123.170709,39.724821],[-123.170709,39.725134],[-123.170238,39.724664],[-123.168199,39.724350],[-123.166631,39.723566],[-123.165533,39.723409],[-123.164592,39.722782],[-123.163337,39.721370],[-123.163651,39.720586],[-123.164121,39.721213],[-123.164592,39.720429],[-123.165690,39.720115],[-123.165533,39.719959],[-123.164905,39.720115],[-123.164749,39.719802],[-123.163964,39.719645],[-123.163651,39.719331],[-123.162867,39.719331],[-123.162553,39.719018],[-123.161925,39.718861],[-123.160828,39.718233],[-123.160357,39.718077],[-123.159887,39.717606],[-123.158946,39.717449],[-123.158632,39.716822],[-123.158789,39.716508],[-123.158475,39.716194],[-123.158475,39.715881],[-123.157377,39.715253],[-123.156593,39.714156],[-123.156593,39.713685],[-123.156907,39.713371],[-123.156593,39.712587],[-123.156750,39.712117],[-123.156593,39.711960],[-123.155809,39.712273],[-123.155181,39.712117],[-123.154240,39.711646],[-123.153613,39.711019],[-123.152515,39.710705],[-123.152358,39.710078],[-123.151574,39.709293],[-123.150790,39.708666],[-123.149692,39.708823],[-123.148437,39.708039],[-123.147026,39.706784],[-123.145614,39.706941],[-123.145457,39.706627],[-123.144987,39.706470],[-123.144987,39.705843],[-123.144673,39.705686],[-123.144830,39.705216],[-123.145457,39.704745],[-123.145144,39.704275],[-123.145300,39.704118],[-123.146555,39.702236],[-123.147496,39.701138],[-123.147653,39.700510],[-123.147496,39.700040],[-123.147967,39.699726],[-123.147810,39.699413],[-123.148437,39.698785],[-123.148594,39.698471],[-123.149849,39.697374],[-123.149692,39.697060],[-123.149535,39.696903],[-123.149221,39.697060],[-123.148280,39.696746],[-123.147026,39.696589],[-123.146398,39.696903],[-123.145771,39.697530],[-123.144987,39.697687],[-123.143418,39.697530],[-123.142320,39.697060],[-123.142007,39.696746],[-123.141693,39.696119],[-123.141379,39.695805],[-123.141066,39.695178],[-123.140281,39.694394],[-123.139027,39.694394],[-123.138870,39.694237],[-123.138870,39.693923],[-123.138713,39.693609],[-123.137772,39.693766],[-123.136988,39.693453],[-123.136988,39.692825],[-123.136204,39.691727],[-123.135890,39.690629],[-123.135576,39.690159],[-123.134792,39.689845],[-123.133694,39.688904],[-123.133067,39.688277],[-123.132753,39.688120],[-123.131969,39.687336],[-123.131655,39.686552],[-123.132283,39.685924],[-123.132439,39.684826],[-123.132126,39.684199],[-123.132753,39.682787],[-123.132753,39.682474],[-123.133851,39.681690],[-123.133694,39.681376],[-123.134478,39.681219],[-123.134635,39.681219],[-123.134635,39.680435],[-123.133694,39.680121],[-123.133381,39.679651],[-123.133537,39.679180],[-123.133224,39.678710],[-123.133381,39.678082],[-123.133851,39.677925],[-123.134165,39.677455],[-123.133537,39.677141],[-123.132439,39.677298],[-123.132126,39.677141],[-123.130557,39.677925],[-123.128989,39.678396],[-123.127891,39.679023],[-123.126793,39.679337],[-123.126166,39.679964],[-123.126009,39.680435],[-123.125382,39.681219],[-123.124754,39.682474],[-123.124284,39.682787],[-123.123186,39.683101],[-123.122559,39.683258],[-123.123029,39.682944],[-123.124441,39.682474],[-123.124911,39.682003],[-123.125538,39.680592],[-123.125852,39.679651],[-123.126793,39.679180],[-123.133381,39.676357],[-123.134008,39.676200],[-123.135419,39.676200],[-123.135890,39.676043],[-123.137929,39.675730],[-123.138243,39.675886],[-123.138713,39.676827],[-123.139027,39.677298],[-123.139027,39.677612],[-123.139968,39.678239],[-123.140281,39.679023],[-123.140595,39.679023],[-123.141693,39.679180],[-123.142948,39.678710],[-123.143732,39.678710],[-123.145928,39.679180],[-123.148437,39.679023],[-123.150947,39.679337],[-123.152358,39.679337],[-123.154397,39.679651],[-123.156907,39.681376],[-123.157377,39.682160],[-123.157063,39.682631],[-123.157220,39.683258],[-123.159102,39.685767],[-123.159730,39.685767],[-123.160200,39.685297],[-123.162239,39.684670],[-123.162867,39.684670],[-123.163964,39.685297],[-123.164592,39.685454],[-123.164905,39.685611],[-123.165690,39.686552],[-123.166003,39.686708],[-123.167258,39.688591],[-123.167258,39.688904],[-123.167729,39.689845],[-123.168670,39.691257],[-123.168826,39.691257],[-123.169767,39.693296],[-123.170865,39.694394],[-123.172120,39.694864],[-123.172591,39.695178],[-123.173218,39.696276],[-123.173532,39.698158],[-123.174316,39.698628],[-123.175727,39.698471],[-123.177296,39.698785],[-123.179648,39.700040],[-123.181374,39.700667],[-123.183883,39.702863],[-123.187490,39.704902],[-123.190941,39.705686],[-123.191411,39.706000],[-123.191882,39.707255],[-123.192666,39.707725],[-123.193921,39.708823],[-123.196117,39.710078],[-123.197058,39.709921],[-123.197528,39.709607],[-123.198940,39.708980],[-123.200038,39.708823],[-123.200822,39.708509],[-123.202077,39.708509],[-123.203645,39.709607],[-123.204900,39.709764],[-123.207252,39.708980],[-123.208507,39.708823],[-123.209134,39.708509],[-123.210075,39.708196],[-123.211173,39.707725],[-123.212271,39.707568],[-123.212742,39.707255],[-123.212742,39.706627],[-123.213055,39.706000],[-123.214310,39.704118],[-123.216976,39.702706],[-123.218074,39.701451],[-123.218388,39.700040],[-123.218702,39.699569],[-123.220113,39.699099],[-123.220427,39.699569],[-123.223721,39.701451],[-123.224662,39.701451],[-123.226073,39.700981],[-123.227798,39.700981],[-123.228426,39.701295],[-123.229681,39.702236],[-123.230935,39.702392],[-123.231406,39.702079],[-123.232347,39.701765],[-123.233915,39.700981],[-123.235170,39.699726],[-123.235640,39.699569],[-123.236895,39.700354],[-123.238150,39.701922],[-123.239405,39.702392],[-123.240346,39.703020],[-123.241600,39.702863],[-123.243482,39.702863],[-123.244894,39.702549],[-123.245678,39.702236],[-123.247090,39.702549],[-123.247560,39.702706],[-123.248345,39.703647],[-123.249129,39.705059],[-123.249913,39.705372],[-123.250854,39.705059],[-123.251325,39.705059],[-123.251638,39.704588],[-123.251795,39.704118],[-123.251795,39.703334],[-123.251481,39.702863],[-123.251481,39.701765],[-123.251795,39.701295],[-123.252893,39.700197],[-123.253363,39.700040],[-123.255246,39.699726],[-123.255873,39.699883],[-123.256187,39.700197],[-123.256187,39.700510],[-123.256971,39.700981],[-123.257284,39.701922],[-123.258853,39.702863],[-123.259637,39.702706],[-123.263872,39.702706],[-123.264185,39.702549],[-123.265126,39.701451],[-123.266068,39.700667],[-123.266224,39.699569],[-123.267009,39.698785],[-123.267322,39.697844],[-123.268420,39.697687],[-123.269204,39.697844],[-123.268891,39.698158],[-123.268420,39.697844],[-123.269204,39.698628],[-123.269832,39.698942],[-123.272341,39.698942],[-123.272968,39.699256],[-123.275321,39.699569],[-123.276576,39.700354],[-123.277517,39.700510],[-123.279085,39.701765],[-123.280183,39.702392],[-123.281124,39.702863],[-123.283163,39.702549],[-123.284104,39.702863],[-123.284418,39.703177],[-123.285359,39.703490],[-123.286614,39.703177],[-123.288182,39.703334],[-123.289123,39.703177],[-123.289594,39.703020],[-123.290221,39.702706],[-123.290535,39.701922],[-123.291632,39.701451],[-123.293044,39.701295],[-123.293985,39.700981],[-123.296651,39.700354],[-123.299161,39.700040],[-123.299788,39.700354],[-123.300416,39.701295],[-123.301043,39.701922],[-123.301984,39.702236],[-123.303866,39.702236],[-123.307160,39.702549],[-123.310453,39.702706],[-123.311238,39.702863],[-123.311551,39.703177],[-123.315159,39.704118],[-123.318766,39.704588],[-123.320177,39.705059],[-123.321118,39.706784],[-123.322216,39.707411],[-123.323471,39.707411],[-123.324255,39.706941],[-123.325196,39.707098],[-123.325353,39.706470],[-123.325667,39.706157],[-123.326451,39.705843],[-123.326765,39.705372],[-123.328019,39.704902],[-123.328333,39.704902],[-123.329117,39.705059],[-123.329588,39.706000],[-123.331156,39.707882],[-123.333666,39.708039],[-123.335861,39.707882],[-123.337273,39.708509],[-123.338685,39.708823],[-123.340724,39.709921],[-123.340880,39.710234],[-123.340724,39.710705],[-123.341037,39.711019],[-123.344331,39.711332],[-123.346056,39.710391],[-123.346527,39.710391],[-123.346997,39.710548],[-123.347468,39.711019],[-123.348252,39.710705],[-123.348722,39.710705],[-123.351546,39.712117],[-123.352173,39.712117],[-123.353114,39.711646],[-123.353271,39.711332],[-123.353898,39.708823],[-123.354996,39.706784],[-123.354839,39.705059],[-123.355153,39.704275],[-123.355937,39.703020],[-123.356878,39.702236],[-123.356878,39.701138],[-123.357035,39.700197],[-123.357505,39.699883],[-123.358760,39.699256],[-123.359231,39.698785],[-123.359544,39.697374],[-123.360329,39.696119],[-123.359858,39.694864],[-123.358290,39.692825],[-123.358603,39.691414],[-123.358290,39.689845],[-123.358447,39.689061],[-123.358917,39.688120],[-123.358917,39.687179],[-123.357349,39.685924],[-123.355937,39.684513],[-123.353741,39.681533],[-123.353271,39.681219],[-123.352173,39.681219],[-123.351546,39.681062],[-123.349036,39.678866],[-123.351232,39.678866],[-123.354996,39.680592],[-123.355780,39.681533],[-123.357505,39.684356],[-123.359388,39.685924],[-123.360329,39.687179],[-123.360485,39.687806],[-123.360015,39.690159],[-123.360015,39.692041],[-123.360956,39.694394],[-123.362524,39.694080],[-123.364093,39.693296],[-123.365034,39.693296],[-123.365034,39.693453],[-123.400009,39.692825],[-123.400009,39.693296],[-123.400009,39.693609],[-123.399539,39.693766],[-123.399382,39.693923],[-123.399852,39.695021],[-123.400166,39.695335],[-123.399539,39.696589],[-123.400166,39.697060],[-123.400480,39.698001],[-123.399539,39.698628],[-123.399382,39.699726],[-123.398127,39.700354],[-123.397343,39.701295],[-123.396716,39.701138],[-123.395775,39.701295],[-123.394990,39.701451],[-123.394520,39.701922],[-123.394206,39.703177],[-123.393892,39.703334],[-123.393108,39.703490],[-123.392167,39.703177],[-123.391697,39.703334],[-123.391226,39.703490],[-123.390442,39.703961],[-123.389344,39.703961],[-123.388717,39.704275],[-123.389187,39.704431],[-123.390285,39.704588],[-123.390599,39.704745],[-123.391069,39.705216],[-123.391854,39.705372],[-123.392010,39.705843],[-123.392638,39.706157],[-123.392951,39.706941],[-123.392951,39.707725],[-123.393422,39.708352],[-123.393736,39.708352],[-123.394049,39.707882],[-123.394990,39.707882],[-123.395304,39.708039],[-123.396559,39.708039],[-123.397500,39.708352],[-123.398284,39.707882],[-123.398441,39.708039],[-123.399068,39.708196],[-123.399539,39.708666],[-123.399696,39.708980],[-123.399539,39.709607],[-123.400793,39.709764],[-123.399225,39.710078],[-123.396245,39.710548],[-123.394520,39.710862],[-123.392324,39.711960],[-123.390912,39.712430],[-123.389971,39.713214],[-123.389187,39.713371],[-123.389030,39.713685],[-123.388874,39.714626],[-123.388403,39.714940],[-123.387148,39.714940],[-123.386521,39.714156],[-123.386050,39.714156],[-123.385894,39.714783],[-123.385737,39.714783],[-123.385266,39.714783],[-123.383541,39.714312],[-123.383070,39.713999],[-123.382286,39.714156],[-123.381973,39.714312],[-123.381659,39.714783],[-123.380875,39.716038],[-123.380247,39.716508],[-123.379463,39.716508],[-123.379149,39.716194],[-123.378993,39.715724],[-123.378836,39.715567],[-123.377895,39.716038],[-123.376797,39.716351],[-123.376640,39.716351],[-123.376169,39.716038],[-123.375542,39.716038],[-123.375072,39.716194],[-123.374758,39.716508],[-123.374758,39.717449],[-123.374915,39.717920],[-123.374915,39.718233],[-123.374444,39.718390],[-123.372248,39.718233],[-123.371778,39.718077],[-123.370680,39.718077],[-123.369896,39.718704],[-123.368327,39.719331],[-123.368327,39.719802],[-123.368171,39.719959],[-123.367386,39.720115],[-123.367386,39.720900],[-123.367543,39.722154],[-123.366916,39.722782],[-123.368484,39.723409],[-123.368955,39.724036],[-123.369739,39.724193],[-123.370210,39.724036],[-123.370366,39.723566],[-123.370994,39.723409],[-123.371151,39.723095],[-123.370680,39.722625],[-123.371307,39.722468],[-123.371621,39.722154],[-123.372248,39.722154],[-123.372719,39.722939],[-123.373190,39.723095],[-123.373817,39.723095],[-123.373974,39.722939],[-123.374287,39.722311],[-123.375072,39.722154],[-123.375385,39.722154],[-123.376013,39.722782],[-123.375699,39.723723],[-123.376013,39.723880],[-123.376326,39.723880],[-123.376797,39.723723],[-123.377267,39.723095],[-123.377111,39.722468],[-123.377424,39.722311],[-123.378052,39.722154],[-123.378522,39.722154],[-123.379149,39.722939],[-123.379149,39.723880],[-123.379463,39.724821],[-123.379620,39.725448],[-123.379149,39.726389],[-123.379306,39.726860],[-123.380090,39.727330],[-123.379777,39.727801],[-123.379777,39.728271],[-123.379934,39.728585],[-123.379620,39.729369],[-123.379934,39.729996],[-123.380404,39.730310],[-123.381032,39.729996],[-123.381502,39.730310],[-123.381816,39.730781],[-123.382129,39.730937],[-123.383384,39.731094],[-123.384953,39.730781],[-123.385894,39.730937],[-123.386521,39.731251],[-123.386991,39.731878],[-123.388246,39.732035],[-123.388560,39.732506],[-123.388560,39.732976],[-123.388089,39.733604],[-123.388089,39.734074],[-123.387933,39.734231],[-123.387462,39.734545],[-123.386521,39.734545],[-123.385894,39.734545],[-123.383855,39.736427],[-123.384012,39.737054],[-123.384168,39.737368],[-123.385423,39.738152],[-123.385894,39.738779],[-123.385894,39.739093],[-123.385580,39.739407],[-123.385580,39.740662],[-123.386364,39.740975],[-123.386364,39.741132],[-123.385894,39.741446],[-123.386207,39.741916],[-123.386050,39.742073],[-123.386678,39.743014],[-123.386835,39.743014],[-123.387462,39.742700],[-123.388089,39.743014],[-123.388560,39.742700],[-123.389658,39.742387],[-123.390128,39.742700],[-123.391069,39.742230],[-123.391540,39.741759],[-123.392481,39.741603],[-123.393579,39.740975],[-123.393892,39.740975],[-123.393579,39.742230],[-123.394833,39.741916],[-123.395147,39.742073],[-123.394677,39.742544],[-123.394206,39.743014],[-123.394206,39.743171],[-123.394520,39.743171],[-123.395304,39.742700],[-123.396402,39.742857],[-123.397029,39.742544],[-123.397500,39.742544],[-123.397813,39.742700],[-123.397813,39.743014],[-123.398284,39.743798],[-123.398441,39.744269],[-123.397813,39.745367],[-123.397186,39.745524],[-123.396245,39.745837],[-123.396402,39.745994],[-123.397186,39.746621],[-123.397657,39.747563],[-123.397657,39.747876],[-123.397186,39.748033],[-123.396559,39.748974],[-123.395461,39.749288],[
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment