-
Notifications
You must be signed in to change notification settings - Fork 7
/
military.cljw
242 lines (220 loc) · 233 KB
/
military.cljw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
;; gorilla-repl.fileformat = 1
;; **
;;; # Gorilla REPL
;;;
;;; Welcome to gorilla :-)
;;;
;;; Shift + enter evaluates code. Hit ctrl+g twice in quick succession or click the menu icon (upper-right corner) for more commands ...
;;;
;;; It's a good habit to run each worksheet in its own namespace: feel free to use the declaration we've provided below if you'd like.
;; **
;; @@
(ns hog-zero-one
(:require [clojure.java.io :as io]
[clojure.java.jdbc :as jdbc]
[clojure.pprint :as pprint]
[clojure.string :as string]
[com.lemondronor.leaflet-gorilla :as lg]
[com.lemondronor.orbital-detector.basestationdb :as basestationdb]
[com.lemondronor.orbital-detector.planeplotter :as planeplotter]
[gorilla-plot.core :as plot]))
;; @@
;; =>
;;; {"type":"html","content":"<span class='clj-nil'>nil</span>","value":"nil"}
;; <=
;; @@
(def aircraft (into {} (map (fn [r] [(:modes r) r]) (basestationdb/load-db "basestation.sqb"))))
(def report-db-paths (map #(.getPath %) (filter #(re-find #"pp_report.*sqb" (.getName %)) (file-seq (io/file "logs")))))
(println "Loading Planeplotter reports from the following files:")
(pprint/pprint report-db-paths)
(def reports (mapcat identity (map planeplotter/reports report-db-paths)))
(println "Example report:")
(println (take 1 reports))
;; @@
;; ->
;;; Loading Planeplotter reports from the following files:
;;; ("logs/pp_report2015031300.sqb"
;;; "logs/pp_report2015031400.sqb"
;;; "logs/pp_report2015031500.sqb"
;;; "logs/pp_report2015031600.sqb"
;;; "logs/pp_report2015031700.sqb"
;;; "logs/pp_report2015031800.sqb"
;;; "logs/pp_report2015031900.sqb"
;;; "logs/pp_report2015032000.sqb")
;;; Example report:
;;; ({:firstalt 40000, :icao AACC3D, :lastalt 40000, :type B737, :lastsquawk 1025, :route , :interested 0, :flightid AACC3D;@@@@@@@@;N795SW, :firsttime #<LocalDateTime 2015-03-13T23:32:47.000>, :lasttime #<LocalDateTime 2015-03-13T23:32:47.000>, :callsign @@@@@@@@, :firstsquawk 1025, :registration N795SW})
;;;
;; <-
;; =>
;;; {"type":"html","content":"<span class='clj-nil'>nil</span>","value":"nil"}
;; <=
;; @@
(defn military-reg? [reg] (re-find #";[0-9]+\-[0-9]+" (or reg "")))
(defn maybe-military? [r] (or (military-reg? (:registration r))
(re-find #"Mil" (or (:modescountry (aircraft (:icao r))) ""))))
;; @@
;; =>
;;; {"type":"html","content":"<span class='clj-var'>#'hog-zero-one/maybe-military?</span>","value":"#'hog-zero-one/maybe-military?"}
;; <=
;; @@
(def maybe-military-reports (filter maybe-military? reports))
(println (count maybe-military-reports) "possible military reports")
(def maybe-military-flightids (distinct (map :flightid maybe-military-reports)))
(println (count maybe-military-flightids) "flight IDs")
(take 1 maybe-military-reports)
(take 1 aircraft)
;; @@
;; ->
;;; 98 possible military reports
;;; 77 flight IDs
;;;
;; <-
;; =>
;;; {"type":"list-like","open":"<span class='clj-lazy-seq'>(</span>","close":"<span class='clj-lazy-seq'>)</span>","separator":" ","items":[{"type":"list-like","open":"<span class='clj-vector'>[</span>","close":"<span class='clj-vector'>]</span>","separator":" ","items":[{"type":"html","content":"<span class='clj-string'>"A01A3C"</span>","value":"\"A01A3C\""},{"type":"list-like","open":"<span class='clj-map'>{</span>","close":"<span class='clj-map'>}</span>","separator":", ","items":[{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:usertag</span>","value":":usertag"},{"type":"html","content":"<span class='clj-nil'>nil</span>","value":"nil"}],"value":"[:usertag nil]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:aircraftid</span>","value":":aircraftid"},{"type":"html","content":"<span class='clj-unkown'>57596</span>","value":"57596"}],"value":"[:aircraftid 57596]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:modes</span>","value":":modes"},{"type":"html","content":"<span class='clj-string'>"A01A3C"</span>","value":"\"A01A3C\""}],"value":"[:modes \"A01A3C\"]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:interested</span>","value":":interested"},{"type":"html","content":"<span class='clj-unkown'>0</span>","value":"0"}],"value":"[:interested 0]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:icaotypecode</span>","value":":icaotypecode"},{"type":"html","content":"<span class='clj-string'>"P32R"</span>","value":"\"P32R\""}],"value":"[:icaotypecode \"P32R\"]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:operatorflagcode</span>","value":":operatorflagcode"},{"type":"html","content":"<span class='clj-nil'>nil</span>","value":"nil"}],"value":"[:operatorflagcode nil]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:firstcreated</span>","value":":firstcreated"},{"type":"html","content":"<span class='clj-string'>"2008-08-08 21:24:56"</span>","value":"\"2008-08-08 21:24:56\""}],"value":"[:firstcreated \"2008-08-08 21:24:56\"]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:modescountry</span>","value":":modescountry"},{"type":"html","content":"<span class='clj-string'>"United States"</span>","value":"\"United States\""}],"value":"[:modescountry \"United States\"]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:serialno</span>","value":":serialno"},{"type":"html","content":"<span class='clj-string'>"3257448"</span>","value":"\"3257448\""}],"value":"[:serialno \"3257448\"]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:registration</span>","value":":registration"},{"type":"html","content":"<span class='clj-string'>"N1054S"</span>","value":"\"N1054S\""}],"value":"[:registration \"N1054S\"]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:lastmodified</span>","value":":lastmodified"},{"type":"html","content":"<span class='clj-string'>"2008-08-08 21:24:56"</span>","value":"\"2008-08-08 21:24:56\""}],"value":"[:lastmodified \"2008-08-08 21:24:56\"]"}],"value":"{:usertag nil, :aircraftid 57596, :modes \"A01A3C\", :interested 0, :icaotypecode \"P32R\", :operatorflagcode nil, :firstcreated \"2008-08-08 21:24:56\", :modescountry \"United States\", :serialno \"3257448\", :registration \"N1054S\", :lastmodified \"2008-08-08 21:24:56\"}"}],"value":"[\"A01A3C\" {:usertag nil, :aircraftid 57596, :modes \"A01A3C\", :interested 0, :icaotypecode \"P32R\", :operatorflagcode nil, :firstcreated \"2008-08-08 21:24:56\", :modescountry \"United States\", :serialno \"3257448\", :registration \"N1054S\", :lastmodified \"2008-08-08 21:24:56\"}]"}],"value":"([\"A01A3C\" {:usertag nil, :aircraftid 57596, :modes \"A01A3C\", :interested 0, :icaotypecode \"P32R\", :operatorflagcode nil, :firstcreated \"2008-08-08 21:24:56\", :modescountry \"United States\", :serialno \"3257448\", :registration \"N1054S\", :lastmodified \"2008-08-08 21:24:56\"}])"}
;; <=
;; @@
(def maybe-military-db-recs (distinct (map #(aircraft (:icao %)) maybe-military-reports)))
(pprint/print-table maybe-military-db-recs)
(pprint/pprint (distinct (map :icaotypecode maybe-military-db-recs)))
;; @@
;; ->
;;;
;;; | :usertag | :aircraftid | :modes | :interested | :icaotypecode | :operatorflagcode | :firstcreated | :modescountry | :serialno | :registration | :lastmodified |
;;; |----------+-------------+--------+-------------+---------------+-------------------+-----------------------------+--------------------+-----------+---------------+-----------------------------|
;;; | | 48873 | ADFE95 | 0 | BE20 | RCH | 2007-12-11 11:50:12.6547718 | United States Mil | BW-24 | 95-00096 | 2007-12-11 11:50:12.6547718 |
;;; | | 82447 | AE49C5 | 0 | C17 | RCH | 2011-03-11 17:59:13.000 | United States Mil | P-209 | 09-9209 | 2011-03-11 17:59:13.000 |
;;; | | 51613 | C2B373 | 0 | CL60 | CFC | 2007-12-11 12:00:17.7947718 | Canada Mil | 5535 | 144618 | 2007-12-11 12:00:17.7947718 |
;;; | | 50071 | AE11E4 | 0 | E3TF | RCH | 2007-12-11 11:54:35.9827718 | United States Mil | 21752 | 78-0576 | 2007-12-11 11:54:35.9827718 |
;;; | | 54766 | AE0382 | 0 | K35R | RCH | 2008-05-25 17:05:19 | United States Mil | 17796 | 58-0051 | 2008-05-25 17:05:19 |
;;; | | 49733 | AE0655 | 0 | K35R | RCH | 2007-12-11 11:53:21.7597718 | United States Mil | | 58-0084 | 2007-12-11 11:53:21.7597718 |
;;; | | 92890 | AE4D69 | 0 | C17 | RCH | 2012-02-18 10:24:45.000 | United States Mil | P-216 | 10-0216 | 2012-02-18 10:24:45.000 |
;;; | | 49888 | AE0810 | 0 | C17 | RCH | 2007-12-11 11:53:55.9367718 | United States Mil | | 99-0170 | 2007-12-11 11:53:55.9367718 |
;;; | | 50188 | AE1448 | 0 | C17 | RCH | 2007-12-11 11:55:00.8327718 | United States Mil | | 04-4138 | 2007-12-11 11:55:00.8327718 |
;;; | | 136359 | AE0976 | 0 | B737 | CNV | 2015-01-15 09:17:24 | United States Mil | 32597 | 165833 | 2015-01-15 09:17:24 |
;;; | | 50023 | AE115D | 0 | B737 | RCH | 2007-12-11 11:54:25.0707718 | United States Mil | 32916 | 01-0015 | 2007-12-11 11:54:25.0707718 |
;;; | | 137633 | ADFEDC | 0 | BE20 | RCH | 2015-02-01 16:57:11 | United States Mil | BP-66 | 86-00086 | 2015-02-01 16:57:11 |
;;; | | 49080 | AE0211 | 0 | DC10 | RCH | 2007-12-11 11:50:58.5837718 | United States Mil | 48214 | 82-0192 | 2007-12-11 11:50:58.5837718 |
;;; | | 117335 | AE1FF7 | 0 | EC45 | | 2014-04-28 06:18:07 | United States Mil | | 12-72232 | 2014-04-28 06:18:07 |
;;; | | 50192 | AE144C | 0 | C17 | RCH | 2007-12-11 11:55:01.8627718 | United States Mil | | 05-5142 | 2007-12-11 11:55:01.8627718 |
;;; | | 54296 | AE146A | 0 | C17 | RCH | 2008-05-20 07:10:14 | United States Mil | P-172 | 07-7172 | 2008-05-20 07:10:14 |
;;; | | 136358 | AE04DA | 0 | B737 | CNV | 2015-01-15 09:17:24 | United States Mil | 30781 | 165832 | 2015-01-15 09:17:24 |
;;; | | 63273 | AE093F | 0 | C560 | RCH | 2009-08-03 18:45:45 | United States Mil | | 165939 | 2009-08-03 18:45:45 |
;;; | | 50146 | AE12CC | 0 | C130 | RCH | 2007-12-11 11:54:52.2327718 | United States Mil | | 66-0223 | 2007-12-11 11:54:52.2327718 |
;;; | | 136357 | AE04D9 | 0 | B737 | CNV | 2015-01-15 09:17:24 | United States Mil | 30200 | 165831 | 2015-01-15 09:17:24 |
;;; | | 50214 | AE1462 | 0 | C17 | RCH | 2007-12-11 11:55:06.7507718 | United States Mil | P-164 | 06-6164 | 2007-12-11 11:55:06.7507718 |
;;; | | 10569 | 43C171 | 0 | C17 | RAF | 2007-12-11 09:33:27.2857718 | United Kingdom Mil | UK1 | ZZ171 | 2007-12-11 09:33:27.2857718 |
;;; | | 90556 | AE1FB6 | 0 | EC45 | RCH | 2011-10-31 18:44:17.000 | United States Mil | | 10-72167 | 2011-10-31 18:44:17.000 |
;;; | | 50190 | AE144A | 0 | C17 | RCH | 2007-12-11 11:55:01.2427718 | United States Mil | P-140 | 05-5140 | 2007-12-11 11:55:01.2427718 |
;;; | | 64503 | C2B3B9 | 0 | A310 | CFC | 2009-09-20 10:29:13 | Canada Mil | 425 | 15003 | 2009-09-20 10:29:13 |
;;; | | 50058 | AE119C | 0 | C17 | RCH | 2007-12-11 11:54:32.9427718 | United States Mil | P-119 | 03-3119 | 2007-12-11 11:54:32.9427718 |
;;; | | 49282 | AE0369 | 0 | K35R | RCH | 2007-12-11 11:51:42.9617718 | United States Mil | | 63-8024 | 2007-12-11 11:51:42.9617718 |
;;; | | 67241 | AE0481 | 0 | K35R | RCH | 2010-02-25 21:42:27 | United States Mil | 18104 | 60-0329 | 2010-02-25 21:42:27 |
;;; | | 48869 | ADFE91 | 0 | BE20 | RCH | 2007-12-11 11:50:11.8217718 | United States Mil | BW-20 | 95-00092 | 2007-12-11 11:50:11.8217718 |
;;; | | 56395 | AE1440 | 0 | C30J | RCH | 2008-07-13 17:19:54 | United States Mil | 5576 | 05-1466 | 2008-07-13 17:19:54 |
;;; | | 48796 | ADFE15 | 0 | C130 | RCH | 2007-12-11 11:49:54.3577718 | United States Mil | | 1709 | 2007-12-11 11:49:54.3577718 |
;;; | | 49901 | AE0823 | 0 | K35R | RCH | 2007-12-11 11:53:58.7607718 | United States Mil | | 57-1438 | 2007-12-11 11:53:58.7607718 |
;;; | | 93926 | AE1FB5 | 0 | EC45 | RCH | 2012-03-22 20:07:56.000 | United States Mil | | 10-72166 | 2012-03-22 20:07:56.000 |
;;; | | 49847 | AE07E2 | 0 | C17 | RCH | 2007-12-11 11:53:47.0747718 | United States Mil | | 94-0068 | 2007-12-11 11:53:47.0747718 |
;;; | | 61560 | AE1BA9 | 0 | C30J | RCH | 2009-02-21 11:13:43 | United States Mil | 5591 | 167924 | 2009-02-21 11:13:43 |
;;; | | 49736 | AE0658 | 0 | K35R | RCH | 2007-12-11 11:53:22.3937718 | United States Mil | | 59-1462 | 2007-12-11 11:53:22.3937718 |
;;; | | 80914 | AE2F97 | 0 | C30J | RCH | 2011-02-07 12:43:41.000 | United States Mil | 5644 | 168065 | 2011-02-07 12:43:41.000 |
;;; | | 50124 | AE1258 | 0 | GLF5 | RCH | 2007-12-11 11:54:47.8257718 | United States Mil | 5041 | 166376 | 2007-12-11 11:54:47.8257718 |
;;; | | 134916 | B18269 | 0 | K35R | RCH | 2015-01-01 09:32:51 | United States Mil | 17739 | 57-2603 | 2015-01-01 09:32:51 |
;;; | | 48737 | ADFDB1 | 0 | GLF4 | RCH | 2007-12-11 11:49:39.8457718 | United States Mil | 1162 | 91-00108 | 2007-12-11 11:49:39.8457718 |
;;; | | 50226 | AE1482 | 0 | C30J | RCH | 2007-12-11 11:55:09.2977718 | United States Mil | 5565 | 166765 | 2007-12-11 11:55:09.2977718 |
;;; | | 61125 | ADFE0D | 0 | C130 | RCH | 2009-01-10 09:10:22 | United States Mil | | 1701 | 2009-01-10 09:10:22 |
;;; | | 49415 | AE048D | 0 | K35R | RCH | 2007-12-11 11:52:12.3077718 | United States Mil | 18776 | 64-14836 | 2007-12-11 11:52:12.3077718 |
;;; | | 58390 | AE12CB | 0 | C130 | RCH | 2008-09-01 10:38:05 | United States Mil | 4175 | 66-0219 | 2008-09-01 10:38:05 |
;;; | | 137652 | AE08FA | 0 | BE20 | RCH | 2015-02-01 16:57:11 | United States Mil | BP-48 | 84-24377 | 2015-02-01 16:57:11 |
;;; | | 48973 | AE0149 | 0 | K35R | RCH | 2007-12-11 11:50:35.3947718 | United States Mil | | 57-1468 | 2007-12-11 11:50:35.3947718 |
;;; | | 48978 | AE014F | 0 | K35R | RCH | 2007-12-11 11:50:36.3267718 | United States Mil | | 63-8036 | 2007-12-11 11:50:36.3267718 |
;;; | | 56626 | AE06DB | 0 | BE20 | RCH | 2008-07-17 18:28:53 | United States Mil | BU-7 | 163559 | 2008-07-17 18:28:53 |
;;; | | 49776 | AE068C | 0 | K35R | RCH | 2007-12-11 11:53:31.5847718 | United States Mil | | 62-3513 | 2007-12-11 11:53:31.5847718 |
;;; | | 56489 | AE1256 | 0 | C30J | RCH | 2008-07-15 17:32:58 | United States Mil | 5554 | 166512 | 2008-07-15 17:32:58 |
;;; | | 49334 | AE03EB | 0 | C130 | RCH | 2007-12-11 11:51:53.9677718 | United States Mil | | 165314 | 2007-12-11 11:51:53.9677718 |
;;; ("BE20"
;;; "C17"
;;; "CL60"
;;; "E3TF"
;;; "K35R"
;;; "B737"
;;; "DC10"
;;; "EC45"
;;; "C560"
;;; "C130"
;;; "A310"
;;; "C30J"
;;; "GLF5"
;;; "GLF4")
;;;
;; <-
;; =>
;;; {"type":"html","content":"<span class='clj-nil'>nil</span>","value":"nil"}
;; <=
;; @@
(defn military-ping? [p] (or (military-reg? (:registration p))
(let [rec (aircraft (:icao p))]
(military-reg? (:registration rec))
(re-find #"Mil" (or (:modescountry rec) "")))))
(def military-pings
(filter
military-ping?
(jdbc/query
{:classname "org.sqlite.JDBC"
:subprotocol "sqlite"
:subname "pings.sqb"}
"SELECT * FROM reports where lat > 0.0")))
;; @@
;; =>
;;; {"type":"html","content":"<span class='clj-var'>#'hog-zero-one/military-pings</span>","value":"#'hog-zero-one/military-pings"}
;; <=
;; @@
(count military-pings)
;; @@
;; =>
;;; {"type":"html","content":"<span class='clj-unkown'>4745</span>","value":"4745"}
;; <=
;; @@
(for [icao (map first (group-by :icao military-pings))] [icao (:icaotypecode (aircraft icao))])
;; @@
;; =>
;;; {"type":"list-like","open":"<span class='clj-lazy-seq'>(</span>","close":"<span class='clj-lazy-seq'>)</span>","separator":" ","items":[{"type":"list-like","open":"<span class='clj-vector'>[</span>","close":"<span class='clj-vector'>]</span>","separator":" ","items":[{"type":"html","content":"<span class='clj-string'>"AE2FA7"</span>","value":"\"AE2FA7\""},{"type":"html","content":"<span class='clj-string'>"C17"</span>","value":"\"C17\""}],"value":"[\"AE2FA7\" \"C17\"]"},{"type":"list-like","open":"<span class='clj-vector'>[</span>","close":"<span class='clj-vector'>]</span>","separator":" ","items":[{"type":"html","content":"<span class='clj-string'>"AE1BA9"</span>","value":"\"AE1BA9\""},{"type":"html","content":"<span class='clj-string'>"C30J"</span>","value":"\"C30J\""}],"value":"[\"AE1BA9\" \"C30J\"]"},{"type":"list-like","open":"<span class='clj-vector'>[</span>","close":"<span class='clj-vector'>]</span>","separator":" ","items":[{"type":"html","content":"<span class='clj-string'>"AE021F"</span>","value":"\"AE021F\""},{"type":"html","content":"<span class='clj-string'>"DC10"</span>","value":"\"DC10\""}],"value":"[\"AE021F\" \"DC10\"]"},{"type":"list-like","open":"<span class='clj-vector'>[</span>","close":"<span class='clj-vector'>]</span>","separator":" ","items":[{"type":"html","content":"<span class='clj-string'>"ADFDF9"</span>","value":"\"ADFDF9\""},{"type":"html","content":"<span class='clj-string'>"B742"</span>","value":"\"B742\""}],"value":"[\"ADFDF9\" \"B742\"]"},{"type":"list-like","open":"<span class='clj-vector'>[</span>","close":"<span class='clj-vector'>]</span>","separator":" ","items":[{"type":"html","content":"<span class='clj-string'>"C2B373"</span>","value":"\"C2B373\""},{"type":"html","content":"<span class='clj-string'>"CL60"</span>","value":"\"CL60\""}],"value":"[\"C2B373\" \"CL60\"]"},{"type":"list-like","open":"<span class='clj-vector'>[</span>","close":"<span class='clj-vector'>]</span>","separator":" ","items":[{"type":"html","content":"<span class='clj-string'>"AE1FB6"</span>","value":"\"AE1FB6\""},{"type":"html","content":"<span class='clj-string'>"EC45"</span>","value":"\"EC45\""}],"value":"[\"AE1FB6\" \"EC45\"]"},{"type":"list-like","open":"<span class='clj-vector'>[</span>","close":"<span class='clj-vector'>]</span>","separator":" ","items":[{"type":"html","content":"<span class='clj-string'>"AE0658"</span>","value":"\"AE0658\""},{"type":"html","content":"<span class='clj-string'>"K35R"</span>","value":"\"K35R\""}],"value":"[\"AE0658\" \"K35R\"]"},{"type":"list-like","open":"<span class='clj-vector'>[</span>","close":"<span class='clj-vector'>]</span>","separator":" ","items":[{"type":"html","content":"<span class='clj-string'>"AE1258"</span>","value":"\"AE1258\""},{"type":"html","content":"<span class='clj-string'>"GLF5"</span>","value":"\"GLF5\""}],"value":"[\"AE1258\" \"GLF5\"]"}],"value":"([\"AE2FA7\" \"C17\"] [\"AE1BA9\" \"C30J\"] [\"AE021F\" \"DC10\"] [\"ADFDF9\" \"B742\"] [\"C2B373\" \"CL60\"] [\"AE1FB6\" \"EC45\"] [\"AE0658\" \"K35R\"] [\"AE1258\" \"GLF5\"])"}
;; <=
;; @@
(apply lg/leaflet
:width 800
:height 800
(for [[_ pings] (group-by :icao military-pings)]
[:line (map (fn [p] [(:lat p) (:lon p)]) pings)]))
;; @@
;; =>
;;; {"type":"html","content":"<div>\n<div id='2efc2f57-481b-4247-b3e1-8c0b2fb79fc0' style='height: 800px; width: 800px;'></div>\n<script type='text/javascript'>\n$(function () {\n var cachedScript = function(url, options) {\n // Allow user to set any option except for dataType, cache, and url\n options = $.extend( options || {}, {\n dataType: 'script',\n cache: true,\n url: url\n });\n\n // Use $.ajax() since it is more flexible than $.getScript\n // Return the jqXHR object so we can chain callbacks\n return jQuery.ajax(options);\n };\n var createMap = function() {\n var map = L.map('2efc2f57-481b-4247-b3e1-8c0b2fb79fc0')\n L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png')\n .addTo(map);\n var geoJson = L.geoJson(\n {\"features\":[{\"type\":\"Feature\",\"geometry\":{\"type\":\"LineString\",\"coordinates\":[[-118.42745,33.94393],[-118.42745,33.94398],[-118.42744,33.94398],[-118.42744,33.94398],[-118.42744,33.94398],[-118.42742,33.94402],[-118.42742,33.94402],[-118.42742,33.94402],[-118.42745,33.94427],[-118.42744,33.94427],[-118.42744,33.94427],[-118.42746,33.94432],[-118.42747,33.94432],[-118.42747,33.94432],[-118.42753,33.94449],[-118.42752,33.9445],[-118.42752,33.9445],[-118.42757,33.94456],[-118.42757,33.94456],[-118.42753,33.94456],[-118.42752,33.94455],[-118.42752,33.94455],[-118.42756,33.94458],[-118.42755,33.94458],[-118.42755,33.94462],[-118.42755,33.94462],[-118.42756,33.94469],[-118.42755,33.94468],[-118.42755,33.94468],[-118.42753,33.94473],[-118.42752,33.94473],[-118.42752,33.94473],[-118.42757,33.94477],[-118.42757,33.94477],[-118.42757,33.94481],[-118.42757,33.94481],[-118.42756,33.94486],[-118.42755,33.94486],[-118.42753,33.94488],[-118.42752,33.94488],[-118.42752,33.94488],[-118.42757,33.94493],[-118.42757,33.94496],[-118.42757,33.94496],[-118.42757,33.94496],[-118.42757,33.94501],[-118.42757,33.94501],[-118.42766,33.94552],[-118.42765,33.94552],[-118.42765,33.94552],[-118.42764,33.94552],[-118.42764,33.94552],[-118.42764,33.94552],[-118.42766,33.94552],[-118.42765,33.94552],[-118.42765,33.94552],[-118.42764,33.94565],[-118.42768,33.94572],[-118.42768,33.94572],[-118.42768,33.94572],[-118.42768,33.94574],[-118.42768,33.94574],[-118.42768,33.94574],[-118.42768,33.94576],[-118.42768,33.94576],[-118.42768,33.94576],[-118.42773,33.94579],[-118.42772,33.94578],[-118.42772,33.94578],[-118.4277,33.94587],[-118.4277,33.94587],[-118.4277,33.94587],[-118.42773,33.94591],[-118.42772,33.9459],[-118.42772,33.9459],[-118.42773,33.94596],[-118.42772,33.94595],[-118.42772,33.94595],[-118.4277,33.94597],[-118.4277,33.94597],[-118.4277,33.94597],[-118.4277,33.94602],[-118.42773,33.94613],[-118.42772,33.94612],[-118.42772,33.94612],[-118.42773,33.94621],[-118.42772,33.94621],[-118.42772,33.94621],[-118.4277,33.94621],[-118.4277,33.94621],[-118.42773,33.94619],[-118.42772,33.94618],[-118.42772,33.94618],[-118.4277,33.94625],[-118.4277,33.94625],[-118.4277,33.94625],[-118.42756,33.9463],[-118.42756,33.9463],[-118.42756,33.94631],[-118.42755,33.94631],[-118.42755,33.94631],[-118.42752,33.94631],[-118.42751,33.94631],[-118.42751,33.94631],[-118.42736,33.94633],[-118.42735,33.94633],[-118.42735,33.94633],[-118.42732,33.94633],[-118.42731,33.94633],[-118.42731,33.94633],[-118.42728,33.94633],[-118.42727,33.94633],[-118.42727,33.94633],[-118.42724,33.94633],[-118.42722,33.94633],[-118.42722,33.94633],[-118.42708,33.94633],[-118.42708,33.94633],[-118.42708,33.94633],[-118.42693,33.94638],[-118.42692,33.94638],[-118.42692,33.94638],[-118.42689,33.94638],[-118.42688,33.94638],[-118.42688,33.94638],[-118.42669,33.9464],[-118.42669,33.9464],[-118.42669,33.9464],[-118.42641,33.9464],[-118.42641,33.9464],[-118.42641,33.9464],[-118.42635,33.9464],[-118.42635,33.9464],[-118.42635,33.9464],[-118.42631,33.9464],[-118.42631,33.9464],[-118.42631,33.9464],[-118.42624,33.94643],[-118.42612,33.94647],[-118.42611,33.94646],[-118.42611,33.94646],[-118.426,33.94648],[-118.42601,33.94649],[-118.42592,33.94648],[-118.42592,33.94649],[-118.42592,33.94649],[-118.42586,33.94651],[-118.42585,33.94651],[-118.42585,33.94651],[-118.42582,33.94653],[-118.42582,33.94653],[-118.42568,33.94648],[-118.42568,33.94649],[-118.42568,33.94649],[-118.42558,33.94651],[-118.42558,33.94651],[-118.4255,33.94651],[-118.42549,33.94651],[-118.42549,33.94651],[-118.42547,33.94653],[-118.42546,33.94653],[-118.42546,33.94653],[-118.42515,33.94651],[-118.42515,33.94651],[-118.42515,33.94651],[-118.42509,33.94653],[-118.42508,33.94653],[-118.42508,33.94653],[-118.42498,33.94655],[-118.42498,33.94656],[-118.42498,33.94656],[-118.42491,33.94658],[-118.42491,33.94658],[-118.42491,33.94658],[-118.42481,33.94658],[-118.42481,33.94658],[-118.42481,33.94658],[-118.42471,33.9466],[-118.42472,33.94659],[-118.42472,33.94659],[-118.42463,33.94664],[-118.42463,33.94664],[-118.42455,33.94664],[-118.42455,33.94664],[-118.42455,33.94664],[-118.4245,33.94664],[-118.42451,33.94664],[-118.42451,33.94664],[-118.42438,33.94664],[-118.42438,33.94664],[-118.42438,33.94664],[-118.42431,33.94666],[-118.42431,33.94666],[-118.42431,33.94666],[-118.42422,33.94666],[-118.42422,33.94666],[-118.42422,33.94666],[-118.42417,33.94664],[-118.42416,33.94664],[-118.42416,33.94664],[-118.4239,33.94672],[-118.42372,33.94672],[-118.42371,33.94673],[-118.42371,33.94673],[-118.42362,33.94672],[-118.42362,33.94673],[-118.42362,33.94673],[-118.42354,33.94672],[-118.4232,33.94675],[-118.4232,33.94675],[-118.42312,33.94677],[-118.4231,33.94676],[-118.4231,33.94676],[-118.42303,33.94677],[-118.42303,33.94677],[-118.42247,33.94683],[-118.42246,33.94683],[-118.42246,33.94683],[-118.42215,33.94687],[-118.42215,33.94687],[-118.42207,33.94685],[-118.42206,33.94686],[-118.42206,33.94686],[-118.42188,33.94687],[-118.42189,33.94687],[-118.42189,33.94687],[-118.42176,33.9469],[-118.42176,33.94689],[-118.42176,33.94689],[-118.42166,33.94694],[-118.42165,33.94694],[-118.42165,33.94694],[-118.42156,33.94692],[-118.42156,33.94692],[-118.42156,33.94692],[-118.42118,33.94692],[-118.42117,33.94692],[-118.42117,33.94692],[-118.42106,33.94696],[-118.42104,33.94696],[-118.42104,33.94696],[-118.42099,33.94699],[-118.42099,33.94699],[-118.42099,33.94699],[-118.4209,33.94699],[-118.4209,33.94699],[-118.4209,33.94699],[-118.42082,33.94699],[-118.42082,33.94699],[-118.42082,33.94699],[-118.42071,33.947],[-118.4207,33.947],[-118.4207,33.947],[-118.42062,33.94704],[-118.42062,33.94704],[-118.42062,33.94704],[-118.42051,33.94704],[-118.42051,33.94704],[-118.42043,33.94704],[-118.42043,33.94704],[-118.42043,33.94704],[-118.42034,33.94707],[-118.42034,33.94707],[-118.42034,33.94707],[-118.42026,33.94714],[-118.42026,33.94714],[-118.42026,33.94714],[-118.41978,33.94709],[-118.41979,33.94709],[-118.41979,33.94709],[-118.41973,33.94711],[-118.41971,33.94711],[-118.41971,33.94711],[-118.41961,33.94711],[-118.41961,33.94711],[-118.4195,33.94714],[-118.4195,33.94714],[-118.4195,33.94714],[-118.41942,33.94714],[-118.41941,33.94714],[-118.41941,33.94714],[-118.41932,33.94714],[-118.41931,33.94714],[-118.41931,33.94714],[-118.41922,33.94717],[-118.41923,33.94717],[-118.41923,33.94717],[-118.41914,33.94717],[-118.41914,33.94717],[-118.41914,33.94717],[-118.41904,33.94717],[-118.41903,33.94717],[-118.41903,33.94717],[-118.41893,33.94717],[-118.41893,33.94717],[-118.41893,33.94717],[-118.41876,33.94719],[-118.41876,33.9472],[-118.41876,33.9472],[-118.41867,33.94722],[-118.41867,33.94722],[-118.41859,33.94724],[-118.41858,33.94724],[-118.41858,33.94724],[-118.41837,33.94724],[-118.41837,33.94724],[-118.41837,33.94724],[-118.41828,33.94726],[-118.41809,33.94726],[-118.41808,33.94727],[-118.41808,33.94727],[-118.418,33.94728],[-118.418,33.94728],[-118.418,33.94728],[-118.41792,33.94728],[-118.41791,33.94728],[-118.41791,33.94728],[-118.41771,33.94731],[-118.4177,33.9473],[-118.4177,33.9473],[-118.4176,33.94733],[-118.4176,33.94732],[-118.4176,33.94732],[-118.41702,33.94739],[-118.41701,33.94739],[-118.41694,33.94736],[-118.41694,33.94736],[-118.41687,33.94739],[-118.41687,33.94739],[-118.41687,33.94739],[-118.41671,33.94739],[-118.41671,33.94739],[-118.41671,33.94739],[-118.41665,33.94742],[-118.41647,33.94746],[-118.41648,33.94745],[-118.41648,33.94745],[-118.41638,33.94748],[-118.41637,33.94747],[-118.41637,33.94747],[-118.41625,33.94748],[-118.41625,33.94748],[-118.41617,33.9475],[-118.41615,33.9475],[-118.41615,33.9475],[-118.41605,33.94752],[-118.41594,33.94748],[-118.41594,33.94747],[-118.41594,33.94747],[-118.41586,33.94751],[-118.41585,33.94752],[-118.41585,33.94752],[-118.41575,33.94751],[-118.41575,33.94751],[-118.41534,33.94756],[-118.41534,33.94756],[-118.41534,33.94756],[-118.41513,33.94756],[-118.41512,33.94756],[-118.41504,33.94758],[-118.41504,33.94758],[-118.41496,33.94761],[-118.41495,33.9476],[-118.41495,33.9476],[-118.41485,33.94761],[-118.41485,33.9476],[-118.41468,33.94763],[-118.41468,33.94763],[-118.41468,33.94763],[-118.41444,33.94765],[-118.41444,33.94765],[-118.41444,33.94765],[-118.41425,33.94767],[-118.41425,33.94767],[-118.41425,33.94767],[-118.41413,33.94767],[-118.41408,33.94773],[-118.41355,33.94788],[-118.41353,33.94788],[-118.41353,33.94788],[-118.41304,33.94795],[-118.41305,33.94795],[-118.41305,33.94795],[-118.41294,33.94795],[-118.41293,33.94795],[-118.41293,33.94795],[-118.41283,33.94795],[-118.41283,33.94795],[-118.41283,33.94795],[-118.41273,33.94797],[-118.41272,33.94796],[-118.41272,33.94796],[-118.41262,33.94799],[-118.41262,33.94799],[-118.41242,33.94803],[-118.41242,33.94803],[-118.41178,33.94807],[-118.41177,33.94808],[-118.41177,33.94808],[-118.4117,33.94807],[-118.41169,33.94808],[-118.41169,33.94808],[-118.41158,33.94807],[-118.41159,33.94808],[-118.41159,33.94808],[-118.4115,33.94807],[-118.4115,33.94808],[-118.4115,33.94808],[-118.41094,33.94814],[-118.41094,33.94814],[-118.41085,33.94814],[-118.41085,33.94814],[-118.41073,33.94817],[-118.41073,33.94816],[-118.41073,33.94816],[-118.41064,33.94819],[-118.41064,33.94818],[-118.41064,33.94818],[-118.41053,33.9482],[-118.41053,33.94821],[-118.41053,33.94821],[-118.41043,33.9482],[-118.41043,33.94821],[-118.41043,33.94821],[-118.41032,33.9482],[-118.41032,33.94821],[-118.41032,33.94821],[-118.4098,33.94824],[-118.4098,33.94824],[-118.40971,33.94827],[-118.4097,33.94827],[-118.4097,33.94827],[-118.40959,33.94827],[-118.40959,33.94827],[-118.40952,33.94829],[-118.40953,33.94829],[-118.40953,33.94829],[-118.40944,33.94831],[-118.40944,33.94831],[-118.40944,33.94831],[-118.40931,33.94831],[-118.40916,33.94836],[-118.40916,33.94836],[-118.40916,33.94836],[-118.40906,33.94836],[-118.40906,33.94836],[-118.40898,33.94834],[-118.40897,33.94834],[-118.40897,33.94834],[-118.40886,33.94836],[-118.40886,33.94836],[-118.40886,33.94836],[-118.40878,33.94837],[-118.40877,33.94837],[-118.40877,33.94837],[-118.40865,33.94837],[-118.40864,33.94837],[-118.40864,33.94837],[-118.40864,33.94837],[-118.40819,33.94842],[-118.4082,33.94842],[-118.4082,33.94842],[-118.40811,33.94842],[-118.40811,33.94842],[-118.40811,33.94842],[-118.40802,33.94846],[-118.40803,33.94846],[-118.40803,33.94846],[-118.40793,33.94846],[-118.40791,33.94846],[-118.40791,33.94846],[-118.40781,33.94849],[-118.40781,33.94849],[-118.40781,33.94849],[-118.40769,33.94849],[-118.40768,33.94849],[-118.40768,33.94849],[-118.4076,33.94849],[-118.4076,33.94849],[-118.4076,33.94849],[-118.40738,33.94851],[-118.40738,33.94851],[-118.40738,33.94851],[-118.4073,33.94853],[-118.4073,33.94852],[-118.4073,33.94852],[-118.40721,33.94853],[-118.40682,33.94859],[-118.40683,33.94859],[-118.40683,33.94859],[-118.40673,33.94859],[-118.40674,33.94859],[-118.40674,33.94859],[-118.40665,33.94859],[-118.40665,33.94859],[-118.40657,33.94857],[-118.40657,33.94857],[-118.40657,33.94857],[-118.40644,33.94857],[-118.40644,33.94857],[-118.40644,33.94857],[-118.40624,33.94861],[-118.40624,33.94861],[-118.40613,33.94861],[-118.40614,33.94862],[-118.40614,33.94862],[-118.40608,33.94866],[-118.40607,33.94865],[-118.40607,33.94865],[-118.40596,33.94866],[-118.40597,33.94865],[-118.40597,33.94865],[-118.40588,33.94866],[-118.40588,33.94865],[-118.40588,33.94865],[-118.4058,33.94866],[-118.4058,33.94865],[-118.4058,33.94865],[-118.40571,33.94868],[-118.40571,33.94867],[-118.40563,33.94866],[-118.40562,33.94865],[-118.40562,33.94865],[-118.40545,33.9487],[-118.40526,33.94874],[-118.40525,33.94874],[-118.40525,33.94874],[-118.40522,33.94872],[-118.40521,33.94872],[-118.40521,33.94872],[-118.40511,33.94872],[-118.40511,33.94872],[-118.40511,33.94872],[-118.40504,33.94874],[-118.40504,33.94874],[-118.40504,33.94874],[-118.40498,33.94876],[-118.40498,33.94877],[-118.40498,33.94877],[-118.40491,33.94877],[-118.40491,33.94877],[-118.40483,33.94876],[-118.40482,33.94877],[-118.40482,33.94877],[-118.40472,33.94878],[-118.40472,33.94879],[-118.40472,33.94879],[-118.40455,33.94881],[-118.40455,33.9488],[-118.40455,33.9488],[-118.40442,33.94883],[-118.40442,33.94883],[-118.40435,33.94881],[-118.40435,33.9488],[-118.40435,33.9488],[-118.4043,33.94883],[-118.4043,33.94883],[-118.40395,33.94888],[-118.40395,33.94887],[-118.40395,33.94887],[-118.40389,33.94889],[-118.40388,33.94889],[-118.40388,33.94889],[-118.40381,33.94891],[-118.40379,33.94892],[-118.40379,33.94892],[-118.40371,33.94888],[-118.40371,33.94887],[-118.40371,33.94887],[-118.40362,33.94889],[-118.40362,33.94889],[-118.40362,33.94889],[-118.40357,33.94889],[-118.40356,33.94889],[-118.40356,33.94889],[-118.40348,33.94891],[-118.40348,33.94892],[-118.40348,33.94892],[-118.40341,33.94893],[-118.40334,33.94893],[-118.40335,33.94893],[-118.40335,33.94893],[-118.4032,33.94896],[-118.40319,33.94895],[-118.40319,33.94895],[-118.40312,33.94896],[-118.40311,33.94895],[-118.40311,33.94895],[-118.40305,33.94896],[-118.40305,33.94895],[-118.40305,33.94895],[-118.40298,33.94896],[-118.40298,33.94895],[-118.40292,33.94896],[-118.40292,33.94895],[-118.40292,33.94895],[-118.40284,33.94896],[-118.40283,33.94895],[-118.40283,33.94895],[-118.40274,33.94898],[-118.40275,33.94898],[-118.40275,33.94898],[-118.40269,33.94898],[-118.40268,33.94898],[-118.40268,33.94898],[-118.4026,33.949],[-118.40259,33.949],[-118.40259,33.949],[-118.40257,33.949],[-118.40258,33.949],[-118.40258,33.949],[-118.40256,33.94898],[-118.40255,33.94898],[-118.40255,33.94898],[-118.40247,33.94898],[-118.40246,33.94898],[-118.40246,33.94898],[-118.4024,33.949],[-118.4024,33.949],[-118.4024,33.949],[-118.40229,33.94905],[-118.40229,33.94905],[-118.40229,33.94905],[-118.40229,33.94905],[-118.40229,33.94905],[-118.40229,33.94905],[-118.40233,33.94905],[-118.40233,33.94905],[-118.40233,33.94905],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40229,33.94905],[-118.40229,33.94905],[-118.40229,33.94905],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94905],[-118.40232,33.94905],[-118.40232,33.94905],[-118.40229,33.94905],[-118.40229,33.94905],[-118.40229,33.94905],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94905],[-118.40233,33.94905],[-118.40233,33.94905],[-118.40232,33.94905],[-118.40232,33.94905],[-118.40232,33.94905],[-118.40232,33.94905],[-118.40232,33.94905],[-118.40232,33.94905],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40229,33.94902],[-118.40229,33.94902],[-118.40229,33.94902],[-118.40229,33.949],[-118.40229,33.949],[-118.40232,33.949],[-118.40232,33.949],[-118.40232,33.949],[-118.40229,33.94902],[-118.40229,33.94902],[-118.40229,33.94902],[-118.40229,33.949],[-118.40229,33.949],[-118.40229,33.949],[-118.40229,33.949],[-118.40229,33.949],[-118.40229,33.949],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94905],[-118.40232,33.94905],[-118.40233,33.94905],[-118.40233,33.94905],[-118.40233,33.94905],[-118.40232,33.94905],[-118.40232,33.94905],[-118.40232,33.94905],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40229,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40229,33.94902],[-118.40229,33.94902],[-118.40229,33.94902],[-118.40229,33.94902],[-118.40229,33.94902],[-118.40229,33.94902],[-118.40228,33.94902],[-118.40228,33.94902],[-118.40228,33.94902],[-118.40232,33.949],[-118.40232,33.949],[-118.40232,33.949],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.949],[-118.40232,33.949],[-118.40232,33.949],[-118.40232,33.949],[-118.40232,33.949],[-118.40232,33.949],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40229,33.94902],[-118.40229,33.94902],[-118.40229,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.949],[-118.40232,33.949],[-118.40232,33.949],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40233,33.94902],[-118.40233,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40228,33.94902],[-118.40228,33.94902],[-118.40228,33.94902],[-118.40229,33.94902],[-118.40229,33.94902],[-118.40229,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40232,33.94902],[-118.40229,33.94905],[-118.40229,33.94905],[-118.40229,33.94905],[-118.40229,33.94905],[-118.40229,33.94905],[-118.40229,33.94905],[-118.40229,33.94905],[-118.40228,33.94905],[-118.40228,33.94905],[-118.40228,33.94905],[-118.40228,33.94906],[-118.40228,33.94906],[-118.40228,33.94906],[-118.40225,33.94906],[-118.40225,33.94906],[-118.40225,33.94906],[-118.40221,33.94905],[-118.4022,33.94905],[-118.4022,33.94905],[-118.40217,33.94905],[-118.40216,33.94905],[-118.40216,33.94905],[-118.40205,33.94905],[-118.40205,33.94905],[-118.402,33.94906],[-118.40199,33.94906],[-118.40199,33.94906],[-118.40197,33.94908],[-118.40198,33.94908],[-118.40198,33.94908],[-118.40197,33.94908],[-118.40198,33.94908],[-118.40198,33.94908],[-118.40193,33.94908],[-118.40193,33.94908],[-118.40193,33.94908],[-118.40189,33.94915],[-118.40189,33.94915],[-118.40189,33.94915],[-118.40183,33.94922],[-118.40183,33.94922],[-118.40176,33.9493],[-118.40176,33.9493],[-118.40176,33.9493],[-118.40176,33.94932],[-118.40176,33.94933],[-118.40176,33.94933],[-118.40169,33.94939],[-118.40169,33.94938],[-118.40169,33.94938],[-118.40168,33.94942],[-118.40168,33.94943],[-118.40168,33.94943],[-118.40165,33.94947],[-118.40165,33.94948],[-118.40165,33.94948],[-118.40168,33.94949],[-118.40168,33.94949],[-118.40169,33.94962],[-118.40169,33.94962],[-118.40169,33.94962],[-118.40169,33.94971],[-118.40169,33.94971],[-118.40169,33.94971],[-118.40169,33.94975],[-118.40169,33.94974],[-118.40169,33.94974],[-118.40169,33.94979],[-118.40169,33.94979],[-118.40169,33.94979],[-118.40175,33.94996],[-118.40173,33.94997],[-118.40173,33.94997],[-118.40172,33.95001],[-118.40172,33.95001],[-118.40172,33.95001],[-118.40175,33.95003],[-118.40173,33.95002],[-118.40173,33.95002],[-118.40175,33.95005],[-118.40173,33.95005],[-118.40173,33.95005],[-118.40184,33.95008],[-118.40185,33.95007],[-118.40185,33.95007],[-118.40187,33.95011],[-118.40186,33.95012],[-118.40189,33.95013],[-118.40189,33.95014],[-118.40189,33.95014],[-118.40193,33.95018],[-118.40193,33.95018],[-118.40205,33.95013],[-118.40206,33.95014],[-118.40206,33.95014],[-118.40208,33.95011],[-118.40208,33.95012],[-118.40208,33.95012],[-118.40215,33.95009],[-118.40215,33.95009],[-118.40215,33.95009],[-118.40221,33.95009],[-118.4022,33.95009],[-118.4022,33.95009],[-118.40225,33.95009],[-118.40225,33.95009],[-118.40232,33.95009],[-118.40232,33.95009],[-118.40232,33.95009],[-118.40233,33.95011],[-118.40233,33.95012],[-118.40233,33.95012],[-118.40243,33.95011],[-118.40242,33.95012],[-118.40242,33.95012],[-118.40245,33.95011],[-118.40245,33.95012],[-118.40245,33.95012],[-118.40245,33.95009],[-118.40245,33.95009],[-118.40245,33.95008],[-118.40245,33.95007],[-118.40245,33.95007],[-118.40247,33.95009],[-118.40246,33.95009],[-118.40247,33.95011],[-118.40246,33.95012],[-118.40246,33.95012],[-118.40247,33.95013],[-118.40246,33.95014],[-118.40246,33.95014],[-118.40249,33.95013],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40249,33.95011],[-118.40245,33.95011],[-118.40245,33.95012],[-118.40245,33.95012],[-118.40245,33.95012],[-118.40249,33.95012],[-118.40249,33.95012],[-118.40247,33.95011],[-118.40246,33.95012],[-118.40246,33.95012],[-118.40247,33.95011],[-118.40246,33.95012],[-118.40249,33.95011],[-118.40249,33.95012],[-118.40249,33.95012],[-118.40247,33.95011],[-118.40246,33.95012],[-118.40246,33.95012],[-118.40247,33.95011],[-118.40246,33.95012],[-118.40246,33.95012],[-118.40247,33.95011],[-118.40247,33.95011],[-118.40249,33.95013],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40247,33.95013],[-118.40246,33.95014],[-118.40246,33.95014],[-118.40249,33.95016],[-118.40249,33.95016],[-118.40249,33.95016],[-118.40249,33.95016],[-118.40249,33.95016],[-118.40249,33.95016],[-118.40247,33.95013],[-118.40246,33.95014],[-118.40246,33.95014],[-118.40247,33.95013],[-118.40246,33.95014],[-118.40246,33.95014],[-118.40247,33.95013],[-118.40246,33.95014],[-118.40246,33.95014],[-118.40246,33.95014],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40252,33.95011],[-118.4025,33.95012],[-118.4025,33.95012],[-118.40249,33.95012],[-118.40249,33.95012],[-118.40249,33.95013],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40249,33.95016],[-118.40249,33.95016],[-118.40249,33.95016],[-118.40252,33.95018],[-118.4025,33.95017],[-118.4025,33.95017],[-118.40249,33.95016],[-118.40249,33.95016],[-118.40249,33.95016],[-118.40252,33.95013],[-118.4025,33.95014],[-118.4025,33.95014],[-118.40249,33.95013],[-118.40249,33.95013],[-118.40249,33.95013],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40247,33.95011],[-118.40246,33.95012],[-118.40246,33.95012],[-118.40249,33.95011],[-118.40249,33.95012],[-118.40249,33.95012],[-118.40247,33.95011],[-118.40246,33.95012],[-118.40246,33.95012],[-118.40249,33.95011],[-118.40249,33.95012],[-118.40249,33.95012],[-118.40252,33.95013],[-118.4025,33.95014],[-118.4025,33.95014],[-118.40247,33.95011],[-118.40246,33.95012],[-118.40246,33.95012],[-118.40247,33.95009],[-118.40246,33.95009],[-118.40246,33.95009],[-118.40247,33.95009],[-118.40246,33.95009],[-118.40246,33.95009],[-118.40249,33.95011],[-118.40249,33.95012],[-118.40249,33.95012],[-118.40247,33.95011],[-118.40246,33.95012],[-118.40246,33.95012],[-118.40252,33.95013],[-118.4025,33.95014],[-118.40252,33.95013],[-118.4025,33.95014],[-118.4025,33.95014],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40252,33.95011],[-118.4025,33.95012],[-118.40249,33.95013],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40252,33.95013],[-118.4025,33.95014],[-118.4025,33.95014],[-118.4025,33.95014],[-118.4025,33.95014],[-118.40249,33.95013],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40247,33.95013],[-118.40246,33.95014],[-118.40246,33.95014],[-118.40249,33.95011],[-118.40249,33.95012],[-118.40249,33.95012],[-118.40249,33.95011],[-118.40249,33.95012],[-118.40249,33.95012],[-118.40249,33.95011],[-118.40249,33.95012],[-118.40249,33.95012],[-118.40249,33.95009],[-118.40249,33.95009],[-118.40249,33.95009],[-118.40249,33.95011],[-118.40249,33.95012],[-118.40249,33.95012],[-118.40247,33.95016],[-118.40246,33.95016],[-118.40246,33.95016],[-118.40247,33.95013],[-118.40246,33.95014],[-118.40246,33.95014],[-118.40249,33.95011],[-118.40249,33.95012],[-118.40249,33.95012],[-118.40247,33.95013],[-118.40246,33.95014],[-118.40246,33.95014],[-118.40249,33.95016],[-118.40249,33.95016],[-118.40249,33.95016],[-118.40247,33.95013],[-118.40246,33.95014],[-118.40246,33.95014],[-118.40247,33.95013],[-118.40249,33.95013],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40249,33.95013],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40249,33.95013],[-118.40249,33.95013],[-118.40247,33.95016],[-118.40246,33.95016],[-118.40246,33.95016],[-118.40249,33.95014],[-118.40249,33.95014],[-118.40247,33.95013],[-118.40247,33.95013],[-118.40245,33.95014],[-118.40245,33.95014],[-118.40246,33.95014],[-118.40246,33.95014],[-118.40252,33.95011],[-118.4025,33.95012],[-118.4025,33.95012],[-118.40256,33.95011],[-118.40255,33.95012],[-118.40255,33.95012],[-118.40269,33.95009],[-118.40268,33.95009],[-118.40268,33.95009],[-118.40284,33.95005],[-118.40283,33.95005],[-118.40283,33.95005],[-118.40301,33.95005],[-118.40301,33.95005],[-118.40301,33.95005],[-118.40396,33.95001],[-118.40396,33.95001],[-118.40396,33.95001],[-118.40396,33.95001],[-118.40487,33.94986],[-118.40487,33.9499],[-118.40487,33.9499],[-118.40521,33.94981],[-118.40521,33.94985],[-118.40521,33.94985],[-118.4056,33.94981],[-118.40561,33.9498],[-118.40561,33.9498],[-118.40633,33.94972],[-118.40635,33.94971],[-118.40635,33.94971],[-118.4065,33.94972],[-118.40652,33.94971],[-118.40652,33.94971],[-118.40751,33.94963],[-118.4075,33.94962],[-118.4075,33.94962],[-118.40846,33.94954],[-118.40841,33.94952],[-118.40841,33.94952],[-118.40891,33.94949],[-118.40893,33.94948],[-118.40893,33.94948],[-118.40947,33.94945],[-118.40944,33.94943],[-118.41003,33.94936],[-118.41003,33.94936],[-118.4107,33.94924],[-118.41171,33.94917],[-118.41167,33.94915],[-118.41167,33.94915],[-118.41188,33.94917],[-118.41185,33.94915],[-118.41185,33.94915],[-118.41272,33.94908],[-118.41272,33.94908],[-118.41272,33.94908],[-118.41316,33.94906],[-118.41316,33.94906],[-118.41384,33.94894],[-118.41385,33.94896],[-118.41385,33.94896],[-118.41479,33.94885],[-118.41476,33.94887],[-118.41476,33.94887],[-118.4153,33.94881],[-118.41534,33.94882],[-118.41534,33.94882],[-118.41608,33.94876],[-118.41608,33.94873],[-118.41608,33.94873],[-118.4176,33.94853],[-118.41757,33.94855],[-118.41757,33.94855],[-118.41939,33.94835],[-118.41934,33.94836],[-118.41934,33.94836],[-118.41989,33.9483],[-118.41991,33.94831],[-118.41991,33.94831],[-118.42079,33.94821],[-118.42079,33.94821],[-118.42079,33.94821],[-118.4218,33.94813],[-118.4218,33.94813],[-118.4223,33.94807],[-118.42232,33.94803],[-118.42232,33.94803],[-118.42232,33.94803],[-118.45316,33.9444],[-118.45375,33.94437],[-118.45379,33.94436],[-118.45481,33.94427],[-118.45482,33.94431],[-118.45482,33.94431],[-118.4561,33.94409],[-118.45613,33.94408],[-118.45613,33.94408],[-118.45694,33.944],[-118.45694,33.94398],[-118.45694,33.94398],[-118.45801,33.94386],[-118.45802,33.94389],[-118.45802,33.94389],[-118.45902,33.94373],[-118.459,33.94375],[-118.459,33.94375],[-118.46204,33.94359],[-118.46209,33.94356],[-118.46209,33.94356],[-118.46272,33.9435],[-118.46272,33.94347],[-118.46272,33.94347],[-118.46378,33.94336],[-118.4638,33.94338],[-118.4638,33.94338],[-118.46524,33.94322],[-118.46523,33.94324],[-118.46523,33.94324],[-118.46586,33.94318],[-118.46586,33.94315],[-118.46586,33.94315],[-118.46698,33.94322],[-118.46695,33.94324],[-118.46695,33.94324],[-118.46695,33.94324],[-118.46695,33.94324],[-118.4899,33.9429],[-118.48989,33.94287],[-118.48989,33.94287]]}},{\"type\":\"Feature\",\"geometry\":{\"type\":\"LineString\",\"coordinates\":[[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435],[-118.22571,34.25435]]}},{\"type\":\"Feature\",\"geometry\":{\"type\":\"LineString\",\"coordinates\":[[-118.36636,33.69768],[-118.36636,33.69768],[-118.36636,33.69768],[-118.36636,33.69768],[-118.36636,33.69768],[-118.36636,33.69768],[-118.36636,33.69768],[-118.36636,33.69768],[-118.36636,33.69768],[-118.36636,33.69768],[-118.39394,33.7137],[-118.39394,33.7137],[-118.47286,33.76016],[-118.47286,33.76016],[-118.58133,33.82346],[-118.58133,33.82346],[-118.58133,33.82346],[-118.58133,33.82346],[-118.58133,33.82346],[-118.58133,33.82346],[-118.58133,33.82346],[-118.58133,33.82346],[-118.58133,33.82346],[-118.58133,33.82346],[-118.58133,33.82346],[-118.58133,33.82346],[-118.58133,33.82346],[-118.58133,33.82346],[-118.58133,33.82346],[-118.58133,33.82346],[-118.58133,33.82346],[-118.83552,33.97142],[-118.83552,33.97142],[-118.83552,33.97142],[-119.06293,34.10312],[-119.06293,34.10312],[-119.06293,34.10312],[-119.06293,34.10312],[-119.06293,34.10312],[-119.06293,34.10312],[-119.06293,34.10312],[-119.06293,34.10312],[-119.13328,34.14374],[-119.13328,34.14374],[-119.13328,34.14374],[-119.13328,34.14374],[-119.13328,34.14374],[-119.13328,34.14374],[-119.13328,34.14374],[-119.13328,34.14374],[-119.13328,34.14374],[-119.14073,34.14798],[-119.14073,34.14798],[-119.14073,34.14798],[-119.14073,34.14798],[-119.14073,34.14798],[-119.14073,34.14798],[-119.14073,34.14798],[-119.14073,34.14798],[-119.14073,34.14798],[-119.14073,34.14798],[-119.15257,34.15482],[-119.15257,34.15482],[-119.15257,34.15482],[-119.15257,34.15482],[-119.15257,34.15482],[-119.15257,34.15482],[-119.15474,34.15608],[-119.15474,34.15608],[-119.15474,34.15608],[-119.15474,34.15608],[-119.15474,34.15608],[-119.15777,34.15784],[-119.15777,34.15784],[-119.15777,34.15784],[-119.15777,34.15784],[-119.15777,34.15784],[-119.15777,34.15784],[-119.15777,34.15784],[-119.15777,34.15784],[-119.15777,34.15784],[-119.15777,34.15784],[-119.15777,34.15784],[-119.15777,34.15784],[-119.15777,34.15784],[-119.15777,34.15784],[-119.15777,34.15784],[-119.17745,34.16917],[-119.17745,34.16917],[-119.17745,34.16917],[-119.18312,34.17242],[-119.18312,34.17242],[-119.18312,34.17242],[-119.18312,34.17242],[-119.18312,34.17242],[-119.18312,34.17242],[-119.18312,34.17242],[-119.18312,34.17242],[-119.18312,34.17242],[-119.18312,34.17242],[-119.18312,34.17242],[-119.18312,34.17242],[-119.18312,34.17242],[-119.18312,34.17242],[-119.18312,34.17242],[-119.18312,34.17242],[-119.18312,34.17242],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.21883,34.19304],[-119.23137,34.20026],[-119.23137,34.20026],[-119.23137,34.20026],[-119.23137,34.20026],[-119.23137,34.20026],[-119.23137,34.20026],[-119.23137,34.20026],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295],[-119.23611,34.20295]]}},{\"type\":\"Feature\",\"geometry\":{\"type\":\"LineString\",\"coordinates\":[[-118.43374,33.9453],[-118.43373,33.94531],[-118.43373,33.94531],[-118.43378,33.94537],[-118.43378,33.9455],[-118.43378,33.9455],[-118.43378,33.9455],[-118.43374,33.94561],[-118.43373,33.94561],[-118.43371,33.94561],[-118.4337,33.94561],[-118.43367,33.94565],[-118.43366,33.94565],[-118.43366,33.94565],[-118.43364,33.94565],[-118.43365,33.94565],[-118.43365,33.94565],[-118.43364,33.94565],[-118.43365,33.94565],[-118.43365,33.94565],[-118.43367,33.94567],[-118.43367,33.94567],[-118.43363,33.94567],[-118.43362,33.94567],[-118.43362,33.94567],[-118.4336,33.94569],[-118.4336,33.94569],[-118.4336,33.94569],[-118.43356,33.94569],[-118.43356,33.94569],[-118.43298,33.94584],[-118.43297,33.94585],[-118.43297,33.94585],[-118.43269,33.94587],[-118.43267,33.94587],[-118.43267,33.94587],[-118.43249,33.94589],[-118.43249,33.94589],[-118.43236,33.94589],[-118.43236,33.94589],[-118.43236,33.94589],[-118.43222,33.94591],[-118.43216,33.9459],[-118.43216,33.9459],[-118.43206,33.94591],[-118.43206,33.9459],[-118.43206,33.9459],[-118.43196,33.94591],[-118.43194,33.9459],[-118.43194,33.9459],[-118.43182,33.94591],[-118.43182,33.9459],[-118.43182,33.9459],[-118.43169,33.94593],[-118.43169,33.94593],[-118.43169,33.94593],[-118.43112,33.94597],[-118.43112,33.94597],[-118.43112,33.94597],[-118.43101,33.94599],[-118.431,33.946],[-118.431,33.946],[-118.43088,33.94599],[-118.43087,33.946],[-118.43087,33.946],[-118.40294,33.94954],[-118.40293,33.94953],[-118.40293,33.94953],[-118.40293,33.94958],[-118.40293,33.94958],[-118.4029,33.94969],[-118.4029,33.94969],[-118.40289,33.94974],[-118.40289,33.94974],[-118.40292,33.94981],[-118.40292,33.94981],[-118.40292,33.94981],[-118.40339,33.95001],[-118.40339,33.95001],[-118.40339,33.95001],[-118.40341,33.94999],[-118.40341,33.94999],[-118.40341,33.94999],[-118.40386,33.94999],[-118.40386,33.94999],[-118.40386,33.94999],[-118.40393,33.94996],[-118.40392,33.94997],[-118.40392,33.94997],[-118.40405,33.94992],[-118.40405,33.94992],[-118.40421,33.94992],[-118.40421,33.94992],[-118.40498,33.94988],[-118.40498,33.94988],[-118.40554,33.94986],[-118.40554,33.94986],[-118.40554,33.94986],[-118.40554,33.94986],[-118.4059,33.94985],[-118.4059,33.94985],[-118.40622,33.94977],[-118.40624,33.94976],[-118.40624,33.94976],[-118.40624,33.94976],[-118.40624,33.94976],[-118.40624,33.94976],[-118.40624,33.94976],[-118.41008,33.94931],[-118.41013,33.94934],[-118.41013,33.94934],[-118.41115,33.94922],[-118.41116,33.94924],[-118.41116,33.94924],[-118.41149,33.94922],[-118.4115,33.94924],[-118.4115,33.94924],[-118.41199,33.94913],[-118.41202,33.94915],[-118.41202,33.94915],[-118.41362,33.94899],[-118.41356,33.94896],[-118.41356,33.94896],[-118.41356,33.94896],[-118.41485,33.94881],[-118.41488,33.94882],[-118.41488,33.94882],[-118.41569,33.94876],[-118.41568,33.94873],[-118.41568,33.94873],[-118.41642,33.94867],[-118.41642,33.94864],[-118.41642,33.94864]]}},{\"type\":\"Feature\",\"geometry\":{\"type\":\"LineString\",\"coordinates\":[[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43016,33.831],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.43113,33.87639],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.44512,34.00648],[-118.45499,34.06642],[-118.45499,34.06642],[-118.45499,34.06642],[-118.45499,34.06642],[-118.45499,34.06642],[-118.45499,34.06642],[-118.45499,34.06642],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.45543,34.06888],[-118.46483,34.12479],[-118.46483,34.12479],[-118.46483,34.12479],[-118.46483,34.12479],[-118.46496,34.1255],[-118.46496,34.1255],[-118.46496,34.1255],[-118.46496,34.1255],[-118.46496,34.1255],[-118.46512,34.12656],[-118.46512,34.12656],[-118.46512,34.12656],[-118.46512,34.12656],[-118.46512,34.12656],[-118.46512,34.12656],[-118.46512,34.12656],[-118.46512,34.12656],[-118.46512,34.12656],[-118.46512,34.12656],[-118.46512,34.12656],[-118.46512,34.12656],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.4653,34.12761],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.47136,34.16371],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48034,34.21673],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48161,34.22415],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48532,34.24499],[-118.48867,34.26118],[-118.48867,34.26118],[-118.48867,34.26118],[-118.48867,34.26118],[-118.48867,34.26118],[-118.48867,34.26118],[-118.48867,34.26118],[-118.48867,34.26118],[-118.48867,34.26118],[-118.48867,34.26118],[-118.48867,34.26118],[-118.48867,34.26118],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.48898,34.26259],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4917,34.27524],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.4971,34.30123],[-118.50214,34.32576],[-118.50214,34.32576],[-118.50214,34.32576],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50229,34.32646],[-118.50323,34.33102],[-118.50323,34.33102],[-118.50323,34.33102],[-118.50323,34.33102],[-118.50323,34.33102],[-118.50323,34.33102],[-118.50323,34.33102],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.5042,34.33557],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50683,34.34848],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.50907,34.35928],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51078,34.36766],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51378,34.38226],[-118.51862,34.40583],[-118.51862,34.40583],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.51972,34.41138],[-118.52892,34.45587],[-118.52892,34.45587],[-118.52892,34.45587],[-118.52892,34.45587],[-118.52892,34.45587],[-118.52892,34.45587],[-118.52892,34.45587],[-118.52892,34.45587],[-118.52892,34.45587],[-118.52892,34.45587],[-118.52892,34.45587],[-118.52892,34.45587],[-118.52892,34.45587],[-118.52892,34.45587],[-118.52892,34.45587],[-118.5297,34.45967],[-118.5297,34.45967],[-118.5297,34.45967],[-118.5297,34.45967],[-118.5297,34.45967],[-118.5297,34.45967],[-118.5297,34.45967],[-118.5297,34.45967],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.52995,34.46104],[-118.5329,34.4751],[-118.5329,34.4751],[-118.5329,34.4751],[-118.5329,34.4751],[-118.5329,34.4751],[-118.5329,34.4751],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53315,34.47649],[-118.53682,34.494],[-118.53682,34.494],[-118.53682,34.494],[-118.53682,34.494],[-118.53682,34.494],[-118.53682,34.494],[-118.53682,34.494],[-118.53682,34.494],[-118.53682,34.494],[-118.53682,34.494],[-118.53682,34.494],[-118.53682,34.494],[-118.53682,34.494],[-118.53682,34.494],[-118.53682,34.494],[-118.53682,34.494],[-118.53682,34.494],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.53888,34.50391],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.54674,34.54184],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662],[-118.56234,34.61662]]}},{\"type\":\"Feature\",\"geometry\":{\"type\":\"LineString\",\"coordinates\":[[-118.38392,33.93812],[-118.38525,33.93929],[-118.3853,33.93928],[-118.3853,33.93928],[-118.38643,33.94034],[-118.38644,33.94035],[-118.38644,33.94035],[-118.3866,33.94052],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.38661,33.94054],[-118.57578,34.17251],[-118.57578,34.17251],[-118.57561,34.17297],[-118.57561,34.17297],[-118.57561,34.17297],[-118.57561,34.17297],[-118.45619,34.199],[-118.45619,34.199],[-118.45498,34.19897],[-118.45499,34.199],[-118.45499,34.199],[-118.45431,34.19893],[-118.4543,34.19895],[-118.4543,34.19895],[-118.45358,34.19897],[-118.45356,34.19895],[-118.45356,34.19895],[-118.45235,34.19888],[-118.45236,34.1989],[-118.45236,34.1989],[-118.45162,34.19888],[-118.45161,34.1989],[-118.45161,34.1989],[-118.45095,34.19893],[-118.45093,34.1989],[-118.45093,34.1989],[-118.44966,34.19888],[-118.44966,34.19888],[-118.44966,34.19888],[-118.44881,34.19881],[-118.44881,34.19881],[-118.44881,34.19881],[-118.44881,34.19881],[-118.44881,34.19881],[-118.43342,34.19867],[-118.43342,34.19867],[-118.43342,34.19867],[-118.43342,34.19867],[-118.43342,34.19867],[-118.41282,34.19844]]}},{\"type\":\"Feature\",\"geometry\":{\"type\":\"LineString\",\"coordinates\":[[-118.84598,34.26049],[-118.84598,34.26049],[-118.84598,34.26049],[-118.84598,34.26049],[-118.84598,34.26049],[-118.84598,34.26049],[-118.84598,34.26049],[-118.84598,34.26049],[-118.84598,34.26049],[-118.84598,34.26049],[-118.84598,34.26049],[-118.84598,34.26049],[-118.8441,34.25533],[-118.8441,34.25533],[-118.8441,34.25533],[-118.8441,34.25533],[-118.8441,34.25533],[-118.84375,34.25439],[-118.84375,34.25439],[-118.84375,34.25439],[-118.84375,34.25439],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.84343,34.25345],[-118.80323,34.14346],[-118.80323,34.14346],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.8029,34.14258],[-118.7982,34.13015],[-118.7982,34.13015],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.79786,34.12926],[-118.78824,34.10319],[-118.78824,34.10319],[-118.78824,34.10319],[-118.78749,34.10106],[-118.78749,34.10106],[-118.78749,34.10106],[-118.78749,34.10106],[-118.78716,34.10017],[-118.78716,34.10017],[-118.78716,34.10017],[-118.78716,34.10017],[-118.78716,34.10017],[-118.78716,34.10017],[-118.78716,34.10017],[-118.78716,34.10017],[-118.78716,34.10017],[-118.78716,34.10017],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.78575,34.09625],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349],[-118.75557,34.01349]]}},{\"type\":\"Feature\",\"geometry\":{\"type\":\"LineString\",\"coordinates\":[[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-117.96166,33.77541],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.02069,33.78473],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.07419,33.7925],[-118.25598,33.81839],[-118.25598,33.81839],[-118.25598,33.81839],[-118.25598,33.81839],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.25835,33.81876],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.36653,33.83432],[-118.50745,33.8513],[-118.50745,33.8513],[-118.50745,33.8513],[-118.50745,33.8513],[-118.50745,33.8513],[-118.50745,33.8513],[-118.50745,33.8513],[-118.50745,33.8513],[-118.50745,33.8513],[-118.50745,33.8513],[-118.50745,33.8513],[-118.52108,33.85251],[-118.52108,33.85251],[-118.52108,33.85251],[-118.52108,33.85251],[-118.52108,33.85251],[-118.52108,33.85251],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268],[-118.52359,33.85268]]}}]},\n {style: {'color': 'steelblue',\n 'opacity': 1.0}});\n geoJson.addTo(map);\n if (null) {\n map.setView.apply(map, null);\n } else {\n map.fitBounds(geoJson.getBounds());\n }\n };\n if (!document.getElementById('leaflet-css')) {\n $('<link>')\n .attr('rel', 'stylesheet')\n .attr('href', 'http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css')\n .attr('id', 'leaflet-css')\n .appendTo('head');\n }\n if (!window.leafletJsLoaded) {\n if (!window.leafletJsIsLoading) {\n window.leafletJsLoadedCallbacks = [createMap];\n window.leafletJsIsLoading = true;\n cachedScript('http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js')\n .done(function() {\n window.leafletJsIsLoading = false;\n window.leafletJsLoaded = true;\n _.each(window.leafletJsLoadedCallbacks, function(cb) { cb(); });\n window.leafletJsLoadedCallbacks = [];\n })\n .fail(function() { console.log('failed'); });\n } else {\n window.leafletJsLoadedCallbacks.push(createMap);\n }\n } else {\n createMap();\n }\n});\n</script>\n</div>","value":"#com.lemondronor.leaflet_gorilla.LeafletView{:geometries [[:line ([33.94393 -118.42745] [33.94398 -118.42745] [33.94398 -118.42744] [33.94398 -118.42744] [33.94398 -118.42744] [33.94402 -118.42742] [33.94402 -118.42742] [33.94402 -118.42742] [33.94427 -118.42745] [33.94427 -118.42744] [33.94427 -118.42744] [33.94432 -118.42746] [33.94432 -118.42747] [33.94432 -118.42747] [33.94449 -118.42753] [33.9445 -118.42752] [33.9445 -118.42752] [33.94456 -118.42757] [33.94456 -118.42757] [33.94456 -118.42753] [33.94455 -118.42752] [33.94455 -118.42752] [33.94458 -118.42756] [33.94458 -118.42755] [33.94462 -118.42755] [33.94462 -118.42755] [33.94469 -118.42756] [33.94468 -118.42755] [33.94468 -118.42755] [33.94473 -118.42753] [33.94473 -118.42752] [33.94473 -118.42752] [33.94477 -118.42757] [33.94477 -118.42757] [33.94481 -118.42757] [33.94481 -118.42757] [33.94486 -118.42756] [33.94486 -118.42755] [33.94488 -118.42753] [33.94488 -118.42752] [33.94488 -118.42752] [33.94493 -118.42757] [33.94496 -118.42757] [33.94496 -118.42757] [33.94496 -118.42757] [33.94501 -118.42757] [33.94501 -118.42757] [33.94552 -118.42766] [33.94552 -118.42765] [33.94552 -118.42765] [33.94552 -118.42764] [33.94552 -118.42764] [33.94552 -118.42764] [33.94552 -118.42766] [33.94552 -118.42765] [33.94552 -118.42765] [33.94565 -118.42764] [33.94572 -118.42768] [33.94572 -118.42768] [33.94572 -118.42768] [33.94574 -118.42768] [33.94574 -118.42768] [33.94574 -118.42768] [33.94576 -118.42768] [33.94576 -118.42768] [33.94576 -118.42768] [33.94579 -118.42773] [33.94578 -118.42772] [33.94578 -118.42772] [33.94587 -118.4277] [33.94587 -118.4277] [33.94587 -118.4277] [33.94591 -118.42773] [33.9459 -118.42772] [33.9459 -118.42772] [33.94596 -118.42773] [33.94595 -118.42772] [33.94595 -118.42772] [33.94597 -118.4277] [33.94597 -118.4277] [33.94597 -118.4277] [33.94602 -118.4277] [33.94613 -118.42773] [33.94612 -118.42772] [33.94612 -118.42772] [33.94621 -118.42773] [33.94621 -118.42772] [33.94621 -118.42772] [33.94621 -118.4277] [33.94621 -118.4277] [33.94619 -118.42773] [33.94618 -118.42772] [33.94618 -118.42772] [33.94625 -118.4277] [33.94625 -118.4277] [33.94625 -118.4277] [33.9463 -118.42756] [33.9463 -118.42756] [33.94631 -118.42756] [33.94631 -118.42755] [33.94631 -118.42755] [33.94631 -118.42752] [33.94631 -118.42751] [33.94631 -118.42751] [33.94633 -118.42736] [33.94633 -118.42735] [33.94633 -118.42735] [33.94633 -118.42732] [33.94633 -118.42731] [33.94633 -118.42731] [33.94633 -118.42728] [33.94633 -118.42727] [33.94633 -118.42727] [33.94633 -118.42724] [33.94633 -118.42722] [33.94633 -118.42722] [33.94633 -118.42708] [33.94633 -118.42708] [33.94633 -118.42708] [33.94638 -118.42693] [33.94638 -118.42692] [33.94638 -118.42692] [33.94638 -118.42689] [33.94638 -118.42688] [33.94638 -118.42688] [33.9464 -118.42669] [33.9464 -118.42669] [33.9464 -118.42669] [33.9464 -118.42641] [33.9464 -118.42641] [33.9464 -118.42641] [33.9464 -118.42635] [33.9464 -118.42635] [33.9464 -118.42635] [33.9464 -118.42631] [33.9464 -118.42631] [33.9464 -118.42631] [33.94643 -118.42624] [33.94647 -118.42612] [33.94646 -118.42611] [33.94646 -118.42611] [33.94648 -118.426] [33.94649 -118.42601] [33.94648 -118.42592] [33.94649 -118.42592] [33.94649 -118.42592] [33.94651 -118.42586] [33.94651 -118.42585] [33.94651 -118.42585] [33.94653 -118.42582] [33.94653 -118.42582] [33.94648 -118.42568] [33.94649 -118.42568] [33.94649 -118.42568] [33.94651 -118.42558] [33.94651 -118.42558] [33.94651 -118.4255] [33.94651 -118.42549] [33.94651 -118.42549] [33.94653 -118.42547] [33.94653 -118.42546] [33.94653 -118.42546] [33.94651 -118.42515] [33.94651 -118.42515] [33.94651 -118.42515] [33.94653 -118.42509] [33.94653 -118.42508] [33.94653 -118.42508] [33.94655 -118.42498] [33.94656 -118.42498] [33.94656 -118.42498] [33.94658 -118.42491] [33.94658 -118.42491] [33.94658 -118.42491] [33.94658 -118.42481] [33.94658 -118.42481] [33.94658 -118.42481] [33.9466 -118.42471] [33.94659 -118.42472] [33.94659 -118.42472] [33.94664 -118.42463] [33.94664 -118.42463] [33.94664 -118.42455] [33.94664 -118.42455] [33.94664 -118.42455] [33.94664 -118.4245] [33.94664 -118.42451] [33.94664 -118.42451] [33.94664 -118.42438] [33.94664 -118.42438] [33.94664 -118.42438] [33.94666 -118.42431] [33.94666 -118.42431] [33.94666 -118.42431] [33.94666 -118.42422] [33.94666 -118.42422] [33.94666 -118.42422] [33.94664 -118.42417] [33.94664 -118.42416] [33.94664 -118.42416] [33.94672 -118.4239] [33.94672 -118.42372] [33.94673 -118.42371] [33.94673 -118.42371] [33.94672 -118.42362] [33.94673 -118.42362] [33.94673 -118.42362] [33.94672 -118.42354] [33.94675 -118.4232] [33.94675 -118.4232] [33.94677 -118.42312] [33.94676 -118.4231] [33.94676 -118.4231] [33.94677 -118.42303] [33.94677 -118.42303] [33.94683 -118.42247] [33.94683 -118.42246] [33.94683 -118.42246] [33.94687 -118.42215] [33.94687 -118.42215] [33.94685 -118.42207] [33.94686 -118.42206] [33.94686 -118.42206] [33.94687 -118.42188] [33.94687 -118.42189] [33.94687 -118.42189] [33.9469 -118.42176] [33.94689 -118.42176] [33.94689 -118.42176] [33.94694 -118.42166] [33.94694 -118.42165] [33.94694 -118.42165] [33.94692 -118.42156] [33.94692 -118.42156] [33.94692 -118.42156] [33.94692 -118.42118] [33.94692 -118.42117] [33.94692 -118.42117] [33.94696 -118.42106] [33.94696 -118.42104] [33.94696 -118.42104] [33.94699 -118.42099] [33.94699 -118.42099] [33.94699 -118.42099] [33.94699 -118.4209] [33.94699 -118.4209] [33.94699 -118.4209] [33.94699 -118.42082] [33.94699 -118.42082] [33.94699 -118.42082] [33.947 -118.42071] [33.947 -118.4207] [33.947 -118.4207] [33.94704 -118.42062] [33.94704 -118.42062] [33.94704 -118.42062] [33.94704 -118.42051] [33.94704 -118.42051] [33.94704 -118.42043] [33.94704 -118.42043] [33.94704 -118.42043] [33.94707 -118.42034] [33.94707 -118.42034] [33.94707 -118.42034] [33.94714 -118.42026] [33.94714 -118.42026] [33.94714 -118.42026] [33.94709 -118.41978] [33.94709 -118.41979] [33.94709 -118.41979] [33.94711 -118.41973] [33.94711 -118.41971] [33.94711 -118.41971] [33.94711 -118.41961] [33.94711 -118.41961] [33.94714 -118.4195] [33.94714 -118.4195] [33.94714 -118.4195] [33.94714 -118.41942] [33.94714 -118.41941] [33.94714 -118.41941] [33.94714 -118.41932] [33.94714 -118.41931] [33.94714 -118.41931] [33.94717 -118.41922] [33.94717 -118.41923] [33.94717 -118.41923] [33.94717 -118.41914] [33.94717 -118.41914] [33.94717 -118.41914] [33.94717 -118.41904] [33.94717 -118.41903] [33.94717 -118.41903] [33.94717 -118.41893] [33.94717 -118.41893] [33.94717 -118.41893] [33.94719 -118.41876] [33.9472 -118.41876] [33.9472 -118.41876] [33.94722 -118.41867] [33.94722 -118.41867] [33.94724 -118.41859] [33.94724 -118.41858] [33.94724 -118.41858] [33.94724 -118.41837] [33.94724 -118.41837] [33.94724 -118.41837] [33.94726 -118.41828] [33.94726 -118.41809] [33.94727 -118.41808] [33.94727 -118.41808] [33.94728 -118.418] [33.94728 -118.418] [33.94728 -118.418] [33.94728 -118.41792] [33.94728 -118.41791] [33.94728 -118.41791] [33.94731 -118.41771] [33.9473 -118.4177] [33.9473 -118.4177] [33.94733 -118.4176] [33.94732 -118.4176] [33.94732 -118.4176] [33.94739 -118.41702] [33.94739 -118.41701] [33.94736 -118.41694] [33.94736 -118.41694] [33.94739 -118.41687] [33.94739 -118.41687] [33.94739 -118.41687] [33.94739 -118.41671] [33.94739 -118.41671] [33.94739 -118.41671] [33.94742 -118.41665] [33.94746 -118.41647] [33.94745 -118.41648] [33.94745 -118.41648] [33.94748 -118.41638] [33.94747 -118.41637] [33.94747 -118.41637] [33.94748 -118.41625] [33.94748 -118.41625] [33.9475 -118.41617] [33.9475 -118.41615] [33.9475 -118.41615] [33.94752 -118.41605] [33.94748 -118.41594] [33.94747 -118.41594] [33.94747 -118.41594] [33.94751 -118.41586] [33.94752 -118.41585] [33.94752 -118.41585] [33.94751 -118.41575] [33.94751 -118.41575] [33.94756 -118.41534] [33.94756 -118.41534] [33.94756 -118.41534] [33.94756 -118.41513] [33.94756 -118.41512] [33.94758 -118.41504] [33.94758 -118.41504] [33.94761 -118.41496] [33.9476 -118.41495] [33.9476 -118.41495] [33.94761 -118.41485] [33.9476 -118.41485] [33.94763 -118.41468] [33.94763 -118.41468] [33.94763 -118.41468] [33.94765 -118.41444] [33.94765 -118.41444] [33.94765 -118.41444] [33.94767 -118.41425] [33.94767 -118.41425] [33.94767 -118.41425] [33.94767 -118.41413] [33.94773 -118.41408] [33.94788 -118.41355] [33.94788 -118.41353] [33.94788 -118.41353] [33.94795 -118.41304] [33.94795 -118.41305] [33.94795 -118.41305] [33.94795 -118.41294] [33.94795 -118.41293] [33.94795 -118.41293] [33.94795 -118.41283] [33.94795 -118.41283] [33.94795 -118.41283] [33.94797 -118.41273] [33.94796 -118.41272] [33.94796 -118.41272] [33.94799 -118.41262] [33.94799 -118.41262] [33.94803 -118.41242] [33.94803 -118.41242] [33.94807 -118.41178] [33.94808 -118.41177] [33.94808 -118.41177] [33.94807 -118.4117] [33.94808 -118.41169] [33.94808 -118.41169] [33.94807 -118.41158] [33.94808 -118.41159] [33.94808 -118.41159] [33.94807 -118.4115] [33.94808 -118.4115] [33.94808 -118.4115] [33.94814 -118.41094] [33.94814 -118.41094] [33.94814 -118.41085] [33.94814 -118.41085] [33.94817 -118.41073] [33.94816 -118.41073] [33.94816 -118.41073] [33.94819 -118.41064] [33.94818 -118.41064] [33.94818 -118.41064] [33.9482 -118.41053] [33.94821 -118.41053] [33.94821 -118.41053] [33.9482 -118.41043] [33.94821 -118.41043] [33.94821 -118.41043] [33.9482 -118.41032] [33.94821 -118.41032] [33.94821 -118.41032] [33.94824 -118.4098] [33.94824 -118.4098] [33.94827 -118.40971] [33.94827 -118.4097] [33.94827 -118.4097] [33.94827 -118.40959] [33.94827 -118.40959] [33.94829 -118.40952] [33.94829 -118.40953] [33.94829 -118.40953] [33.94831 -118.40944] [33.94831 -118.40944] [33.94831 -118.40944] [33.94831 -118.40931] [33.94836 -118.40916] [33.94836 -118.40916] [33.94836 -118.40916] [33.94836 -118.40906] [33.94836 -118.40906] [33.94834 -118.40898] [33.94834 -118.40897] [33.94834 -118.40897] [33.94836 -118.40886] [33.94836 -118.40886] [33.94836 -118.40886] [33.94837 -118.40878] [33.94837 -118.40877] [33.94837 -118.40877] [33.94837 -118.40865] [33.94837 -118.40864] [33.94837 -118.40864] [33.94837 -118.40864] [33.94842 -118.40819] [33.94842 -118.4082] [33.94842 -118.4082] [33.94842 -118.40811] [33.94842 -118.40811] [33.94842 -118.40811] [33.94846 -118.40802] [33.94846 -118.40803] [33.94846 -118.40803] [33.94846 -118.40793] [33.94846 -118.40791] [33.94846 -118.40791] [33.94849 -118.40781] [33.94849 -118.40781] [33.94849 -118.40781] [33.94849 -118.40769] [33.94849 -118.40768] [33.94849 -118.40768] [33.94849 -118.4076] [33.94849 -118.4076] [33.94849 -118.4076] [33.94851 -118.40738] [33.94851 -118.40738] [33.94851 -118.40738] [33.94853 -118.4073] [33.94852 -118.4073] [33.94852 -118.4073] [33.94853 -118.40721] [33.94859 -118.40682] [33.94859 -118.40683] [33.94859 -118.40683] [33.94859 -118.40673] [33.94859 -118.40674] [33.94859 -118.40674] [33.94859 -118.40665] [33.94859 -118.40665] [33.94857 -118.40657] [33.94857 -118.40657] [33.94857 -118.40657] [33.94857 -118.40644] [33.94857 -118.40644] [33.94857 -118.40644] [33.94861 -118.40624] [33.94861 -118.40624] [33.94861 -118.40613] [33.94862 -118.40614] [33.94862 -118.40614] [33.94866 -118.40608] [33.94865 -118.40607] [33.94865 -118.40607] [33.94866 -118.40596] [33.94865 -118.40597] [33.94865 -118.40597] [33.94866 -118.40588] [33.94865 -118.40588] [33.94865 -118.40588] [33.94866 -118.4058] [33.94865 -118.4058] [33.94865 -118.4058] [33.94868 -118.40571] [33.94867 -118.40571] [33.94866 -118.40563] [33.94865 -118.40562] [33.94865 -118.40562] [33.9487 -118.40545] [33.94874 -118.40526] [33.94874 -118.40525] [33.94874 -118.40525] [33.94872 -118.40522] [33.94872 -118.40521] [33.94872 -118.40521] [33.94872 -118.40511] [33.94872 -118.40511] [33.94872 -118.40511] [33.94874 -118.40504] [33.94874 -118.40504] [33.94874 -118.40504] [33.94876 -118.40498] [33.94877 -118.40498] [33.94877 -118.40498] [33.94877 -118.40491] [33.94877 -118.40491] [33.94876 -118.40483] [33.94877 -118.40482] [33.94877 -118.40482] [33.94878 -118.40472] [33.94879 -118.40472] [33.94879 -118.40472] [33.94881 -118.40455] [33.9488 -118.40455] [33.9488 -118.40455] [33.94883 -118.40442] [33.94883 -118.40442] [33.94881 -118.40435] [33.9488 -118.40435] [33.9488 -118.40435] [33.94883 -118.4043] [33.94883 -118.4043] [33.94888 -118.40395] [33.94887 -118.40395] [33.94887 -118.40395] [33.94889 -118.40389] [33.94889 -118.40388] [33.94889 -118.40388] [33.94891 -118.40381] [33.94892 -118.40379] [33.94892 -118.40379] [33.94888 -118.40371] [33.94887 -118.40371] [33.94887 -118.40371] [33.94889 -118.40362] [33.94889 -118.40362] [33.94889 -118.40362] [33.94889 -118.40357] [33.94889 -118.40356] [33.94889 -118.40356] [33.94891 -118.40348] [33.94892 -118.40348] [33.94892 -118.40348] [33.94893 -118.40341] [33.94893 -118.40334] [33.94893 -118.40335] [33.94893 -118.40335] [33.94896 -118.4032] [33.94895 -118.40319] [33.94895 -118.40319] [33.94896 -118.40312] [33.94895 -118.40311] [33.94895 -118.40311] [33.94896 -118.40305] [33.94895 -118.40305] [33.94895 -118.40305] [33.94896 -118.40298] [33.94895 -118.40298] [33.94896 -118.40292] [33.94895 -118.40292] [33.94895 -118.40292] [33.94896 -118.40284] [33.94895 -118.40283] [33.94895 -118.40283] [33.94898 -118.40274] [33.94898 -118.40275] [33.94898 -118.40275] [33.94898 -118.40269] [33.94898 -118.40268] [33.94898 -118.40268] [33.949 -118.4026] [33.949 -118.40259] [33.949 -118.40259] [33.949 -118.40257] [33.949 -118.40258] [33.949 -118.40258] [33.94898 -118.40256] [33.94898 -118.40255] [33.94898 -118.40255] [33.94898 -118.40247] [33.94898 -118.40246] [33.94898 -118.40246] [33.949 -118.4024] [33.949 -118.4024] [33.949 -118.4024] [33.94905 -118.40229] [33.94905 -118.40229] [33.94905 -118.40229] [33.94905 -118.40229] [33.94905 -118.40229] [33.94905 -118.40229] [33.94905 -118.40233] [33.94905 -118.40233] [33.94905 -118.40233] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94905 -118.40229] [33.94905 -118.40229] [33.94905 -118.40229] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94905 -118.40232] [33.94905 -118.40232] [33.94905 -118.40232] [33.94905 -118.40229] [33.94905 -118.40229] [33.94905 -118.40229] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40233] [33.94902 -118.40233] [33.94905 -118.40233] [33.94905 -118.40233] [33.94905 -118.40233] [33.94905 -118.40232] [33.94905 -118.40232] [33.94905 -118.40232] [33.94905 -118.40232] [33.94905 -118.40232] [33.94905 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40229] [33.94902 -118.40229] [33.94902 -118.40229] [33.949 -118.40229] [33.949 -118.40229] [33.949 -118.40232] [33.949 -118.40232] [33.949 -118.40232] [33.94902 -118.40229] [33.94902 -118.40229] [33.94902 -118.40229] [33.949 -118.40229] [33.949 -118.40229] [33.949 -118.40229] [33.949 -118.40229] [33.949 -118.40229] [33.949 -118.40229] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94905 -118.40232] [33.94905 -118.40232] [33.94905 -118.40233] [33.94905 -118.40233] [33.94905 -118.40233] [33.94905 -118.40232] [33.94905 -118.40232] [33.94905 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40229] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40229] [33.94902 -118.40229] [33.94902 -118.40229] [33.94902 -118.40229] [33.94902 -118.40229] [33.94902 -118.40229] [33.94902 -118.40228] [33.94902 -118.40228] [33.94902 -118.40228] [33.949 -118.40232] [33.949 -118.40232] [33.949 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.949 -118.40232] [33.949 -118.40232] [33.949 -118.40232] [33.949 -118.40232] [33.949 -118.40232] [33.949 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40229] [33.94902 -118.40229] [33.94902 -118.40229] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.949 -118.40232] [33.949 -118.40232] [33.949 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40233] [33.94902 -118.40233] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40228] [33.94902 -118.40228] [33.94902 -118.40228] [33.94902 -118.40229] [33.94902 -118.40229] [33.94902 -118.40229] [33.94902 -118.40232] [33.94902 -118.40232] [33.94902 -118.40232] [33.94905 -118.40229] [33.94905 -118.40229] [33.94905 -118.40229] [33.94905 -118.40229] [33.94905 -118.40229] [33.94905 -118.40229] [33.94905 -118.40229] [33.94905 -118.40228] [33.94905 -118.40228] [33.94905 -118.40228] [33.94906 -118.40228] [33.94906 -118.40228] [33.94906 -118.40228] [33.94906 -118.40225] [33.94906 -118.40225] [33.94906 -118.40225] [33.94905 -118.40221] [33.94905 -118.4022] [33.94905 -118.4022] [33.94905 -118.40217] [33.94905 -118.40216] [33.94905 -118.40216] [33.94905 -118.40205] [33.94905 -118.40205] [33.94906 -118.402] [33.94906 -118.40199] [33.94906 -118.40199] [33.94908 -118.40197] [33.94908 -118.40198] [33.94908 -118.40198] [33.94908 -118.40197] [33.94908 -118.40198] [33.94908 -118.40198] [33.94908 -118.40193] [33.94908 -118.40193] [33.94908 -118.40193] [33.94915 -118.40189] [33.94915 -118.40189] [33.94915 -118.40189] [33.94922 -118.40183] [33.94922 -118.40183] [33.9493 -118.40176] [33.9493 -118.40176] [33.9493 -118.40176] [33.94932 -118.40176] [33.94933 -118.40176] [33.94933 -118.40176] [33.94939 -118.40169] [33.94938 -118.40169] [33.94938 -118.40169] [33.94942 -118.40168] [33.94943 -118.40168] [33.94943 -118.40168] [33.94947 -118.40165] [33.94948 -118.40165] [33.94948 -118.40165] [33.94949 -118.40168] [33.94949 -118.40168] [33.94962 -118.40169] [33.94962 -118.40169] [33.94962 -118.40169] [33.94971 -118.40169] [33.94971 -118.40169] [33.94971 -118.40169] [33.94975 -118.40169] [33.94974 -118.40169] [33.94974 -118.40169] [33.94979 -118.40169] [33.94979 -118.40169] [33.94979 -118.40169] [33.94996 -118.40175] [33.94997 -118.40173] [33.94997 -118.40173] [33.95001 -118.40172] [33.95001 -118.40172] [33.95001 -118.40172] [33.95003 -118.40175] [33.95002 -118.40173] [33.95002 -118.40173] [33.95005 -118.40175] [33.95005 -118.40173] [33.95005 -118.40173] [33.95008 -118.40184] [33.95007 -118.40185] [33.95007 -118.40185] [33.95011 -118.40187] [33.95012 -118.40186] [33.95013 -118.40189] [33.95014 -118.40189] [33.95014 -118.40189] [33.95018 -118.40193] [33.95018 -118.40193] [33.95013 -118.40205] [33.95014 -118.40206] [33.95014 -118.40206] [33.95011 -118.40208] [33.95012 -118.40208] [33.95012 -118.40208] [33.95009 -118.40215] [33.95009 -118.40215] [33.95009 -118.40215] [33.95009 -118.40221] [33.95009 -118.4022] [33.95009 -118.4022] [33.95009 -118.40225] [33.95009 -118.40225] [33.95009 -118.40232] [33.95009 -118.40232] [33.95009 -118.40232] [33.95011 -118.40233] [33.95012 -118.40233] [33.95012 -118.40233] [33.95011 -118.40243] [33.95012 -118.40242] [33.95012 -118.40242] [33.95011 -118.40245] [33.95012 -118.40245] [33.95012 -118.40245] [33.95009 -118.40245] [33.95009 -118.40245] [33.95008 -118.40245] [33.95007 -118.40245] [33.95007 -118.40245] [33.95009 -118.40247] [33.95009 -118.40246] [33.95011 -118.40247] [33.95012 -118.40246] [33.95012 -118.40246] [33.95013 -118.40247] [33.95014 -118.40246] [33.95014 -118.40246] [33.95013 -118.40249] [33.95014 -118.40249] [33.95014 -118.40249] [33.95011 -118.40249] [33.95011 -118.40245] [33.95012 -118.40245] [33.95012 -118.40245] [33.95012 -118.40245] [33.95012 -118.40249] [33.95012 -118.40249] [33.95011 -118.40247] [33.95012 -118.40246] [33.95012 -118.40246] [33.95011 -118.40247] [33.95012 -118.40246] [33.95011 -118.40249] [33.95012 -118.40249] [33.95012 -118.40249] [33.95011 -118.40247] [33.95012 -118.40246] [33.95012 -118.40246] [33.95011 -118.40247] [33.95012 -118.40246] [33.95012 -118.40246] [33.95011 -118.40247] [33.95011 -118.40247] [33.95013 -118.40249] [33.95014 -118.40249] [33.95014 -118.40249] [33.95013 -118.40247] [33.95014 -118.40246] [33.95014 -118.40246] [33.95016 -118.40249] [33.95016 -118.40249] [33.95016 -118.40249] [33.95016 -118.40249] [33.95016 -118.40249] [33.95016 -118.40249] [33.95013 -118.40247] [33.95014 -118.40246] [33.95014 -118.40246] [33.95013 -118.40247] [33.95014 -118.40246] [33.95014 -118.40246] [33.95013 -118.40247] [33.95014 -118.40246] [33.95014 -118.40246] [33.95014 -118.40246] [33.95014 -118.40249] [33.95014 -118.40249] [33.95011 -118.40252] [33.95012 -118.4025] [33.95012 -118.4025] [33.95012 -118.40249] [33.95012 -118.40249] [33.95013 -118.40249] [33.95014 -118.40249] [33.95014 -118.40249] [33.95016 -118.40249] [33.95016 -118.40249] [33.95016 -118.40249] [33.95018 -118.40252] [33.95017 -118.4025] [33.95017 -118.4025] [33.95016 -118.40249] [33.95016 -118.40249] [33.95016 -118.40249] [33.95013 -118.40252] [33.95014 -118.4025] [33.95014 -118.4025] [33.95013 -118.40249] [33.95013 -118.40249] [33.95013 -118.40249] [33.95014 -118.40249] [33.95014 -118.40249] [33.95011 -118.40247] [33.95012 -118.40246] [33.95012 -118.40246] [33.95011 -118.40249] [33.95012 -118.40249] [33.95012 -118.40249] [33.95011 -118.40247] [33.95012 -118.40246] [33.95012 -118.40246] [33.95011 -118.40249] [33.95012 -118.40249] [33.95012 -118.40249] [33.95013 -118.40252] [33.95014 -118.4025] [33.95014 -118.4025] [33.95011 -118.40247] [33.95012 -118.40246] [33.95012 -118.40246] [33.95009 -118.40247] [33.95009 -118.40246] [33.95009 -118.40246] [33.95009 -118.40247] [33.95009 -118.40246] [33.95009 -118.40246] [33.95011 -118.40249] [33.95012 -118.40249] [33.95012 -118.40249] [33.95011 -118.40247] [33.95012 -118.40246] [33.95012 -118.40246] [33.95013 -118.40252] [33.95014 -118.4025] [33.95013 -118.40252] [33.95014 -118.4025] [33.95014 -118.4025] [33.95014 -118.40249] [33.95014 -118.40249] [33.95014 -118.40249] [33.95011 -118.40252] [33.95012 -118.4025] [33.95013 -118.40249] [33.95014 -118.40249] [33.95014 -118.40249] [33.95014 -118.40249] [33.95014 -118.40249] [33.95013 -118.40252] [33.95014 -118.4025] [33.95014 -118.4025] [33.95014 -118.4025] [33.95014 -118.4025] [33.95013 -118.40249] [33.95014 -118.40249] [33.95014 -118.40249] [33.95014 -118.40249] [33.95014 -118.40249] [33.95013 -118.40247] [33.95014 -118.40246] [33.95014 -118.40246] [33.95011 -118.40249] [33.95012 -118.40249] [33.95012 -118.40249] [33.95011 -118.40249] [33.95012 -118.40249] [33.95012 -118.40249] [33.95011 -118.40249] [33.95012 -118.40249] [33.95012 -118.40249] [33.95009 -118.40249] [33.95009 -118.40249] [33.95009 -118.40249] [33.95011 -118.40249] [33.95012 -118.40249] [33.95012 -118.40249] [33.95016 -118.40247] [33.95016 -118.40246] [33.95016 -118.40246] [33.95013 -118.40247] [33.95014 -118.40246] [33.95014 -118.40246] [33.95011 -118.40249] [33.95012 -118.40249] [33.95012 -118.40249] [33.95013 -118.40247] [33.95014 -118.40246] [33.95014 -118.40246] [33.95016 -118.40249] [33.95016 -118.40249] [33.95016 -118.40249] [33.95013 -118.40247] [33.95014 -118.40246] [33.95014 -118.40246] [33.95013 -118.40247] [33.95013 -118.40249] [33.95014 -118.40249] [33.95014 -118.40249] [33.95014 -118.40249] [33.95014 -118.40249] [33.95013 -118.40249] [33.95014 -118.40249] [33.95014 -118.40249] [33.95013 -118.40249] [33.95013 -118.40249] [33.95016 -118.40247] [33.95016 -118.40246] [33.95016 -118.40246] [33.95014 -118.40249] [33.95014 -118.40249] [33.95013 -118.40247] [33.95013 -118.40247] [33.95014 -118.40245] [33.95014 -118.40245] [33.95014 -118.40246] [33.95014 -118.40246] [33.95011 -118.40252] [33.95012 -118.4025] [33.95012 -118.4025] [33.95011 -118.40256] [33.95012 -118.40255] [33.95012 -118.40255] [33.95009 -118.40269] [33.95009 -118.40268] [33.95009 -118.40268] [33.95005 -118.40284] [33.95005 -118.40283] [33.95005 -118.40283] [33.95005 -118.40301] [33.95005 -118.40301] [33.95005 -118.40301] [33.95001 -118.40396] [33.95001 -118.40396] [33.95001 -118.40396] [33.95001 -118.40396] [33.94986 -118.40487] [33.9499 -118.40487] [33.9499 -118.40487] [33.94981 -118.40521] [33.94985 -118.40521] [33.94985 -118.40521] [33.94981 -118.4056] [33.9498 -118.40561] [33.9498 -118.40561] [33.94972 -118.40633] [33.94971 -118.40635] [33.94971 -118.40635] [33.94972 -118.4065] [33.94971 -118.40652] [33.94971 -118.40652] [33.94963 -118.40751] [33.94962 -118.4075] [33.94962 -118.4075] [33.94954 -118.40846] [33.94952 -118.40841] [33.94952 -118.40841] [33.94949 -118.40891] [33.94948 -118.40893] [33.94948 -118.40893] [33.94945 -118.40947] [33.94943 -118.40944] [33.94936 -118.41003] [33.94936 -118.41003] [33.94924 -118.4107] [33.94917 -118.41171] [33.94915 -118.41167] [33.94915 -118.41167] [33.94917 -118.41188] [33.94915 -118.41185] [33.94915 -118.41185] [33.94908 -118.41272] [33.94908 -118.41272] [33.94908 -118.41272] [33.94906 -118.41316] [33.94906 -118.41316] [33.94894 -118.41384] [33.94896 -118.41385] [33.94896 -118.41385] [33.94885 -118.41479] [33.94887 -118.41476] [33.94887 -118.41476] [33.94881 -118.4153] [33.94882 -118.41534] [33.94882 -118.41534] [33.94876 -118.41608] [33.94873 -118.41608] [33.94873 -118.41608] [33.94853 -118.4176] [33.94855 -118.41757] [33.94855 -118.41757] [33.94835 -118.41939] [33.94836 -118.41934] [33.94836 -118.41934] [33.9483 -118.41989] [33.94831 -118.41991] [33.94831 -118.41991] [33.94821 -118.42079] [33.94821 -118.42079] [33.94821 -118.42079] [33.94813 -118.4218] [33.94813 -118.4218] [33.94807 -118.4223] [33.94803 -118.42232] [33.94803 -118.42232] [33.94803 -118.42232] [33.9444 -118.45316] [33.94437 -118.45375] [33.94436 -118.45379] [33.94427 -118.45481] [33.94431 -118.45482] [33.94431 -118.45482] [33.94409 -118.4561] [33.94408 -118.45613] [33.94408 -118.45613] [33.944 -118.45694] [33.94398 -118.45694] [33.94398 -118.45694] [33.94386 -118.45801] [33.94389 -118.45802] [33.94389 -118.45802] [33.94373 -118.45902] [33.94375 -118.459] [33.94375 -118.459] [33.94359 -118.46204] [33.94356 -118.46209] [33.94356 -118.46209] [33.9435 -118.46272] [33.94347 -118.46272] [33.94347 -118.46272] [33.94336 -118.46378] [33.94338 -118.4638] [33.94338 -118.4638] [33.94322 -118.46524] [33.94324 -118.46523] [33.94324 -118.46523] [33.94318 -118.46586] [33.94315 -118.46586] [33.94315 -118.46586] [33.94322 -118.46698] [33.94324 -118.46695] [33.94324 -118.46695] [33.94324 -118.46695] [33.94324 -118.46695] [33.9429 -118.4899] [33.94287 -118.48989] [33.94287 -118.48989])] [:line ([34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571] [34.25435 -118.22571])] [:line ([33.69768 -118.36636] [33.69768 -118.36636] [33.69768 -118.36636] [33.69768 -118.36636] [33.69768 -118.36636] [33.69768 -118.36636] [33.69768 -118.36636] [33.69768 -118.36636] [33.69768 -118.36636] [33.69768 -118.36636] [33.7137 -118.39394] [33.7137 -118.39394] [33.76016 -118.47286] [33.76016 -118.47286] [33.82346 -118.58133] [33.82346 -118.58133] [33.82346 -118.58133] [33.82346 -118.58133] [33.82346 -118.58133] [33.82346 -118.58133] [33.82346 -118.58133] [33.82346 -118.58133] [33.82346 -118.58133] [33.82346 -118.58133] [33.82346 -118.58133] [33.82346 -118.58133] [33.82346 -118.58133] [33.82346 -118.58133] [33.82346 -118.58133] [33.82346 -118.58133] [33.82346 -118.58133] [33.97142 -118.83552] [33.97142 -118.83552] [33.97142 -118.83552] [34.10312 -119.06293] [34.10312 -119.06293] [34.10312 -119.06293] [34.10312 -119.06293] [34.10312 -119.06293] [34.10312 -119.06293] [34.10312 -119.06293] [34.10312 -119.06293] [34.14374 -119.13328] [34.14374 -119.13328] [34.14374 -119.13328] [34.14374 -119.13328] [34.14374 -119.13328] [34.14374 -119.13328] [34.14374 -119.13328] [34.14374 -119.13328] [34.14374 -119.13328] [34.14798 -119.14073] [34.14798 -119.14073] [34.14798 -119.14073] [34.14798 -119.14073] [34.14798 -119.14073] [34.14798 -119.14073] [34.14798 -119.14073] [34.14798 -119.14073] [34.14798 -119.14073] [34.14798 -119.14073] [34.15482 -119.15257] [34.15482 -119.15257] [34.15482 -119.15257] [34.15482 -119.15257] [34.15482 -119.15257] [34.15482 -119.15257] [34.15608 -119.15474] [34.15608 -119.15474] [34.15608 -119.15474] [34.15608 -119.15474] [34.15608 -119.15474] [34.15784 -119.15777] [34.15784 -119.15777] [34.15784 -119.15777] [34.15784 -119.15777] [34.15784 -119.15777] [34.15784 -119.15777] [34.15784 -119.15777] [34.15784 -119.15777] [34.15784 -119.15777] [34.15784 -119.15777] [34.15784 -119.15777] [34.15784 -119.15777] [34.15784 -119.15777] [34.15784 -119.15777] [34.15784 -119.15777] [34.16917 -119.17745] [34.16917 -119.17745] [34.16917 -119.17745] [34.17242 -119.18312] [34.17242 -119.18312] [34.17242 -119.18312] [34.17242 -119.18312] [34.17242 -119.18312] [34.17242 -119.18312] [34.17242 -119.18312] [34.17242 -119.18312] [34.17242 -119.18312] [34.17242 -119.18312] [34.17242 -119.18312] [34.17242 -119.18312] [34.17242 -119.18312] [34.17242 -119.18312] [34.17242 -119.18312] [34.17242 -119.18312] [34.17242 -119.18312] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.19304 -119.21883] [34.20026 -119.23137] [34.20026 -119.23137] [34.20026 -119.23137] [34.20026 -119.23137] [34.20026 -119.23137] [34.20026 -119.23137] [34.20026 -119.23137] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611] [34.20295 -119.23611])] [:line ([33.9453 -118.43374] [33.94531 -118.43373] [33.94531 -118.43373] [33.94537 -118.43378] [33.9455 -118.43378] [33.9455 -118.43378] [33.9455 -118.43378] [33.94561 -118.43374] [33.94561 -118.43373] [33.94561 -118.43371] [33.94561 -118.4337] [33.94565 -118.43367] [33.94565 -118.43366] [33.94565 -118.43366] [33.94565 -118.43364] [33.94565 -118.43365] [33.94565 -118.43365] [33.94565 -118.43364] [33.94565 -118.43365] [33.94565 -118.43365] [33.94567 -118.43367] [33.94567 -118.43367] [33.94567 -118.43363] [33.94567 -118.43362] [33.94567 -118.43362] [33.94569 -118.4336] [33.94569 -118.4336] [33.94569 -118.4336] [33.94569 -118.43356] [33.94569 -118.43356] [33.94584 -118.43298] [33.94585 -118.43297] [33.94585 -118.43297] [33.94587 -118.43269] [33.94587 -118.43267] [33.94587 -118.43267] [33.94589 -118.43249] [33.94589 -118.43249] [33.94589 -118.43236] [33.94589 -118.43236] [33.94589 -118.43236] [33.94591 -118.43222] [33.9459 -118.43216] [33.9459 -118.43216] [33.94591 -118.43206] [33.9459 -118.43206] [33.9459 -118.43206] [33.94591 -118.43196] [33.9459 -118.43194] [33.9459 -118.43194] [33.94591 -118.43182] [33.9459 -118.43182] [33.9459 -118.43182] [33.94593 -118.43169] [33.94593 -118.43169] [33.94593 -118.43169] [33.94597 -118.43112] [33.94597 -118.43112] [33.94597 -118.43112] [33.94599 -118.43101] [33.946 -118.431] [33.946 -118.431] [33.94599 -118.43088] [33.946 -118.43087] [33.946 -118.43087] [33.94954 -118.40294] [33.94953 -118.40293] [33.94953 -118.40293] [33.94958 -118.40293] [33.94958 -118.40293] [33.94969 -118.4029] [33.94969 -118.4029] [33.94974 -118.40289] [33.94974 -118.40289] [33.94981 -118.40292] [33.94981 -118.40292] [33.94981 -118.40292] [33.95001 -118.40339] [33.95001 -118.40339] [33.95001 -118.40339] [33.94999 -118.40341] [33.94999 -118.40341] [33.94999 -118.40341] [33.94999 -118.40386] [33.94999 -118.40386] [33.94999 -118.40386] [33.94996 -118.40393] [33.94997 -118.40392] [33.94997 -118.40392] [33.94992 -118.40405] [33.94992 -118.40405] [33.94992 -118.40421] [33.94992 -118.40421] [33.94988 -118.40498] [33.94988 -118.40498] [33.94986 -118.40554] [33.94986 -118.40554] [33.94986 -118.40554] [33.94986 -118.40554] [33.94985 -118.4059] [33.94985 -118.4059] [33.94977 -118.40622] [33.94976 -118.40624] [33.94976 -118.40624] [33.94976 -118.40624] [33.94976 -118.40624] [33.94976 -118.40624] [33.94976 -118.40624] [33.94931 -118.41008] [33.94934 -118.41013] [33.94934 -118.41013] [33.94922 -118.41115] [33.94924 -118.41116] [33.94924 -118.41116] [33.94922 -118.41149] [33.94924 -118.4115] [33.94924 -118.4115] [33.94913 -118.41199] [33.94915 -118.41202] [33.94915 -118.41202] [33.94899 -118.41362] [33.94896 -118.41356] [33.94896 -118.41356] [33.94896 -118.41356] [33.94881 -118.41485] [33.94882 -118.41488] [33.94882 -118.41488] [33.94876 -118.41569] [33.94873 -118.41568] [33.94873 -118.41568] [33.94867 -118.41642] [33.94864 -118.41642] [33.94864 -118.41642])] [:line ([33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.831 -118.43016] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [33.87639 -118.43113] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.00648 -118.44512] [34.06642 -118.45499] [34.06642 -118.45499] [34.06642 -118.45499] [34.06642 -118.45499] [34.06642 -118.45499] [34.06642 -118.45499] [34.06642 -118.45499] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.06888 -118.45543] [34.12479 -118.46483] [34.12479 -118.46483] [34.12479 -118.46483] [34.12479 -118.46483] [34.1255 -118.46496] [34.1255 -118.46496] [34.1255 -118.46496] [34.1255 -118.46496] [34.1255 -118.46496] [34.12656 -118.46512] [34.12656 -118.46512] [34.12656 -118.46512] [34.12656 -118.46512] [34.12656 -118.46512] [34.12656 -118.46512] [34.12656 -118.46512] [34.12656 -118.46512] [34.12656 -118.46512] [34.12656 -118.46512] [34.12656 -118.46512] [34.12656 -118.46512] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.12761 -118.4653] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.16371 -118.47136] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.21673 -118.48034] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.22415 -118.48161] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.24499 -118.48532] [34.26118 -118.48867] [34.26118 -118.48867] [34.26118 -118.48867] [34.26118 -118.48867] [34.26118 -118.48867] [34.26118 -118.48867] [34.26118 -118.48867] [34.26118 -118.48867] [34.26118 -118.48867] [34.26118 -118.48867] [34.26118 -118.48867] [34.26118 -118.48867] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.26259 -118.48898] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.27524 -118.4917] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.30123 -118.4971] [34.32576 -118.50214] [34.32576 -118.50214] [34.32576 -118.50214] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.32646 -118.50229] [34.33102 -118.50323] [34.33102 -118.50323] [34.33102 -118.50323] [34.33102 -118.50323] [34.33102 -118.50323] [34.33102 -118.50323] [34.33102 -118.50323] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.33557 -118.5042] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.34848 -118.50683] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.35928 -118.50907] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.36766 -118.51078] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.38226 -118.51378] [34.40583 -118.51862] [34.40583 -118.51862] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.41138 -118.51972] [34.45587 -118.52892] [34.45587 -118.52892] [34.45587 -118.52892] [34.45587 -118.52892] [34.45587 -118.52892] [34.45587 -118.52892] [34.45587 -118.52892] [34.45587 -118.52892] [34.45587 -118.52892] [34.45587 -118.52892] [34.45587 -118.52892] [34.45587 -118.52892] [34.45587 -118.52892] [34.45587 -118.52892] [34.45587 -118.52892] [34.45967 -118.5297] [34.45967 -118.5297] [34.45967 -118.5297] [34.45967 -118.5297] [34.45967 -118.5297] [34.45967 -118.5297] [34.45967 -118.5297] [34.45967 -118.5297] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.46104 -118.52995] [34.4751 -118.5329] [34.4751 -118.5329] [34.4751 -118.5329] [34.4751 -118.5329] [34.4751 -118.5329] [34.4751 -118.5329] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.47649 -118.53315] [34.494 -118.53682] [34.494 -118.53682] [34.494 -118.53682] [34.494 -118.53682] [34.494 -118.53682] [34.494 -118.53682] [34.494 -118.53682] [34.494 -118.53682] [34.494 -118.53682] [34.494 -118.53682] [34.494 -118.53682] [34.494 -118.53682] [34.494 -118.53682] [34.494 -118.53682] [34.494 -118.53682] [34.494 -118.53682] [34.494 -118.53682] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.50391 -118.53888] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.54184 -118.54674] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234] [34.61662 -118.56234])] [:line ([33.93812 -118.38392] [33.93929 -118.38525] [33.93928 -118.3853] [33.93928 -118.3853] [33.94034 -118.38643] [33.94035 -118.38644] [33.94035 -118.38644] [33.94052 -118.3866] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [33.94054 -118.38661] [34.17251 -118.57578] [34.17251 -118.57578] [34.17297 -118.57561] [34.17297 -118.57561] [34.17297 -118.57561] [34.17297 -118.57561] [34.199 -118.45619] [34.199 -118.45619] [34.19897 -118.45498] [34.199 -118.45499] [34.199 -118.45499] [34.19893 -118.45431] [34.19895 -118.4543] [34.19895 -118.4543] [34.19897 -118.45358] [34.19895 -118.45356] [34.19895 -118.45356] [34.19888 -118.45235] [34.1989 -118.45236] [34.1989 -118.45236] [34.19888 -118.45162] [34.1989 -118.45161] [34.1989 -118.45161] [34.19893 -118.45095] [34.1989 -118.45093] [34.1989 -118.45093] [34.19888 -118.44966] [34.19888 -118.44966] [34.19888 -118.44966] [34.19881 -118.44881] [34.19881 -118.44881] [34.19881 -118.44881] [34.19881 -118.44881] [34.19881 -118.44881] [34.19867 -118.43342] [34.19867 -118.43342] [34.19867 -118.43342] [34.19867 -118.43342] [34.19867 -118.43342] [34.19844 -118.41282])] [:line ([34.26049 -118.84598] [34.26049 -118.84598] [34.26049 -118.84598] [34.26049 -118.84598] [34.26049 -118.84598] [34.26049 -118.84598] [34.26049 -118.84598] [34.26049 -118.84598] [34.26049 -118.84598] [34.26049 -118.84598] [34.26049 -118.84598] [34.26049 -118.84598] [34.25533 -118.8441] [34.25533 -118.8441] [34.25533 -118.8441] [34.25533 -118.8441] [34.25533 -118.8441] [34.25439 -118.84375] [34.25439 -118.84375] [34.25439 -118.84375] [34.25439 -118.84375] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.25345 -118.84343] [34.14346 -118.80323] [34.14346 -118.80323] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.14258 -118.8029] [34.13015 -118.7982] [34.13015 -118.7982] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.12926 -118.79786] [34.10319 -118.78824] [34.10319 -118.78824] [34.10319 -118.78824] [34.10106 -118.78749] [34.10106 -118.78749] [34.10106 -118.78749] [34.10106 -118.78749] [34.10017 -118.78716] [34.10017 -118.78716] [34.10017 -118.78716] [34.10017 -118.78716] [34.10017 -118.78716] [34.10017 -118.78716] [34.10017 -118.78716] [34.10017 -118.78716] [34.10017 -118.78716] [34.10017 -118.78716] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.09625 -118.78575] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557] [34.01349 -118.75557])] [:line ([33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.77541 -117.96166] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.78473 -118.02069] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.7925 -118.07419] [33.81839 -118.25598] [33.81839 -118.25598] [33.81839 -118.25598] [33.81839 -118.25598] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.81876 -118.25835] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.83432 -118.36653] [33.8513 -118.50745] [33.8513 -118.50745] [33.8513 -118.50745] [33.8513 -118.50745] [33.8513 -118.50745] [33.8513 -118.50745] [33.8513 -118.50745] [33.8513 -118.50745] [33.8513 -118.50745] [33.8513 -118.50745] [33.8513 -118.50745] [33.85251 -118.52108] [33.85251 -118.52108] [33.85251 -118.52108] [33.85251 -118.52108] [33.85251 -118.52108] [33.85251 -118.52108] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359] [33.85268 -118.52359])]], :opts {:height 800, :width 800}}"}
;; <=
;; @@
(defn memory-stats []
(let [rt (java.lang.Runtime/getRuntime)
free-memory (.freeMemory rt) ;; an approximation to the total amount of memory currently available for future allocated objects, measured in bytes.
total-memory (.totalMemory rt) ;; the total amount of memory currently available for current and future objects, measured in bytes.
max-memory (.maxMemory rt) ;; the maximum amount of memory that the virtual machine will attempt to use, measured in bytes
memory-percent-used-of-host (double (/ free-memory total-memory))
memory-percent-used-of-jvm (double (/ free-memory max-memory))
]
{:memory-percent-used-of-host memory-percent-used-of-host
:memory-percent-used-of-jvm memory-percent-used-of-jvm
:free-memory free-memory
:total-memory total-memory
:max-memory max-memory
}))
(memory-stats)
;; @@
;; =>
;;; {"type":"list-like","open":"<span class='clj-map'>{</span>","close":"<span class='clj-map'>}</span>","separator":", ","items":[{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:memory-percent-used-of-host</span>","value":":memory-percent-used-of-host"},{"type":"html","content":"<span class='clj-double'>0.1935113817287127</span>","value":"0.1935113817287127"}],"value":"[:memory-percent-used-of-host 0.1935113817287127]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:memory-percent-used-of-jvm</span>","value":":memory-percent-used-of-jvm"},{"type":"html","content":"<span class='clj-double'>0.1905446903833587</span>","value":"0.1905446903833587"}],"value":"[:memory-percent-used-of-jvm 0.1905446903833587]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:free-memory</span>","value":":free-memory"},{"type":"html","content":"<span class='clj-long'>2000503400</span>","value":"2000503400"}],"value":"[:free-memory 2000503400]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:total-memory</span>","value":":total-memory"},{"type":"html","content":"<span class='clj-long'>10337910784</span>","value":"10337910784"}],"value":"[:total-memory 10337910784]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:max-memory</span>","value":":max-memory"},{"type":"html","content":"<span class='clj-long'>10498867200</span>","value":"10498867200"}],"value":"[:max-memory 10498867200]"}],"value":"{:memory-percent-used-of-host 0.1935113817287127, :memory-percent-used-of-jvm 0.1905446903833587, :free-memory 2000503400, :total-memory 10337910784, :max-memory 10498867200}"}
;; <=
;; @@
(take 1 awacs-pings)
;; @@
;; =>
;;; {"type":"list-like","open":"<span class='clj-lazy-seq'>(</span>","close":"<span class='clj-lazy-seq'>)</span>","separator":" ","items":[{"type":"list-like","open":"<span class='clj-map'>{</span>","close":"<span class='clj-map'>}</span>","separator":", ","items":[{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:heading</span>","value":":heading"},{"type":"html","content":"<span class='clj-double'>0.0</span>","value":"0.0"}],"value":"[:heading 0.0]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:speed</span>","value":":speed"},{"type":"html","content":"<span class='clj-double'>0.0</span>","value":"0.0"}],"value":"[:speed 0.0]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:lon</span>","value":":lon"},{"type":"html","content":"<span class='clj-double'>-118.38392</span>","value":"-118.38392"}],"value":"[:lon -118.38392]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:lat</span>","value":":lat"},{"type":"html","content":"<span class='clj-double'>33.93812</span>","value":"33.93812"}],"value":"[:lat 33.93812]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:altitude</span>","value":":altitude"},{"type":"html","content":"<span class='clj-unkown'>4000</span>","value":"4000"}],"value":"[:altitude 4000]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:registration</span>","value":":registration"},{"type":"html","content":"<span class='clj-nil'>nil</span>","value":"nil"}],"value":"[:registration nil]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:icao</span>","value":":icao"},{"type":"html","content":"<span class='clj-string'>"AE1FB6"</span>","value":"\"AE1FB6\""}],"value":"[:icao \"AE1FB6\"]"},{"type":"list-like","open":"","close":"","separator":" ","items":[{"type":"html","content":"<span class='clj-keyword'>:timestamp</span>","value":":timestamp"},{"type":"html","content":"<span class='clj-unkown'>1426528704</span>","value":"1426528704"}],"value":"[:timestamp 1426528704]"}],"value":"{:heading 0.0, :speed 0.0, :lon -118.38392, :lat 33.93812, :altitude 4000, :registration nil, :icao \"AE1FB6\", :timestamp 1426528704}"}],"value":"({:heading 0.0, :speed 0.0, :lon -118.38392, :lat 33.93812, :altitude 4000, :registration nil, :icao \"AE1FB6\", :timestamp 1426528704})"}
;; <=
;; @@
;; @@