-
Notifications
You must be signed in to change notification settings - Fork 2
/
optimize_stops_1_person_bike.html
431 lines (204 loc) · 23.3 KB
/
optimize_stops_1_person_bike.html
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/leaflet.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/leaflet.markercluster-src.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/leaflet.markercluster.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/leaflet.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/MarkerCluster.Default.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/0.4.0/MarkerCluster.css" />
<link rel="stylesheet" href="https://raw.githubusercontent.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css" />
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#map {
position:absolute;
top:0;
bottom:0;
right:0;
left:0;
}
</style>
<style> #map_001bac1396f14420839458026f1e362d {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_001bac1396f14420839458026f1e362d" ></div>
</body>
<script>
var southWest = L.latLng(-90, -180);
var northEast = L.latLng(90, 180);
var bounds = L.latLngBounds(southWest, northEast);
var map_001bac1396f14420839458026f1e362d = L.map('map_001bac1396f14420839458026f1e362d', {
center:[37.7797914286,-122.465204286],
zoom: 14,
maxBounds: bounds,
layers: [],
crs: L.CRS.EPSG3857
});
var tile_layer_704b623f0320486ba8370920e4a5d9d7 = L.tileLayer(
'https://stamen-tiles-{s}.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.jpg',
{
maxZoom: 18,
minZoom: 1,
attribution: 'Map tiles by <a href="http://stamen.com">Stamen Design</a>, under <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a>. Data by <a href="http://openstreetmap.org">OpenStreetMap</a>, under <a href="http://creativecommons.org/licenses/by-sa/3.0">CC BY SA</a>.',
detectRetina: false
}
).addTo(map_001bac1396f14420839458026f1e362d);
var marker_13ecbe1e09d449858974a30a50166d72 = L.marker(
[37.77911,-122.46419],
{
icon: new L.Icon.Default()
}
)
.addTo(map_001bac1396f14420839458026f1e362d);
var icon_c6a5a89b6ebf430c8b86dbbd8c65b032 = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'black',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_13ecbe1e09d449858974a30a50166d72.setIcon(icon_c6a5a89b6ebf430c8b86dbbd8c65b032);
var popup_3ad54cc3b0674be9a1f8a6699d283392 = L.popup({maxWidth: '300'});
var html_a1c2a3b42cae4427a984419e15ef78db = $(' <div id="html_a1c2a3b42cae4427a984419e15ef78db" style="width: 100.0%; height: 100.0%;"> Home</div> ')[0];
popup_3ad54cc3b0674be9a1f8a6699d283392.setContent(html_a1c2a3b42cae4427a984419e15ef78db);
marker_13ecbe1e09d449858974a30a50166d72.bindPopup(popup_3ad54cc3b0674be9a1f8a6699d283392);
var marker_95b62665ecc6458598ddc832a7b1ebc2 = L.marker(
[37.78371,-122.483],
{
icon: new L.Icon.Default()
}
)
.addTo(map_001bac1396f14420839458026f1e362d);
var icon_5969e6658cd04a04b3daa2fb4a28967f = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_95b62665ecc6458598ddc832a7b1ebc2.setIcon(icon_5969e6658cd04a04b3daa2fb4a28967f);
var popup_5b1c642e88c64389b5f84171021e8ccc = L.popup({maxWidth: '300'});
var html_3c85ace3381c4238a2548bb6e34d23aa = $(' <div id="html_3c85ace3381c4238a2548bb6e34d23aa" style="width: 100.0%; height: 100.0%;"> Pizzetta</div> ')[0];
popup_5b1c642e88c64389b5f84171021e8ccc.setContent(html_3c85ace3381c4238a2548bb6e34d23aa);
marker_95b62665ecc6458598ddc832a7b1ebc2.bindPopup(popup_5b1c642e88c64389b5f84171021e8ccc);
var marker_ecf54026275146a5a92b333ed153be51 = L.marker(
[37.78113,-122.46995],
{
icon: new L.Icon.Default()
}
)
.addTo(map_001bac1396f14420839458026f1e362d);
var icon_84ef3a48e0f84c47b486529feec6f488 = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_ecf54026275146a5a92b333ed153be51.setIcon(icon_84ef3a48e0f84c47b486529feec6f488);
var popup_362ad984bf9b4652b7d316f24317b0b9 = L.popup({maxWidth: '300'});
var html_7bef6dc58b5b48a69187a96cfdcc17e2 = $(' <div id="html_7bef6dc58b5b48a69187a96cfdcc17e2" style="width: 100.0%; height: 100.0%;"> Lamps Plus</div> ')[0];
popup_362ad984bf9b4652b7d316f24317b0b9.setContent(html_7bef6dc58b5b48a69187a96cfdcc17e2);
marker_ecf54026275146a5a92b333ed153be51.bindPopup(popup_362ad984bf9b4652b7d316f24317b0b9);
var marker_cb0331fef0e845168feafa30f4075b90 = L.marker(
[37.78278,-122.46351],
{
icon: new L.Icon.Default()
}
)
.addTo(map_001bac1396f14420839458026f1e362d);
var icon_2b04c0cbf81245a9bebf194b48211d91 = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_cb0331fef0e845168feafa30f4075b90.setIcon(icon_2b04c0cbf81245a9bebf194b48211d91);
var popup_d3942c5fd7a84d0ab653dd4522b0f27c = L.popup({maxWidth: '300'});
var html_63c5e9dc07744033b2d3dcc58a7d76aa = $(' <div id="html_63c5e9dc07744033b2d3dcc58a7d76aa" style="width: 100.0%; height: 100.0%;"> Toy Boat</div> ')[0];
popup_d3942c5fd7a84d0ab653dd4522b0f27c.setContent(html_63c5e9dc07744033b2d3dcc58a7d76aa);
marker_cb0331fef0e845168feafa30f4075b90.bindPopup(popup_d3942c5fd7a84d0ab653dd4522b0f27c);
var marker_22810ba3df234765b26a9fb681013cb1 = L.marker(
[37.78621,-122.45184],
{
icon: new L.Icon.Default()
}
)
.addTo(map_001bac1396f14420839458026f1e362d);
var icon_ee463c1599564f26aa8402af2d642abc = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_22810ba3df234765b26a9fb681013cb1.setIcon(icon_ee463c1599564f26aa8402af2d642abc);
var popup_5f7da5ecf23d4c2780e89cd2be5a01c4 = L.popup({maxWidth: '300'});
var html_39d86bc8a0a94f36b5df6ce3bd168e3d = $(' <div id="html_39d86bc8a0a94f36b5df6ce3bd168e3d" style="width: 100.0%; height: 100.0%;"> Noah's Bagels</div> ')[0];
popup_5f7da5ecf23d4c2780e89cd2be5a01c4.setContent(html_39d86bc8a0a94f36b5df6ce3bd168e3d);
marker_22810ba3df234765b26a9fb681013cb1.bindPopup(popup_5f7da5ecf23d4c2780e89cd2be5a01c4);
var marker_5addfa2948154109a9dd457349a31202 = L.marker(
[37.77558,-122.45833],
{
icon: new L.Icon.Default()
}
)
.addTo(map_001bac1396f14420839458026f1e362d);
var icon_78ae163a38154f96a8e18c780013122d = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_5addfa2948154109a9dd457349a31202.setIcon(icon_78ae163a38154f96a8e18c780013122d);
var popup_3cde7e4025994fbdb1b7c4cb82895605 = L.popup({maxWidth: '300'});
var html_e80372cfd284482994c0e3650010e9c0 = $(' <div id="html_e80372cfd284482994c0e3650010e9c0" style="width: 100.0%; height: 100.0%;"> Arguello Market</div> ')[0];
popup_3cde7e4025994fbdb1b7c4cb82895605.setContent(html_e80372cfd284482994c0e3650010e9c0);
marker_5addfa2948154109a9dd457349a31202.bindPopup(popup_3cde7e4025994fbdb1b7c4cb82895605);
var marker_26efaf961fc04f43a328c978362cbdbd = L.marker(
[37.77002,-122.46561],
{
icon: new L.Icon.Default()
}
)
.addTo(map_001bac1396f14420839458026f1e362d);
var icon_12c83c54cf6b4b0fbc94f0d3be6229ba = L.AwesomeMarkers.icon({
icon: 'mapmarker',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_26efaf961fc04f43a328c978362cbdbd.setIcon(icon_12c83c54cf6b4b0fbc94f0d3be6229ba);
var popup_d14731495881456e9c37dfdd71d0be1f = L.popup({maxWidth: '300'});
var html_1533b42a57f04831828caec9a4341690 = $(' <div id="html_1533b42a57f04831828caec9a4341690" style="width: 100.0%; height: 100.0%;"> de Young Museum</div> ')[0];
popup_d14731495881456e9c37dfdd71d0be1f.setContent(html_1533b42a57f04831828caec9a4341690);
marker_26efaf961fc04f43a328c978362cbdbd.bindPopup(popup_d14731495881456e9c37dfdd71d0be1f);
var poly_line_59604b0517504a57a09106d3b3f9b270 = L.polyline(
[[37.779106, -122.464158], [37.779056, -122.465233], [37.779006, -122.466301], [37.778957, -122.467377], [37.778907, -122.468445], [37.778861, -122.469513], [37.778812, -122.470589], [37.778781, -122.47123], [37.778762, -122.471657], [37.778755, -122.47184], [37.778743, -122.472123], [37.778736, -122.47226], [37.778713, -122.472725], [37.778663, -122.473847], [37.77861, -122.474976], [37.778564, -122.476044], [37.778514, -122.477112], [37.778465, -122.478188], [37.778415, -122.479256], [37.778369, -122.480332], [37.77832, -122.4814], [37.77827, -122.482468], [37.780132, -122.482605], [37.780258, -122.482613], [37.781738, -122.48272], [37.782119, -122.48275], [37.783718, -122.482903], [37.783718, -122.482903], [37.782119, -122.48275], [37.782169, -122.481675], [37.782215, -122.480607], [37.782264, -122.479531], [37.782314, -122.478463], [37.782363, -122.477395], [37.782409, -122.476319], [37.782459, -122.475251], [37.782512, -122.474129], [37.782566, -122.473008], [37.782585, -122.472542], [37.782592, -122.472397], [37.782604, -122.4721], [37.782611, -122.471932], [37.782661, -122.470864], [37.782707, -122.469788], [37.782382, -122.469765], [37.78115, -122.469704], [37.78115, -122.469704], [37.782382, -122.469765], [37.782707, -122.469788], [37.782756, -122.46872], [37.782806, -122.467652], [37.782855, -122.466584], [37.782901, -122.465508], [37.782951, -122.46444], [37.783, -122.463372], [37.782791, -122.463402], [37.782791, -122.463402], [37.783, -122.463372], [37.78305, -122.462296], [37.783096, -122.461228], [37.783145, -122.460152], [37.783195, -122.459031], [37.783615, -122.459061], [37.783824, -122.459076], [37.783878, -122.45794], [37.783927, -122.456833], [37.783977, -122.455735], [37.78403, -122.454628], [37.784038, -122.454415], [37.784049, -122.454224], [37.784053, -122.454033], [37.784057, -122.453843], [37.784057, -122.453652], [37.784168, -122.453667], [37.784267, -122.453682], [37.784378, -122.453698], [37.784496, -122.453713], [37.784614, -122.453728], [37.784732, -122.453736], [37.784851, -122.453743], [37.784976, -122.453751], [37.785106, -122.453751], [37.785236, -122.453759], [37.785358, -122.453759], [37.785465, -122.453759], [37.785511, -122.453759], [37.785556, -122.453751], [37.785594, -122.453728], [37.785633, -122.453698], [37.785659, -122.45366], [37.785682, -122.453614], [37.785694, -122.45356], [37.785705, -122.453499], [37.785713, -122.453431], [37.785717, -122.453377], [37.785724, -122.453278], [37.78577, -122.45292], [37.785877, -122.45208], [37.785911, -122.451798], [37.785911, -122.451798], [37.785877, -122.45208], [37.78577, -122.45292], [37.785724, -122.453278], [37.785717, -122.453377], [37.785713, -122.453431], [37.785705, -122.453499], [37.785694, -122.45356], [37.785682, -122.453614], [37.785659, -122.45366], [37.785633, -122.453698], [37.785594, -122.453728], [37.785556, -122.453751], [37.785511, -122.453759], [37.785465, -122.453759], [37.785358, -122.453759], [37.785236, -122.453759], [37.785106, -122.453751], [37.784976, -122.453751], [37.784851, -122.453743], [37.784732, -122.453736], [37.784614, -122.453728], [37.784496, -122.453713], [37.784378, -122.453698], [37.784267, -122.453682], [37.784168, -122.453667], [37.784057, -122.453652], [37.784057, -122.453843], [37.784053, -122.454033], [37.784049, -122.454224], [37.784038, -122.454415], [37.78403, -122.454628], [37.783977, -122.455735], [37.783927, -122.456833], [37.783878, -122.45794], [37.783824, -122.459076], [37.783615, -122.459061], [37.783195, -122.459031], [37.782798, -122.459008], [37.78276, -122.459], [37.781848, -122.458939], [37.781333, -122.458901], [37.781211, -122.458893], [37.780574, -122.458848], [37.779731, -122.458787], [37.779357, -122.458756], [37.778858, -122.458718], [37.778774, -122.458718], [37.778011, -122.458657], [37.777736, -122.458642], [37.777595, -122.458634], [37.777286, -122.458611], [37.777126, -122.458596], [37.776844, -122.458573], [37.776187, -122.458527], [37.776119, -122.458527], [37.775615, -122.458489], [37.775569, -122.458504], [37.775569, -122.458504], [37.775245, -122.458458], [37.774982, -122.458443], [37.774703, -122.45842], [37.77441, -122.458405], [37.774299, -122.45839], [37.774215, -122.458382], [37.774173, -122.458375], [37.774116, -122.458382], [37.774066, -122.45839], [37.774017, -122.458405], [37.773963, -122.458428], [37.773902, -122.458466], [37.773841, -122.458512], [37.773788, -122.458558], [37.773643, -122.458695], [37.773532, -122.458802], [37.773441, -122.458886], [37.773349, -122.458977], [37.773296, -122.459015], [37.773262, -122.459031], [37.773227, -122.459038], [37.773208, -122.459145], [37.773193, -122.459267], [37.773147, -122.45961], [37.773117, -122.459824], [37.773036, -122.460396], [37.773014, -122.460511], [37.772987, -122.460618], [37.772953, -122.460717], [37.772918, -122.460793], [37.772872, -122.460877], [37.772819, -122.460946], [37.772766, -122.460999], [37.77272, -122.461037], [37.772659, -122.461083], [37.772598, -122.461121], [37.772537, -122.461159], [37.772464, -122.461213], [37.772403, -122.461266], [37.772346, -122.461319], [37.772285, -122.461388], [37.772228, -122.461472], [37.772171, -122.461564], [37.772121, -122.461663], [37.772037, -122.461831], [37.772003, -122.461892], [37.771968, -122.461937], [37.771915, -122.461983], [37.771873, -122.462006], [37.771831, -122.462029], [37.771778, -122.462052], [37.771755, -122.461922], [37.771724, -122.461739], [37.771575, -122.460831], [37.771545, -122.460633], [37.771442, -122.459954], [37.771419, -122.459824], [37.771339, -122.459343], [37.771316, -122.459176], [37.771282, -122.459183], [37.771251, -122.459198], [37.771224, -122.459206], [37.771125, -122.459244], [37.771041, -122.459282], [37.770969, -122.459321], [37.770896, -122.459359], [37.770828, -122.459404], [37.770767, -122.45945], [37.770706, -122.459511], [37.770652, -122.459572], [37.770626, -122.459603], [37.770599, -122.459641], [37.770553, -122.45971], [37.770511, -122.459794], [37.770473, -122.459885], [37.770439, -122.459984], [37.770416, -122.460076], [37.770397, -122.46019], [37.770378, -122.460305], [37.770362, -122.46045], [37.770351, -122.460595], [37.770339, -122.46074], [37.770332, -122.460877], [37.770336, -122.461014], [37.770343, -122.461152], [37.770343, -122.461289], [37.770339, -122.461419], [37.770328, -122.461541], [37.770313, -122.461678], [37.77029, -122.4618], [37.770263, -122.461937], [37.770236, -122.462052], [37.769996, -122.463059], [37.769977, -122.463143], [37.769718, -122.464264], [37.76968, -122.464402], [37.769668, -122.464448], [37.769638, -122.464524], [37.769695, -122.46457], [37.76976, -122.464608], [37.769798, -122.464669], [37.769832, -122.464798], [37.769863, -122.464882], [37.769958, -122.465012], [37.769958, -122.465012], [37.769863, -122.464882], [37.769832, -122.464798], [37.769798, -122.464669], [37.76976, -122.464608], [37.769695, -122.46457], [37.769638, -122.464524], [37.769668, -122.464448], [37.76968, -122.464402], [37.769718, -122.464264], [37.769977, -122.463143], [37.769996, -122.463059], [37.770236, -122.462052], [37.770263, -122.461937], [37.77029, -122.4618], [37.770313, -122.461678], [37.770328, -122.461541], [37.770339, -122.461419], [37.770343, -122.461289], [37.770343, -122.461152], [37.770336, -122.461014], [37.770332, -122.460877], [37.770339, -122.46074], [37.770351, -122.460595], [37.770362, -122.46045], [37.770378, -122.460305], [37.770397, -122.46019], [37.770416, -122.460076], [37.770439, -122.459984], [37.770473, -122.459885], [37.770511, -122.459794], [37.770553, -122.45971], [37.770599, -122.459641], [37.770626, -122.459603], [37.770652, -122.459572], [37.770706, -122.459511], [37.770767, -122.45945], [37.770828, -122.459404], [37.770896, -122.459359], [37.770969, -122.459321], [37.771041, -122.459282], [37.771125, -122.459244], [37.771224, -122.459206], [37.771251, -122.459198], [37.771282, -122.459183], [37.771316, -122.459176], [37.771339, -122.459343], [37.771419, -122.459824], [37.771442, -122.459954], [37.771545, -122.460633], [37.771575, -122.460831], [37.771724, -122.461739], [37.771755, -122.461922], [37.771778, -122.462052], [37.771808, -122.462182], [37.771835, -122.462304], [37.771976, -122.462853], [37.772029, -122.463051], [37.772083, -122.46325], [37.772148, -122.463494], [37.772266, -122.463913], [37.772308, -122.464074], [37.772365, -122.464272], [37.772399, -122.464402], [37.77243, -122.464524], [37.77246, -122.464654], [37.772487, -122.464791], [37.77251, -122.464921], [37.772533, -122.46505], [37.772556, -122.46518], [37.772563, -122.465226], [37.772575, -122.46531], [37.77259, -122.465424], [37.772602, -122.465539], [37.772609, -122.465653], [37.772613, -122.465745], [37.772613, -122.465844], [37.772712, -122.465851], [37.772785, -122.465859], [37.772953, -122.465867], [37.77317, -122.465882], [37.773403, -122.465897], [37.775272, -122.466034], [37.777137, -122.466164], [37.778915, -122.466294], [37.779006, -122.466301], [37.779056, -122.465233], [37.779106, -122.464158]],
{
color: 'blue',
});
map_001bac1396f14420839458026f1e362d.addLayer(poly_line_59604b0517504a57a09106d3b3f9b270);
</script>