This repository was archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
461 lines (460 loc) · 47.2 KB
/
index.html
File metadata and controls
461 lines (460 loc) · 47.2 KB
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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
<!DOCTYPE html>
<html lang="zh-hant-TW">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>天氣即時預報</title>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="bower_components/components-font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="css/svg.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="app">
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<img src="img/logo.png" class="logo">
</div>
<div class="collapse navbar-collapse navbar-right">
<ul class="nav navbar-nav">
<li class="active"><a href="#">首頁</a></li>
<li><a href="#">預報</a></li>
<li><a href="#">觀測</a></li>
<li><a href="#">空氣</a></li>
</ul>
</div>
</div>
</nav>
<div :class="['info-box', {'out': hideInfoBox}]">
<button class="btn-minimize" @click="hideInfoBox = !hideInfoBox">
<i :class="['fa', {'fa-angle-right': !hideInfoBox}, {'fa-angle-left': hideInfoBox}]" aria-hidden="true"></i>
</button>
<div class="info-title">
<img src="img/exclamation-triangle.png" class="exclamation-triangle">
<div class="table-cell headline">
<h1 class="first-title">全台注意強風豪雨</h1>
<h4 class="second-title">下週二颱風可能襲擾</h4>
</div>
</div>
<div class="well typhoon-info">
<div>
<div class="number">{{formatTyphoonNumber}}</div>
<h1 class="title">{{typhoonInfo.chineseName}} ({{typhoonInfo.englishName}})</h1>
<small :class="['level', typhoonLevelClass(typhoonInfo.typhoonLevel)]">
<span class="level-text">{{typhoonLevelText(typhoonInfo.typhoonLevel)}}</span>
</small>
</div>
<div class="clearfix"></div>
<div :class="['impact-level', impactLevelClass(typhoonInfo.impactLevel)]">
<div class="title">對台影響程度</div>
<div class="level-text">{{impactLevelText(typhoonInfo.impactLevel)}}</div>
</div>
<div class="detail">
<span class="update-time">更新時間:{{updateTimeText}}</span>
<div class="data">
<div>中心氣壓:<span class="pressure-value">{{typhoonInfo.pressure}}</span></div>
<div>移動速度方向:<span class="wind-direction-value">{{typhoonInfo.windDirection}}</span></div>
<div>最大風速:<span class="max-wind-value">{{typhoonInfo.maxWind}}</span></div>
<div>最大陣風:<span class="gust-value">{{typhoonInfo.gust}}</span></div>
<div>七級暴風半徑:<span class="level-7-radius-value">{{typhoonInfo.level7Radius}}</span></div>
<div>十級暴風半徑:<span class="level-10-radius-value">{{typhoonInfo.level10Radius}}</span></div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div class="well selector">
<h5>颱風路徑選擇</h5>
<div class="inline-selector">
<button class="btn-route" :class="{ active: isSelectAllRoutes }" @click="selectAllRoute" data-route="all"></button>
<span class="setting-label">路徑全選</span>
</div>
<div class="inline-selector">
<button class="btn-route" :class="{ active: isDisableAllRoutes }" @click="disableAllRoute" data-route="none"></button>
<span class="setting-label">全不選</span>
</div>
<div class="avg-route">
<button class="btn-route" :class="{ active: routeSelector.avg }" @click="routeSelector.avg = !routeSelector.avg" data-route="avg"></button>
<span class="setting-label">各國平均路徑</span>
</div>
<div class="routes-list">
<div class="routes-list-part">
<div class="route-choice">
<button class="btn-route" :class="{ active: routeSelector.hko }" @click="routeSelector.hko = !routeSelector.hko" data-route="hko"></button>
<span class="setting-label">香港天文台 (HKO)</span>
</div>
<div class="route-choice">
<button class="btn-route" :class="{ active: routeSelector.jma }" @click="routeSelector.jma = !routeSelector.jma" data-route="jma"></button>
<span class="setting-label">日本氣象廳 (JMA)</span>
</div>
<div class="route-choice">
<button class="btn-route" :class="{ active: routeSelector.cwb }" @click="routeSelector.cwb = !routeSelector.cwb" data-route="cwb"></button>
<span class="setting-label">中央氣象局 (CWB)</span>
</div>
</div>
<div class="routes-list-part" style="margin-left: 0.5em;">
<div class="route-choice">
<button class="btn-route" :class="{ active: routeSelector.kma }" @click="routeSelector.kma = !routeSelector.kma" data-route="kma"></button>
<span class="setting-label">大韓民國氣象廳 (KMA)</span>
</div>
<div class="route-choice">
<button class="btn-route" :class="{ active: routeSelector.nmc }" @click="routeSelector.nmc = !routeSelector.nmc" data-route="nmc"></button>
<span class="setting-label">中國氣象局 (NMC)</span>
</div>
<div class="route-choice">
<button class="btn-route" :class="{ active: routeSelector.jtwc }" @click="routeSelector.jtwc = !routeSelector.jtwc" data-route="jtwc"></button>
<span class="setting-label">美軍聯合颱風警報中心 (JTWC)</span>
</div>
</div>
</div>
<div class="map-info">
<h5>地圖資訊切換</h5>
<div class="inline-selector">
<button class="btn-route" :class="{ active: mapInfo.gcs }" @click="mapInfo.gcs = !mapInfo.gcs" data-toggle="city"></button>
<span class="setting-label">經緯度</span>
</div>
<div class="inline-selector">
<button class="btn-route" :class="{ active: mapInfo.cities }" @click="mapInfo.cities = !mapInfo.cities" data-toggle="grid-line"></button>
<span class="setting-label">主要城市</span>
</div>
</div>
<div class="typhoon-selector">
<h5>颱風選擇</h5>
<div class="inline-selector" v-for="typh in typhoons">
<input type="radio"
name="typhoon"
class="radio-typhoon"
:id="typh.info.number"
:value="typh.info.number"
:checked="typh.info.number === typhoonInfo.number"
@click="typhoonSelected(typh.info.number)"></input>
<label class="setting-label" :for="typh.info.number">
<span></span>
({{fillSingleNum2Text(typh.info.number)}}){{typh.info.chineseName}}
</label>
</div>
</div>
</div>
</div>
<svg viewBox="0 0 1600 900" id="main-svg">
<g id="map">
<path d="M646.7 230.6l-1.2 1.3 1.2 1.2.3-.8zM652.8 445.5l2-.5 1-1.4 2.3-1.2 1.4-1.7.5-2.4-2-1.8-1 2.2-2.2 2.2-.5 1-1.3.7-.4-.2-1-.8-2-.3-.3.4v1.2l1.3 1-.5 1-2.5 2.2-.6.5-1.7.3v3.3l-1.8 2.8v2.8h1.8l1.8-1.5.2-.5-.5-1v-1.2l1.5-1.6 1.4-.2-1-1.4v-1.6l2-.3zM756 .8l4.4-.8h-4.2zM686.4 269l-.2.7-1 1.4h1l1.8-1 .4-1.8 1.5-2h-1l-1.7.8z" class="country"/>
<path d="M762.7 1h3.2l3.7 2.4 1.5-.4h1.7l1.4 2.4 2.5.8 4-2 6.2-1.8h3l5-2.4h-34.8zM649.4 229l1-.7 1 1.7 1.8-.2.3-2.6-.7-2-1.7-.4-1.2-.7-2 1.3.2 1.7.8 2zM605 862h1.8l.8-.8-1.2-1.6.2-.6v-1.3l-1.4-2.8-1.8 3-.2 2.3 1.4 1.8zM602.2 862.7l-.7 2.8.8 1.3.4-.6.6-2.2-.6-1.8zM695.4 255.8l-.5-2.2-1.5-.8-.4.8-.5 2.4 1.2 1zM695.3 309.4v-1.2l-2 1.8-.6 2 .8-.3zM680.6 245l.7 1.7 1.6-1 1.2-3v-1.4l-3-1zM782 189l.2-1-2-2.7-2.2 1.3-.4 1.7 1.2 1.4 2 .4zM722.5 154l.5-1.5-.8-.6-1.6.3-.6.8v1l1.4.8zM928.3 21.7l.6 2.2h1l.6-.5 1.2-4-1.5.3-1.5.8zM901 143.5l-1.4.7.5.3h2.5l3.6-2.3 2-4.6-3-.2.3-1.4 1.2-3.7-.2-1.6-1 .6-3.8 3.7-1.3 2.3v2.3h1.7v.7l-1 2zM605.3 224.2l-1.7 1.3 1 .8.6 1.5 1 2h1l.4-.6v-2.6zM31.2 808.2l1.3.5v-.6l-.5-.8-.8-1.2-1.4-1.6-1-.3v1l.6 3.3h1.4zM606 238.2l.7.3 1 1 1.4-.5 2.6-1.5 1-2-.8-1.2-2.4-.5-.5.8-2.6 2.4zM572.2 874.7l-1.4.4-.3 1.3.6 1 2.8 1.2.7-1.4-.4-1-1-1.3zM36 815.3l-.7.6-.3 1.2 1.4 1 .4-2.5zM47.4 825.2l-.2-2.6-.7.2-.3 1v1.3l.4.4h.4zM72.5 848l-.4-1-.8-1h-1l-2 1.4h-1.3l.3.8 2 2.3 1.7 5.2.7-.8-.2-1.3 1-2.8zM51.7 837.4v.6l1.4 2 1-1zM581.8 851l1 .8-.2-1 .2-1 2.6.2.3-1-.2-1-1.5-2.7-.2-3-.6-1.4-1-1.2-1-1-1.2-.7-.5-.7.7-4v-4.5l-.3-1.8-1-1-1.5-3-2.6-.6-2.5 2-2 .2-1.6-.8-.7-1.3-1-.7-1.7-.8-1.5-1.4-1-.5-.6 1.3.6 1.4.8 1.4 1.2 5.5.8 5.5 1.4.4 2.7-1.4h1l2 2 1 2.4.3 1.2v1.2l-1.4 6 1 2.6.2 1.3-.3 2.6.7.8 2.8 1 2.4 1.6-.2-2-.4-2-.5-4.2 1.3 1zM621.7 239.7l-1.3-1.4h-1.2v1.2l1 1.2 2 .3zM613.5 181.2l-.7-2.2-1.6-1.2.4 4 1.6 1zM609 269.8l.3.3 1 .4 1-.5 6.2-.5 3-1 4-1.8 1-1 .5-1.7-.7-2-3.4-1h-1.7l-8.7 2.5-3.3 2.5-1 1.5.5.8z" class="country"/>
<path d="M0 791.5l8.6 1.2 6.8-1.7 2.7 1.2 1.4 1 1.4 1 2 .7 2.6 2 2.3 2.8.4-.8.4-.8 2 3.5 2.2 1.7 2.6 1.7.8-1 .5-1L38 804l2.6 3.3.7 3 2.2 2.8.7 1.7h.5v-1l.4-.7 1.4 1.5.2 3 2.8 3-.5 2.4-.5 3.8.4 3.3 1 4h3l2-.3 1.3-1.3 1.3-2.6 1.6-1.5 1.5 1 1.5 1.2 1.6 4-1 3.3-2 1-1.4 1.2-.2 1.5 1.4 1.3 1.8 1 4.3-1.7.7-1.8.8.2.8 1.4 8 1.2 4 3.2 2 1.7 2 2 .4 1.3 1.2 1 2-.8H90l1.7 2 2.3.4 1.4.7 1.4 1.8.3 1.2v1l-2.5.8-2 1.3-1.5 5-.7 10.3v9.3l2 1.4-3 3.6 3 .3 5.2-1 2-2 3-2.2 2-4 2.4-3 16-7.4.7-1.3.3-1.3-1.2-2.2-1-2-7-8 2.4 1 6.7 7 4.2 3 2.5-.2 1.4-1 .8-1v-1.8l-1.5-2.5-8-7.8-1-2 7.6 6.8 2.5 1.7 1 .3 1.4-1v-2.2l1.3-1.7 1.7-1.4v-1l-1.3-1-3-1-3.5-1.5h.7l3.6.4 2.7-.2.5-1v-1l-.8-1.6-1-.4h-2.4l3-1.8 2 2.5 2.2 1 1-.3.6-1 .4-4.3.6-1 .3.7.4 2 1.4 1.3 2.5.6 1 1.2.5.5 3-1.5 2-.6 2.4-1.7 6.7-3.6 3.8-.5 2.2-4.4 2-.6 2.3-.3 3.6-2.6 3.2-2.7 3.6-1 3-3 4-.4.7-3.3.6-3 2.3-.2 1-1.5.5-1.5-.2-1.2-.8-1.5.2-2 .8-1.3v-.7l.4-.2v1.2l.6 1.2.3-1v-1l-1-2-.3-8.3 2.3.6-2-6.2 1.3-1.5 1.5-1 1 2 1.6 1.7-.6-3v-5.7l-1-1.7-1.6-4.7-1-1.3.4-4.2-.8-3.5-.2-6.4 1 2.2.4-2.3-1.4-4.8-.5-1-.3-1.4-.4-3-1.3-2.7-1.2-4v-4l-1.6-2.2-2-5-1-4.3-2-4.7-1.8-1.2-1.6-1.3-2.4-2.5-3-4.4-1.4-2.7-2.6-2.7-.3-1v-1.5l-.7-.3-.8.2-1-1.7-2-2-1.4-2.2H166l-1.4.6-1.2-.3-.7-2-2-2-3-2-1.4-1 .2-.8-4.7-3.8-4.2-2.5-1.5-4-4.6-4-4.6-3.7-5.3-7.3-3.5-2-.4-.6 3 1.2-.5-3.8 1-1.8-2-2.7-4.2-4-2.3-1-2-1.5-4.2-4.6-1.2-1.8-.6-1.8-1.6-2.5-.3-.7-2.7-4.6.5-2.3 1.8-1.7 2-4.2-.2-2 .7-2.3v-3l4-8.8 2-1.2h2.5l5.6-5.4 3-2 1.3-2.7-.7-3.2 5-5.2-.5-1.8-1.4-4v-1h1.2l.8.3 1.5 1 1.5.2 1.2-.6h1l1-.5h1.3l1 1 1.2.2 4.6-2.7.5-1.8V581l.8-2.2 3-1.3 2.6-.8 1.8-1 2.4-2.3h2.8l1.2-.2 2.3-.5 2-1 2.4.2 1.3-1.7.6-1.8h.7l.7.4 1.5 1.7 1.4-.7.6-1-.8-1.6-.3-2.3v-1.8h2.8l.5 1-.6 1.2.6 1.2 1.5 1 1.7 2 .6.5h2l1.8.2h2.6l1.7 1 1 1-1 1.5-.3 1.2 1.6.2 1.7-.4 3-.3 2.2-.6 2.6-1.6-.5-4 1 .2.8.4 2.3 3.8h1.4l.4-1 1.8 2h2.4l-.2 2.7-3.5 1-.4 2.7-2 2.4.7 2-1 3.4.5 1 1 1 1 1.4 1 1.7-.4 2.4 1.7 2.7 2 1 .6.7.5 1-1.3.3-1-.4-.2 1.2 1.4 1.7 4.5.8 5.2-.8 2.5-1.5 1-1.7.7-1V598l-5-4 .4-1 1-1 .5-.8-.6-1.2-4.4-.6-.7-2 1-2.4 3.3-2.4 1-1 .5-2 .3-2.2.6.3.6 2.4 1 .7 1.6-.2 2-1.6 3-2.8 2.6-.2 2.8-1 .5-2h1l1 .8h1l2-.3 2.3.2 1.8-1.2 5-.6 2-1.4.7-1 1.6-1.7h2.3l1.2-1.6.5-1.8h2l2.2 1 1.8 1.2 2.7.5 1.3-.7.8-.8-.3-3-.5-1.4h1l.7.5.3.6-.5 1.2 1.8 1.6 2.2 1 1.2-1 .6-1 1.6-1 2-1.2 2.2 1.6 1.2-.7.7-.6.8-4.6 2-2.2 1.3 3.3 3-.4 1.5-1.5 1-.4 1-.3 2-.6 1.3-.5.7-2 .3-1.2-1-1.4v-4.8l-1.5-2.4-1-1-.3-1.5-2-2-.3-.6v-.6l2.5-.7.5-1.3-.4-1.5 1.8-1.2 2.6-.6-.7 1.2-.3 1.5.5 1.4.4 2.7 1 1.6 2.2 1.7 1.8 3.2 2.5 2 2 .4v.6L310 550l.2.8 1 .8 2.2-.3 2.5.7 3.3 1.4.4-.8v-1.2l1.2-.6-.3-1-1-.5v-1l-.5-1 1.8-1.4h2l1.8 1.5h1.4l-.2-2.3.6-1 .5-1 1.6-1.4 1.4.4 1 2.8 2.5.3 1-.6.4-1.2 2.3-.6 2-2 2.4-.8 2.3 1 2.3 1.5h2.8l1-1.2.6-1.5 2-.7 2.7.7 2.3.6 5-2 2.4-.2 1.2-.8.4-.8.7-.7 2.3 1h3l1.2-1.6.5-4.4 1-1 2.2-.2.6-1.2-.3-1.3-1.2-.7h2l1-.7 2.6-2 1.3-4.8 3 .6 1 1 1.7-.4 2-1.2 1.5-1.7h1l.3 2 .5 1.2 1.2-.8 1-3v-1l-.6-.5.7-1.2 2.8-.4 1.2.4 1-2.6 1.7-2h2.4l1.5-2.3 3.7-3.5v-2l-.7-1.4-3.6-.4-.7-1v-1l1.2-.2 1 .2 1.6-.2.2-2 1.8-1.7h2.6l2.4 1.4 2.8-.7 3.7.5 2.3-1 1.5-3.3-.6-1-1.2-.5v-.7l1.6-.4 2.8-1.5 2-.4 1.2-2-1-3 1.5-2.2 1.2-.3 5 .5 1.3-.6-1-2-1.8-1.3-.6-1.5.8-1 2-.4 2 .6 2-.4 1.8 1.3 2.2 1 .8-.5v-1.2l-2-4 .3-2.7 1.5-3.3.8-2.4-.7-2.2h-3l-2 1.4h-2l-1.7-.6-3-3.7 2.2.5 2 1 1.3.3h2.3l2.6-2 3-2.7 2.6-1.5 2-1v-.8l-1-1-.2-1-1-2.6-1.6-1.5-2-.3-.4-1.4-.8-1.4V439l1.5 1 1.4.4 1.5-1 .5-1.6 1-.4-.4 1.3.2 1.5.5 1.3h1v2l2 .6 1.8-1 1.2-1 .3-3 1-2.6 3.4-5.4 2.4-1.6 2-2.6 1.8-1.6 1.6-2.4.5-1.8-1-2.5 2-1.6-.2-1.3.7-1.5 3.6-3.8v-1.2l-1.7-1-.4-1h1.6l2 .3 1.5-1 2-3 1.4-3.4 1.2-1 1.6-.4 1.3 3.2 2-.2 3.7-2.4 2.4.8v-2l-1.6-4-1.6-3 1-2 1.8-.5 1-1 .8-2-3-2 2.5.3.8-1-.4-1.5-3.5-2.8-1.8-.4 1-1.5 1-1h3l1.5-.6 1.8.7 1.5 2.5 1.6-.2 1.2-9.2-.7-3-1-.6-1.8.6-3 2.4-4.6.7 1.6-1.5 2.5-1.2 5.6-5 4.3-2.5-1.6-.4-1.8-.2-3.2-1.5-3.3-.8-6-6.6-2-1.4-2-.6H486l-6.2 3.8-6.5.7-3.4-4.6-3.3 1.5-2.3-.5-.7.3-1 .3 1.3-1 5-2.8h4.4l4.6 1 1.8-1 1-2.2 1.5-2.3 7.5-3.7 2.7-2.4 2.6-1.3 3.7-.6 2.3-.2 2.6-1.2-1-4-1.2-2.6-3-4-7.6-4.5-3.5-3.8-3.6-2.4-3-.8-3.5-2-1-2.6-.8-1.6-5.3-1-3.5 1.8-3.8 1.2-3.7-.8 1-.6.5-.4 2 .3 8.2-3.8 3.4.7 3.3 1.3 4.4 4.3 4.2.7 2.8-.5h2l8 4 2 .3h2.5l-.2-3-.5-2.3-2-2.5-1.8-1.5-4.5-2-1-.7-1-1.4v-4.4l-1.6-1.4-1.2-.8-7.3-3-3.2-2.5V282l1-2-.6-4.8-3.3-6-3-6.7-2.7-4v-2l-2-4-2.4-8.3-1.4-2.8-1.6-1.4-5.8-3.3-4.7-1.4-4.5-2.3-3.8-3.6-1.8-1h-3.7l-.8-2.7 1-4.4 3.4-2.8 2-5 2.2-1.6 2-3 2.7-3.3 2.2-1 1.4-.6 1-1.4 1.6-1.3 1.2-1.6.6-1.6 4-2 1.6-1.3-.5-.6-2-.2-2-2.8.4-1 1.5-1.3 2-.5h1.5l.4 1-.3 2 .5 1 1 .7 3.2-1.5 3-.6 1-1v-4.7l.7-2 1.5-1.2 1.6 1 1.2-.5.2-1.2-.5-1.4-2-2 .2-.7h1.7l2.7 1 1.6-.4 2.2-1.5 6.5-2 6.2-2.8 6.4-3.4 2.7-.3 2.8.3 1 1 .4 1.2.4.8.8.4h1.6l2.8-2.2 1.5-1 .2-1.4-.8-.4-1-1.3 1.6-2 1.8-1-.4-4 2.3-2.2-1.5-.6-2.7.5h-3.8l-4-1.4-1.5-2H508l-1.2 1-1 1.3-3.7-.4H498l-3.2-1.7-3-1.8-4-.6-4-3.5-7.3-3-9.2 3.8-2 .2-.7.4.8.6.7 1-3.8 3.5-6.7 4v2.7l-3 2.7-7.5.7-4-.3-4.2-1.8-2.7-2-1.3-1.6v-4.5l1-4 1-.6 1.4-1.2-.4-1.3-.8-.8v-1l-.2-2.5-2.2-4-3.4-2.2h-3.2l-3 .8-12.8-2.4-6-3.6-2.7-3-2.3-5.8v-1.8l1.4-4.5 4-8 2-1.5 4.2-1 2.6 1 3.7 3.5 4-1.5 3.8-1.6 3 .4 2-.3 2 .2 1.5-.6 1.5-1 4.5-5.3 1-4.2 1.4-3 1.7-2.4 4.8-4.3 6.3-2.3 12.5-6 2.7-.8 7-10.3 1.8-1.7 2-1 2-2 2-2.5 2-1.7 9 .7 1.3 1h3.2l1-1 1-2.6.5-.3.6 3.8 7 4.3 1 2.5L513 68l-.3 1.2-1.5 3-.3 1-5 6.4-2.8 2.5-1.7 2.8-6.8 3-1.2 2.5 1 2v1.3h-1l-1.6.5-3.4 2.2.5.7.3 1.8-.6 2 2 .2h3.8l6.6-.7.7.4-1.3 1-2.3 2.3-1 1.4 1.4 3-10 4.3-2 .3-2 .8.5 3 1 2.3 1-.3.8-.6 2-1 4.8-.7 3.3-1 .6-.7-1-1.8 1-1.3 1.8-.2 1.4.5 1.5-.2 1.4-1 1.4-.5 1.7-1 1.8-1.7 2.5-3.2 2.7-2.7 12.2-6.6 2.8-.6 1.8-1.4 4.7-.4 1-1 2-1 3.4-.3 2-.6 1-1.5.8-1.3 2.7 1.7 8.4-.5 4-2.5 2-2.4.2.3.3.2-.6 2.5 1.4 1.2 3.7 2 1.2 2.2.8 3 1.4-.6.7-.6.2-2.5.8-.5 2.2 1.6 5.7 3.2h2L588 97l.3 2.7 1 3-.2 1-6 11.6.3 2 3.2 1.7h3l1.6.5 1.7 1-1.6.4h-1.7l-2.6.3-6 3-2 2-2.4 4v3l-4.5 3 2 .7 3.2-.4 2 1 4.2-.4 1 .2 1 .7-1.3.4-5 3 1 .2 1.7 1 5 1.2 1.3 2.7v.6l1 .3 1-.3 3.3-2.4 2.3-2.8.5-1.3 1.8-.6 4.2 3h2.7l1.6 3.6 1-.6 1-1.8 4-1.3 5 2 1.3.3.2.2-.3.8-1 .3-.4.7.5 1.8.6 1 1.4 2-.2 2.8 1 1 2.4 3.2-1 2.8.6 1 .3 1.5 2 3.5 2.2.5.4.5-.3 1-2 1.2v1l-1-.6-1.3-2.8-2.3-.3-2.6-1.7-2.2.4-1.4 1-1.8.3-3.3 2.4-1.4 2.8.5 2.2h1.2l3.8 1 1-.7 1.4-.4.5 3 1 3V185l.2 3-.5 1.8 1.4 1.8 2 1.8.2.7-.7 1-.4 1.5 2 .6.7.7-1 3-2.7 1.5-1.4 1.2-1.3.6v1l1.8.6 1.3.4-.8 1-2 1-1 1-1.5 4-.8 2.6-1.7 1.7 1 3 1.6 3 .6 3 1.4.4 1.7-.6 1 .3-1.2 1.2-1.6.5.7.5.4 1-2.2.2-3-.7-1 1.3 1.7 2.2 3.6 2.6.7 1.8v2l.6 1h1.3l.6-2.3 3.5-3 1 .6.7 1.2 1.8.3 3.2-4.4 5.3-4 .5 1-.2 1.5-1.6 1.6-.5 1.6 3.5 2.3 1.4-1 .4-1.4 2-2-1.5-1.6-1-1.5.5-2.3 1.7-.6 1.2.3 1 2 1.6 2 2-.8.6-1.7-2-1.6-.5-1.3.6-1 1.4-.8 3.8-.4 2.5-1.4h1.5l1.4 2.3 1.4.5h3l2.7 1 1.3.2v-1.6l-.6-2.3 1-1.5 1.3-.8 3-.5 3.8.7 4.6-.2 2.4-.6 3.3-1.6 2.8-4 2.3-4.6 1.6-5.2 1.7-7 .3-3-1.6.4-1.2 1-.8-.5-.5-.8V191l-.4-2V186l.8-1.7.5-2.3-.4-4.5 1-3-1.2-5-.2-3.7-2-6-6.8-11-5-6-5.5-8-6-12.4-1-1.5-2-1.8-2.2-1.2-1-.8-3.6-2.3-4.5-5.2-2-1.2-3-.5-2-1-2.5-.8-.3-2.5 1-2 .7-1 1.6.8.7-2.4v-3l-.6-3.6 1-2.5 7.3-3.2 2.4-2.8 3.5-1h4.7l2.2-1.6 3-1.3 2.3-2 2.2-3.3 3.3-1.2 2.5-2 4-1.7 3.3-5 2.4-1.7 9-3.8.7-2-.6-5.6 1.3-5-.2-2.6-2-3 .2-2.8 1.8-3.4 3-2.7 1-2.7 2-2.7L702 25l2.7-1.5L706 21l2-1 3.4-2.4 2.7.3 1.8.4 1.2-.8 1-.7 2.5-5.8-3-3.8 1.2-.5 4.5 1 2-.3 3.2.5 2-2 1.2-2.2 2.5-1.5 1.6-2.5H0zM595 850.4l.8-3.5-.4-1.3h-.5l-1 1.5-.7.3-1.4 1.3-.2 3-.6 1.7 1 .7 1.3 2.2 1.4 1.3.5 1.4.4-.6v-.6l-.2-.5.5-2.7zM597.4 830.3l-1-2.2-2-1.6H593l.3-1 .7-1-.4-1.5-2-4-.5-1.3.3-1.5v-1.4l-1-1.4V809l1.3-2.5-.2-2 .8-1.4-1.3-1.3-2-.8-1.2-.3-.8-.7.2-1.6-.5-1.5-1.7-2-2.2-1-7.4.8-6.7.2-6.6-1 1 4 1.3 4 1.5 2 2 2 1 .5 2.6.8 1.8 2 1 1 .7 1 1.4 2 1.3.5 1.4-.3.2 1.5-.5 1.6-1.5 2 .7 2 2 3.2 1.3 1.3 1.7.6 2 3h1.8l3 .8 4.6-.5 1.2.2 1.4 1.7z" class="country"/>
<path d="M614.6 150.3l1.3.2v-3.7l-.6-1.3-2-1-1 1.3 1 3.4.3.7zM132.8 887.8l.5.5h.6l.8-.5v-1.5zM966 135.3l2.6-4.5.8-.7 3.5-1.2h2.7l2.4-.6 1-2.6.3-3.8.7-3.6.8-1.5 1-1.4.6-1.4.3-1.8 1-.5h1l1-.6.6-.6 1-1.4 1.3-.6.2-3 1.6-6 .4-5-.3-1.6.3-2v-1.5l-.3-1.5-1-3.2-1.5-3-2-6.5-3.6-5-2.5-1.7-2-2.2-.8-3-.4-3.4-.3-7.4.5-4.4.8-4.4-4.5 1.5-1-.7-3-2.4-1.3-.6-2.8-1-1 1-.8 1.4-1.4 5V51l6.5-1.5 1-.5 1-.8 1-.2 1.2 1 .4 3-.8 3.3-1 1.8-1.5 1.3-4.5-1.6-1.4.3-.8 1.5-1 1.2h-1.3l-1-.7-.7-1-1-7.5-.2-1-1.6-.6h-3l-1.3-.6-1 .8-.8 1.2.7 4.4-.6 1.7-1 3-.7 1-1.3 1-1.3.6-1.3.2-1.4.4-1.6 1.7-1 2v2l1 3.3 1.2 3-.2 1.4-1 3.5-1.5 3.3-.8 1-1.2.6h-1.7l-.3 1.2 1.6 1.2 2-.2h1.2l1.2 1 1.5 3V94l-.3 4.5-.3 1.5-.6 1.5-.8 1.3-1 1-.6 1.3-.8 3.6-1.8 6.3-1.3 2.5-2.2 2.5-2 2.8-1.4 2.7-1 2.8-1 3.7-1 3.5-1 1.2-2.7 2.5-8.7 4.6-1.6 2-1.2 3-1.5 3-1.8 2.3-2 2.3-5.6 4.8-2.6 1.4-2.6.6-4.8 2.4-9.7 3-.7.8-3.4 4.3-1 .5h-1.3l-3-.6-2.7-1.7v-3.3l-.5-2-2.3-2.4.5-1.6 1.5-.8 1.5-.5 2.6-1.7 4.5-4.2.2-1.2-.5-1-3 .6-5.7 2.3-3 1-3 5 .8 6.8-1.2 5.8-3.5 4.7-4.6 5.7-2.4 2-2.6 1.8-2 3-1.6 3.4.4 3 1.8 3-2 2.3-2.7 2-2.6 1.7-2.8 1.2-2-.4-6.6-.2-1.5-.7-1-1.2 1-2v-1.5l-1.2-.6h-1l-7.2 2.2-10.3.8-3 1.4-3 1-5.5 1-3 .3h-3l-3-.5-2.8.4-1.4.7-1.5.4-2.5-2.6h-2.7L771 208l-4 1.7-1.3.8-2 3-5 4.2-3.6 3.6-2.4 1.5-2.3 1.8-2.4 2.5-2.7 2.3-3 1.7-3 1.4-2.3 1.7-2 2.3-2 1.5-2 .6-3.3-.4-3 .4-1.3 1-1.2 1.5-.3 1 .6 7.6 1.8-.8 2-.4 1.8 1.2 2 .8 2.2-.5 2-1 1.7-.5 6.5-1 .5.3 8 5 1.3.5.3-2.8 1-2.4 1-5 1.8-2.8 2.6-.8 2.7 1.8 3 1h2.8l6-2 3 .6 1.6-1 3-1.2 2.8-1.3h.7l2.5-1 2.4-.4 4.8-.4 2.3-1 2.5-1.6 3.3-3 1-.3 2.7-.3 2.7-.8 2.6-.5 4 .3 1 .5 3.4 2.3 2.8 1 3.7-.7h3.8l1.5 1v2l-.7 1.2-2 2.2-1 1-3.2 1.7-.7.8.7 3-.2 4.6 1.2 3 2 2.4 2.2 2.3 1 2.5 1.4 2 6 1.8 5.2-2 3.8-5.8 4.8-8.6 1.5-2.2 5.2-2.2 6-1 1.3-.8.7-1.5v-1.4l-1-1-5.4-3.2-2-2.4 1-3 2.8-5.2 1.3-1 1.4-1h1.3l1 .6-1 1.5v1.8l.8 3-.2 2 1 .5.7-.3-.2-2.6.7-.6 1 .6.7 1.3 1.5.2 3-.5h1.4l.5 1.3v.7l-5.2 2.2-.4 1 6.2-1.4 5.4-.8 5 .5h2.8l2.8.2 5 1.2 1.6-3.8 2.4-3 2-2 1.8-2 .7-1.5 1-1 3.5-1.2 2.5.8 2 2-2.5 1.3v2.7l-1 4.8 1 1.4 1 .8 1.3-.2 2-2 1-1 1.6-2.7 1-3.2-.3-3.7.6-1.6.7-1.5 2-1.8 2.8-.6h2.8l2.2 1.5 1.7 2.8h1l1.3-2 .3-1-1-.5-1-1.3-.2-2.4 3-2.3V207l.4-1.7 1.2-1.3 1.8-.3h2l1.2 1 1.3 1.3-.3 1.2-1.5 1.5-2 1.7-1 2-1.8 1.5.6 1.6-.6 4.4.4 1.7-1 1.4 1 1.2 1.8.5 1-1.3 2.4-2.5 2.4-1.7 3.8-1.6 1-.7 1-1 .4-1.3v-3.5l1-3.2 3.4-3.3 1-.8 5.7-1.8-1.4-1.6-1.3-1.7-3.4-6-.8-2.2-.3-2.5.4-2 .5-2.2v-1.6l.3-1.5 2.4-6.4 1.5-3.2 1.2-1.2 1.2-1 1.8-2 .8-3.2 1-9.7-1-6.4-1-3.6-.7-3.5v-3z" class="country"/>
<path d="M765.5 281.8l2.8.7h1.5l2.6-2.4 1-3.7.8-.8 1.2-.4 1-1.4 2.4-4.4 1-3 8.5-4 1.3-.2 4 .6 2.6 1.2 4 4.4 1.4 1 .6-2.6 1-2.5 1.5-2.3 1.6-2.2 4.2-3.2 4.6-2.5-1.4-.7.5-2-1-1.6-.4-1.6v-5l-3.4.4-3.3-1-3.5-1.8-3.4-1-3 .2-3 1-3 2h-1l-1.4-.2 1 3-.4 1.7-1 1.5-2.8 1.2h-4.2l-2.5 1-1.5.2-2-2-1.4-2.4-1.4-.2-2.3 2-1.2.8-.8 2.3-1 1.5-.3 1.6-1.4 2.7-2.5 1.6-4 3-2 1.3-4.3 2-2 1.4h1.4l4.6-2 2.3-.5h.8l-.2 2.8 1 .7 1.6.3v1l-.2 1.2-.7.8v1.5l-1.2 1.8 1.7 1.4v2.4h2.6l2.6.5-1.7 3.7zM1013 23l5 2.7 3 .6 1-1 .8-1.4.3-2 .3-2 1-3 1.3-2.8 3.7-5.2 4.4-4.3 5-4 1.7-.7h-88.7l-1.2 1.2-2.5 2-2.7 2-2.4 1.3-1.6.4-1.5.6-.8 2-.8 3.8-.2 1.7.4 3.3 1.4 2.5 3 2.6 1 1 1.2 4.4-.6 3.2-1.5 3-.6 3.5.4 1.6.7 1.4 1 1.2 1.7.3 3-1 2.7-2 1-1.3 1.4-3L957 33l1.5-1.4 3.8 1.6 2.2.5 2.2.2 2-.8 1.7-1.3-1-1.3-4.8-3.8-4.3-4-1.2-.2h-2.4l-1.3-.3-2.7-2-2.2-2.6-.2-1.3.2-1.2.7-1.7 1-1.5 2.2-2 1.6-.4 1.7-.2 2.3.5 1.8 1.6 4 4 .8.5 10.2-6 10.8-1 5.7 3.2 10.3 6.2zM993.6 440.6l1.5 2.8h.6l.3-1-1-1.5-1-.5zM820.5 234.3l-1.4.7-1.6 1.2-1.8 2.8-2.2 2 .4 1.3 1 1 2.4.2 2.6-2.3-.7-3 2.5-4zM927.2 229.5l.6.8 1.3.3.4-1.3-.7-1.3h-1.4zM897.7 866.4l-.8.8-.8 1.4-.6 1.2v.6l2-2h1l.7-1-.7-1.2zM937.2 272.5l-.3.5v.8l1.3.8.4-.2.8-1-1.6-1zM1078.8 733l-1 .8.2.8.7 2 1-1.3-.4-2.2zM1080.8 641.7v-.7l-.4-.2-1-.2v1.4l.7.6zM683.3 239.8l1.7 1 .4-1.4v-1.7l2.2-3.3v-3.6l-.6-.4-3 2.2v2.3l-1.4 4zM1067.5 755.7l.5.4 1 .3 1-1v-.7l-.7-.2-2 .6zM1059.7 768.2l-1 2.4-3.5 2.4v2.8l.3.5 1 1 1-.2.8-3.6 4-4-.8-.6-1-.4zM1081.8 732v-.7l.8-1 .2-1.2.8-1-1 .2-1.7 1-.8 2.3.4.3zM1083.2 656.3l-.4.5-1.5 2.4 1.2-.5 1.4-1.5zM1081 701.6v-.5l-.5-.3h-1.5v.6l.6.4h.8zM668.7 286.4l1.4.5 1-1.4.8-.3h1.7l-.3-1.2-1-1.8-.8-.4-1 .2-1.5.4-1-.8-.4 3.3.2.8zM682.4 403l-1.7-.4 1 2.4 2.4.5v-.6l-1.2-1.2zM688.5 399.8l1.5-1.6 1.6-1.3 1.7-.6v-1l-.5-1.3-2.2 1.2-.5.4-.3.8-1.3 1h-1l-3.5.8-1.8 1.3v.8l-.8.5-1.3.3 2.8 1.4 2.2 2 2-2.2-.3-1.2.5-.5zM709.6 291.2l1-.8 1-1.6-2.4-.3-3 1.7.3 1 1 .2zM669.4 221.5l-1.3.2-2 2-2.3 2 .8 1 3 2.4 2.3-1.6zM677.4 280.4l.6-.3.8-2.2 1-.5.7-1.3-.7-.2-.7-1.7-.2-1.7-1.8 4.4-1 .5.6.8zM675 415.3l1-.5.5-1.3-.6-1-1-2.6-1 .2-.7 1.5.4 3zM803.3 237.6l1.6-1.3h.3l.5-.4.4-1-1-.4-3.6.3.2.6 1.2.8zM757.5 253l1.3-.8.8-1-.4-.2-2.8.4-1.2-1h-1.4l-.2.5.2 1.4h1.4zM762.8 246l-.5-.4-.4-1.3-.6.3-.6 1-1 1 2.3.4z" class="country"/>
<path d="M737.4 299.4l.8-2.8 1-2.7 1.3-4 1.8-3.3 6-6.7.5-1 .2-1-2.4-1.4.6-1 .3-1-1-1-1.4-1 .3-1.6 1-2H742l-4.4-.5 2-3.2 2.2-3 .3-1.3-.6-1.3-1.3-1-1.3-.4-2 .8-2 1.2-1.3.3H732l-3.2-.8-3-2-1-2.7-1.4-2.6-2.7-1.2-3-.3-1.2.3-4.4 2.2-.6 1.2-.4 1.5-1.8 2.6-2.2 1h-2.6l-1 .5-.6 1-.7.6-3.6 1-2.3 1 .4 1 .5.8-.4 1.4-3.5-1h-1l-1 .5-.8 2.8 2 1.4 3.3 2.6 2.3 1.7.6 1 1.7 3.5h-2l-1.8-1-1.3-2.6-2.4-2-.5 1.8.3 1.7.5 1.5 2.3 2.5 1 1.5-.3 2-1 2 2-1.2 2.5-2.7 2.5-1.3 2.3.6 1 1 1.3 1h1.2l1-.8.6-1.4V281l-.8-1.2-1-.4-1.5.6-1-.2-.3-2v-2.3l-1-2.5 1.2-1 1.5-1 1.3.7 2.3 1.7 1.4 3.8 2.6 3.2.5 2.6-1.6 2 1.6 1h1.8l-2 4.4-2.3 4-1.6 2.3-2 2-2.5.8-.5.6v4l.5 2.5-.6 2.2.8 1 1 1 1.3 2.4-.3 3.2-.2 1-1 .3-2.6.7 1.2 3 1.2.6 1.5.2 6.6 2.3.8-1 .5-1.3-2-2.3-.6-1.3-.3-1.5.8-3 1.4-2.6 1-1.4h1.4l1.5.4.6 1v1l-.4.7-.7.2-1 .6v1.4l1.6 3.7.5 3-.8 3-.5.8-.8.8-.5 1v1l5.2-2.5 4.7-3.7-1.6-3.2 1-1.5h1.5l2.6.7 2 .2 3-7 .5-3-.3-2.8 1-3zM712.4 343.2l-2.7 2 1.4 3.2 1.6.6 2.8-.5 1.3-2.7-.8-.6z" class="country"/>
<path d="M700.2 296.5l.2 1 2-1 2.7-3v-4l-.6-1.4-3.8.6.2 1.4-1 3.3 1 1v.5l-1.4 1.3zM725 334.5l-1.7 3.2-.2 2.6-1.6 3.4v1.5l2.2-.2.8-3.6 1.5-3 .5-3.8-.5-1-.5.2zM488.4 403.8l-.4-1-.7-.5-1.7 1.8v2h.7l2-.7zM460 813l-.4-.8.2-1-.8-1.4-1-.3-1-.7-1-.5-1.3.6 1.8 4.3v.8l.3 1.3.4.6 2-1zM462.3 807.3l1.7.4 1.7-.2.7-1.6-2-1.6-.8-2-.8 1.3-1 .4-1.3-.3-.5-.7-2.8-1.8-1-1.2-.6.2-.2.3-.2.5.3.2-.5.7v1l.6.5 1.5 2.6 1.4 1.6 2 .4zM454.6 822.6l.7-2-.6-1.2-.8.2-1.7 1h-1l.3 1 1.6.6.8.8zM148 845.6h-.5l-.6.6-2 .8.2 1.2 2-1.5zM464.7 766.8V765l-1.5-1.6-2.2-1-.4.5v1.5zM394 899.5v-1.8l-.6-.4-1.2-.2v1.6l.2 1.4h.3zM453.2 468.8l-.5-.7-1.3.4-.7 1.3.7 1-.6 1.4v1.7l1.2.6 1.8-1.2.2-.5-.5-.7.7-1.3v-.8l-.2-.4zM456 844.6l1.7-1.3.6-.8-1.4-.8-2.5-.8-2 2 .6 2.3zM549.6 799v-2.2l-1.7-3.8-2.2-1.6-.8 1 .8 1.5 3 4zM521.2 801l1.2-.7.7-1.8v-1l-1.8-1.7H518l-1.2 1 .4.5 1.5 1.2zM544.3 797l-2.3-1.4-3-1-2.5-1v2.2l.8 2.4-.6 1.6-.8 5.4-1.5 3.4v1l3.4-2.7 3-4 1.3-.5 1.3.5 2 2.6 1.4.5v.6l1.6 1-.3 1.4.8.4 2.3.5 3.3 2.2 1.5 1.6.3-1.4-.3-3.8-3.2-5-4.7-2.8-3.3-3zM522.8 838.4l-.5.4-.6.7-2 2-.6 3 .6 1.6 1.4-.8h.6l.7-.3.7-.7 1.4-3.8-.2-1.3-.7-.8zM535.8 785.7l-4-5h-2l-.2 1.3.5.6 2 1 2.8 3 2.6 1.6 2.3 2.6-2-3.8zM520.2 869l1 .8 1.5.8 2.6 1 2.3 1.2 2 5 1 1.3 1.7.3 1.7-.3 1.4-.6 1-.8 1.5-2.3.5-1.3v-1l-.2-1-4-6v-1.4l.4-1.3v-3.7l.6-1.6 2-3 .7-1.7 1-4.8 1.7-3.3 2-3 1-2 .8-2.8v-.8L543 834l-6-1.8-1 .2-4.6 2-1 .5-.4 1v1.8l-.2 1.6-1.3 2.3-1.2 1.2-1 1 1 2.8.3 2.7v3.8l-.3 1-3.5 2.3-1.5.2h-3l-1.3.5-1.2 1.6-.6 1.6.3 3.2zM495 793.6l.4-1.3-1.4-5-.2-2.2.4-2 1.2-1.7-.4-1-2-1.5-2-1.8-1.8-2.7-2-1.4-2 1.2-1-.8-1.3-.4-1-1.4-1.7-.4-4 .7-1-.2-1.4-.5-4.5-.6h-1.7l-1 1.2-.5 1.4 1.2.3h1.7l.6 2.2.6 1 1.6 1.4 2 1 .6 1 2 3.8v3l.3 1.3.4 1 1.4 1.2 1 1.4.6 1.7v1.6l1 1.6 2 2 1 .6.5.8.2 1.3 1 .4 2 .5 1-1.4 1-.6.8-.2 1 .3V799l.5-.7-.2-.8 1-2zM548 826l.6 2.4h2l-1.5-3.2h-.3zM156.8 580.4l-2-1.2-.6.8-1.2 3.6h1.3l3.5-3zM299.8 538h-1.5l.6 1.2.8.6h.5l2 2-.3-1.3-.8-1.2zM153 588.3h1.5l1.4-.5.6-1.4V585l-.8.6-1 1.5zM564.8 864.7l1.8-2.2.7-.2h1.8l.4-.8-.3-1-.6-1.2.6-3.6-2.2-1-2-1.4h-.8l-.5-.4-.4-.5-3.8.6-2 2-.7 1.3-3.7 2-1 1-1.2 1.5.3 1.3 1 2.2 1.4 1.3 4.5.6 5.7-.7zM141 590.3l2 2h1l.2-.4.6-1v-.5l-.5-.5-2.2-.8zM496.3 312.2l-.8-1-1.3-.5-.6-1.7-3-1-3.2-.3.4 1.3 2.7 3 4.4 2.5 6.3 2.3 2-.8-.5-1-1-.6zM137.6 589.3l1 .5 1 1.2.4-.5-.3-1-1.4-1.8zM612.6 896.8l-.3-3.8-2-1.3-2.7-.5-.8-1v-.6l2-1.7 1-1.3 1.4-2.4-.4-2.6-2.3-3-.4-1.2V874l-2.5.2-2-1.4-1-2.6-2-2-5.7-3.5-3-2.5h-1.2l-1.3 2.2 2.3 9.5.5 3-.7 3.2-3 .6-3-1h-1l-.8 2.6-1 1.3-2.2-.5-2.4-1.6-2-.4-1.5 1.2-.4 1.2-.6 4.5-.7 3-2.6 1-4-2-1.2.2-1 1-1 1.2-1 3-1.3 2.8-.7 1-1 .6-.5.2h56.2v-.2zM577.6 94.5h-1l-1 1.3v1.5l1.3-.8zM564.3 840l-.3-.4-1-.4-1 2.6h.7l1.5-.8zM574.5 818.6l.7.3.5-1.4-.8-.7-1-1.5-1.3-.8.3 1.4 1 2zM566.7 820.3h3l.4-1.5-1.3-2.2-1.3-1.2-1.8-.2-2 .7 1.8 3.2zM590 491.3l-1-.8-1.7-.7-.5-1.2-.7-.6-.3 3.6 2.2.4zM586.2 858l-.2-1.2-1.2-3.2-1.3-1h-1l.6 2.2zM572.4 141.3l.5-.4.2-.3v-.4l-.2-.3-.7-.2-1.3.4-.6-.2-.3 1 1 .6h1zM551.4 894.3l-1.7-2.8-2.5-1.8-2.8-.6-1.5-.7-1.7-.6-1.3 2.2-1 1-1 .6-3.7.7-1.2.8-1 1.2-.8 1-.5 1v3.2l-.8.6h22l-.4-4.4zM504.6 638.4l1.7-1.5-1-1.4-1.4.4-.8 1.4v.6l-1 1.7 1 .5zM460.2 530.2l-.3 1.6v1.4l1 1.4.7 1.6 2 6.5 1 2.3 1.3 2h-.3l1.8 1.6 2.2 1 2.5 2.2.6 1 1.7 4 .3 3.2 1.3 2 2.4.7.6-2.7.4-2.8v-3l.4-3 1.2-3 1.5-3 3.7-4 3.3-4.8 1.4-2.5 1-2.8 2-6.4 1-6.2 1.5-4.8.7-5 .6-2 2.4-3.8 2.2-6.3V494l-.4-2.8.2-2 1-1.7 1.6-2-.5-2.2-1.3-1.2-3-1.2-1-.7-1-1.2-1.3-1h-2l-1.5.6-2 2.3-6.6 2.4-1.3 1-1.8 2.6-1.6 3-1.6 2.3-2 2-3 4-11.4 19.6-.7 1.4-.2 3.3.6 3.2-.6 2.4zM420.6 498.6l-1-1.6-1.7 1.3-1.4-.2.2 1.2 3.3.5zM413.3 499.2l.8-1.6-.2-.5-1.6-.8-.3.3-.5 1 .3.3v1zM491.8 626l-.4.4v.6l.2.7 2.2 1.3h1.4l-.3-2.2zM503.3 590h-.4l-1.4 2.3v1h.8l1.2-2zM506.3 599l-1.2.6-.5 2.3h.6l.6-.2 1.7-2.6zM280 568l-2 1-1 1.3h.6l2.3-.4zM226 584.4l-.8-.8-1.8.4-1 1.3.3.6h1.4l2-.3 2 1 1-1.3v-.5l-.5-1zM193.2 620.5l-4 3.4-2.6 1.4-2.4 2-.6.8-.4 1-.4 9v1l1 2.8.6 5.4 5.4 3 2.6 1 3.7 1.2 4 .6 1.4.5 2.8 1.5 1.7-.2 2-.5.7-.3 1.4-2.2 1.4-1.2 3.7-.6h1.4l1-.7v-.7l-.3-.7 2.7-1.5 2.3-2 1-.5h1l1.6-.7 1.2-1.2.7-1.5 1-4 1-3v-1l.2-1 .8-.8 1-2 4.3-6.8 2.2-.8 2.4-1.7-.4-2.7-.6-3-.8-1.6-1.2-1-2-.7-1.5-1-1.7-2h-.6l-1.3 1-.3.6v2.5l-4-2h-.6v2l-1.2-1.6-3-.5H220l-2 1.6-4.4 1-6.2-.7-1.6.4-1.7 1.6-2.2.4-2.5-.4-1.2.5-1 1-1 2 1 .2h1.4l-2.4 2zM487 632.4l-.2 1 .3 1.2 1.3.8v-3.1l-.8-1zM409.2 874.4H408l-1 .3-3.5 3.5-3.7 3-1.5 1.7-2.7 3.2-1.7 1.3-2.4 4-.6 2.2-.3 2.2 2.3-2 2.4-1.3 1.4-.3 1-.7.7-1.4.8-1 2.6-1 2.3-1.2 2.7-1.6 2.4-2 2-2.5 1.5-3 2.2-1.5 3-.8 2-1.3 1.7-2 1.5-2 5-8.4-.6-2.3.6-1.3 1.3-.8 2.6-1 6-1.7.6-1 .3-1.3 1.3-2.4 2-2 1.3-.5 3-.6 1.3-.7 2.2-2.3V843l-1.7-3.8-2.2-6 1-2.2-.8-1.4v-1.3l.6-2.7v-1l-1.4-1-.8 1.4-3 6.3-1 1.5-1 3 1 2.3.3 1.7-.7 2.7-1.5 2.4-1 1-1 .6-1.5.6-1.3.8-4.4 5.4-.5.6-2.2 1.7-4.7 6-4.6 4.5-5.6 6.2-2 1.8zM318.4 555.5l.3-.6v-.8l-1.4-1-1.3.2v.6l1.8 2zM312.7 555.5l.2-1.7.8-1.4-4 1.3-1 1 .4.5.6.3zM514 795l-.5-1.5h-.2l-.7.8.3 1.3h.3zM283 571.3l.5-.5.2-2.3.3-.5 1.2-1-.6-.3-1.3-.2-.5 1-1.2 1 .5.6.3 1.4z" class="country"/>
<path d="M556 825.5l-1.8 2v1.3l-.4 1.4-.6 1v1.8l-2.3 5.6-2.6 4-.4 2.3-3 4-1.8 4-3 4.2.4 1.8-2 7.6-.2 2 .4 1.7 1-.6 3-3.4 3.3-8 .4-2.4 1.4-2.8 2-2.2 2-1 2-1.3 1.3-2 1.2-4.5-.5-4.5.6-3.8v-2.6l-.3-.6v-1.3l.4-2.7zM559.5 501.7l1.2-.6 1.4-4 .8-1.2-.5-.5-2.2 3.3-1 .2-1-.5-1 1 1.3 2zM546.6 873.8l-.7.3-2.3 1.4h-1v.5l1.2 1.4 1.7.7 2.2-.7-.3-2.5zM556.4 768.7l2.8 1.8 1.8-1.4h1l1 .6.6-1.6 1.2-1-.2-1.8.5-3-1.8-1.5-.7-.4-2-3.2-1 .6-.8.8-.7 1v4.7l-2 3.3zM509 792l-2.4 1.2-.3 4-1.2 1.2-.3 1.4.3 1 1 1-.4 1.3 1.3 2.2 1.8-6 1-4.5V793l.3-1zM505 845l.4.6 1-.3 1.4-1.4 1.4-1.6 2-1 8-1.8 3.7-2.7 2.2-.6.5-1.4v-1.5l.3-1 1-1 2.3-.8 2-1.4 1.3-2 1-2.2.7-1.7.2-2v-2.2h-1.2l-5 2.4v-1l.8-1-2-1.8-3-.2-2.6 1-2.8-1.2-2.4-2.2-2.6-1.6-5-2-1.4-1h-1.5l-1.2 1-.6 1.5 1 .7 3.2.8.8 1v1l-1 7.7-.2 5.5-.7 3-1.3 2.5-.3 2.8.5 1.4v1.5l-1 3.4zM506.4 770l-.4.3h-1.5l-1.2-.7-1.2 3.5.4 2.4 1 1.2 3.3 2 1-1 .2-.7 1.5-2.5-.4-1.3.3-1zM516 359.4l.4-1.2v-1.5H515l-.4.4 1 2.3zM513.7 356.4l.7-1.8-1-1-4.2-2h-3.4l.2 2 1 1.4 3.4.4 3 1.5z" class="country"/>
<path d="M457.7 704.7l-1.3-.6-1-1-1.4-1-1 .5-.4 1.2-.3 5 .2 1 1 1.5 1.2 1 .5 1 .3.8 1 10 .6 2.2 1.2 2.7.8 2.7.2 3.4 1 3.2 1.3 1.2 1.8-.2 1 .4.7 2.7 2 1.8.7 3 1 1 1.4.3h1.6l.8-1-.2-2.8-.8-4.2.8-2.8 1.4 1.5 1.7 1 2.3.5 2 1 1.3 1.8.2 2-.8 1.7-5.6 5-1 1-.8 1.4v4.7l.5 4.8 2.3-2.3 2.7.4 2.2 3h1.8l2 2 2.8.8 3.4-.2 2.4-1.5.2-2 1.3-1 3.4-2 1-.4 1.3-.2 1 .2 7 3.6 3.2 3.4 4.2 3 .7.8 2.2 3.2.4 1.2v1.3l2 1.7 2-1.4-.3-3.5-1.4-3-.3-1-2.2-2.4v-2.6l-.3-1.4-.6-1.6.3-1h1.4l1.3.5 4.5 4.2 2 3 .8.5 6.4 3.7.7 1 .4 1 2 3.5v2.8l.5 1.4 2.2.3 5.5 3 2.6.3 1.6-.3 1.5-.5 1.3-.3.7.5-1.2 2.7-.5 2.8 2 2.3 2.5.7 1.8-5.5v-6l-.8.3h-.8L554 781l-2-.4-2.2.2.7-2v-2l-1.2-2-1.5-2-2.3-2.2-1.4-3 1.5-1.3 4.8-.4 1.2-2-1-1-2-1-1.2-.5H546l-4.8-1.6-1.3-1.7-1.5-.8-1 1-.5 1 1.2 1-.2 2.5-1.6 2.2h-3.2l-1-1v-1.4l.3-1.4V760l-1.4-3-1.8-2.6-2-1.5-2.2-1-3.3-.7h-3.3l-2.5 1.3-2.6 1.8-1 .3-1 .7v1l1.8 1.5.3 1-1.4.5-.3 1.2H510l-1.5-.4-4-1.8-1.5-1-1.3-1.3-.8-1.3-.5-1.7-2.5-6-.5-2.5v-2.5l1.7-1.3-.3-.7-.7-.6-2.8-5-2.6-5.5-1-1.2-.2-1.4.5-1.2 1-1 1-2.3 2-2.7.7-1.2v-1.3l-.4-1.3-.7-1 .8-2.8 2-2 2.6-1.5 4.5-2 3.8-.6 2-4 .2-2 5-9.7 1-4 .7-1.8.4-1.7-1-.8-1.6-.6-.3-1.5v-1.7l-.7-1-2.2-1.2-.7-1-1.5-3.5-.5-2v-2.3l.6-7.7 1-2.3 1.7-2 .5-2-.4-2-.8-1.4-1-1-2 .3-1.6 2.8-1 1-2 1.2-2.6-.3-3-.8-3-1.2-8.3-4.7-3.7-1.2h-1.2l-3 .7-1.5-.2H478l-2.5 1.3-2.7 1-.3 3.5-1 2.6-1 2.6-3.5 13 .3 2.5 1.4 2.5v1.5l-.3 2.7.3 4.4-.3 3.4-2 4.8-.5 3v2.8l.5 3 1.5 4.5v1.5l-.5 1.3-.7 1-1.6.4H462l-1-.3-2-3zM507.6 362.3l1 .3 2 1.7v-1l-1.2-2.2-1.3.4z" class="country"/>
<path d="M505.5 755.2l5.2 3.6v-1l-5-4.3-.5.5v.6zM504.4 742.7l.5.3 1.3-.2.8-2.3-1.2-3.3 1.2-1.8.3-.2h.5l-.4-.8-1.5-1-3.3.2-.5 1.8 1 1.2.7 2 .7.8.3 1.6-.3.5zM550.8 503.5l1.5-.4 1-1v-1l-4-1.3-.3.6v1l-1.8 1v.6h1.7z" class="country"/>
</g>
<g class="grid-line" v-show="mapInfo.gcs">
<line class="latitude-line" x1="12" y1="900" x2="1593" y2="900"/>
<line class="latitude-line" x1="12" y1="609" x2="1593" y2="609"/>
<line class="latitude-line" x1="12" y1="482" x2="1593" y2="482"/>
<line class="latitude-line" x1="12" y1="355" x2="1593" y2="355"/>
<line class="latitude-line" x1="12" y1="228" x2="1593" y2="228"/>
<line class="latitude-line" x1="12" y1="101" x2="1593" y2="101"/>
<line class="latitude-line" x1="12" y1="101" x2="1593" y2="101"/>
<line class="latitude-line" x1="12" y1="0" x2="1593" y2="0"/>
<line class="latitude-line" x1="12" y1="736" x2="1593" y2="736"/>
<line class="latitude-line" x1="12" y1="863" x2="1593" y2="863"/>
<line class="longitude-line" x1="95" y1="888" x2="95" y2="8"/>
<line class="longitude-line" x1="216" y1="888" x2="216" y2="8"/>
<line class="longitude-line" x1="337" y1="888" x2="337" y2="8"/>
<line class="longitude-line" x1="458" y1="888" x2="458" y2="8"/>
<line class="longitude-line" x1="579" y1="888" x2="579" y2="8"/>
<line class="longitude-line" x1="700" y1="888" x2="700" y2="8"/>
<line class="longitude-line" x1="821" y1="888" x2="821" y2="8"/>
<line class="longitude-line" x1="942" y1="888" x2="942" y2="8"/>
<line class="longitude-line" x1="1063" y1="888" x2="1063" y2="8"/>
<line class="longitude-line" x1="1184" y1="888" x2="1184" y2="8"/>
<line class="longitude-line" x1="1305" y1="888" x2="1305" y2="8"/>
<line class="longitude-line" x1="1426" y1="888" x2="1426" y2="8"/>
<line class="longitude-line" x1="1547" y1="888" x2="1547" y2="8"/>
<g>
<path class="grid-mark-background" d="M112.9,894.3c0,1-0.8,1.8-1.8,1.8H78.9c-1,0-1.8-0.8-1.8-1.8v-14.8c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V894.3z"/>
<text transform="matrix(1 0 0 1 82.167 892.3701)" class="white">105</text>
</g>
<g>
<path class="grid-mark-background" d="M233.9,894.3c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8
c0-1,0.8-1.8,1.8-1.8h32.2c1,0,1.8,0.8,1.8,1.8V894.3z"/>
<text transform="matrix(1 0 0 1 203.166 892.3701)" class="white">110</text>
</g>
<g>
<path class="grid-mark-background" d="M354.9,893.6c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8
c0-1,0.8-1.8,1.8-1.8h32.2c1,0,1.8,0.8,1.8,1.8V893.6z"/>
<text transform="matrix(1 0 0 1 324.166 891.626)" class="white">115</text>
</g>
<g>
<path class="grid-mark-background" d="M476.1,894c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V894z"/>
<text transform="matrix(1 0 0 1 445.3877 891.998)" class="white">120</text>
</g>
<g>
<path class="grid-mark-background" d="M597.1,894c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V894z"/>
<text transform="matrix(1 0 0 1 566.3867 891.998)" class="white">125</text>
</g>
<g>
<path class="grid-mark-background" d="M718.1,893.2c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8
c0-1,0.8-1.8,1.8-1.8h32.2c1,0,1.8,0.8,1.8,1.8V893.2z"/>
<text transform="matrix(1 0 0 1 687.3867 891.2539)" class="white">130</text>
</g>
<g>
<path class="grid-mark-background" d="M839,893.6c0,1-0.8,1.8-1.8,1.8H805c-1,0-1.8-0.8-1.8-1.8v-14.8c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V893.6z"/>
<text transform="matrix(1 0 0 1 808.2686 891.626)" class="white">135</text>
</g>
<g>
<path class="grid-mark-background" d="M960,893.6c0,1-0.8,1.8-1.8,1.8H926c-1,0-1.8-0.8-1.8-1.8v-14.8c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V893.6z"/>
<text transform="matrix(1 0 0 1 929.2676 891.626)" class="white">140</text>
</g>
<g>
<path class="grid-mark-background" d="M1081,892.9c0,1-0.8,1.8-1.8,1.8H1047c-1,0-1.8-0.8-1.8-1.8V878c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V892.9z"/>
<text transform="matrix(1 0 0 1 1050.2676 890.8818)" class="white">145</text>
</g>
<g>
<path class="grid-mark-background" d="M1201.9,893.2c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8
c0-1,0.8-1.8,1.8-1.8h32.2c1,0,1.8,0.8,1.8,1.8V893.2z"/>
<text transform="matrix(1 0 0 1 1171.166 891.2539)" class="white">150</text>
</g>
<g>
<path class="grid-mark-background" d="M1322.9,893.2c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8
c0-1,0.8-1.8,1.8-1.8h32.2c1,0,1.8,0.8,1.8,1.8V893.2z"/>
<text transform="matrix(1 0 0 1 1292.165 891.2539)" class="white">155</text>
</g>
<g>
<path class="grid-mark-background" d="M1443.9,892.5c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8
c0-1,0.8-1.8,1.8-1.8h32.2c1,0,1.8,0.8,1.8,1.8V892.5z"/>
<text transform="matrix(1 0 0 1 1413.165 890.5098)" class="white">160</text>
</g>
<g>
<path class="grid-mark-background" d="M1564.9,893.2c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8
c0-1,0.8-1.8,1.8-1.8h32.2c1,0,1.8,0.8,1.8,1.8V893.2z"/>
<text transform="matrix(1 0 0 1 1534.165 891.2539)" class="white">165</text>
</g>
<g>
<path class="grid-mark-background" d="M32.5,870.2c0,1.1-0.9,2-2.1,2H7.6c-1.2,0-2.1-0.9-2.1-2v-14.3c0-1.1,0.9-2,2.1-2h22.9c1.2,0,2.1,0.9,2.1,2
V870.2z"/>
<text transform="matrix(1 0 0 1 10.5005 868.4297)" class="white">10</text>
</g>
<g>
<path class="grid-mark-background" d="M32.5,743.2c0,1.1-0.9,2-2.1,2H7.6c-1.2,0-2.1-0.9-2.1-2v-14.3c0-1.1,0.9-2,2.1-2h22.9c1.2,0,2.1,0.9,2.1,2
V743.2z"/>
<text transform="matrix(1 0 0 1 10.5005 741.4297)" class="white">15</text>
</g>
<g>
<path class="grid-mark-background" d="M32.5,615.4c0,1.1-0.9,2-2.1,2H7.6c-1.2,0-2.1-0.9-2.1-2V601c0-1.1,0.9-2,2.1-2h22.9c1.2,0,2.1,0.9,2.1,2
V615.4z"/>
<text transform="matrix(1 0 0 1 10.5005 613.6289)" class="white">20</text>
</g>
<g>
<path class="grid-mark-background" d="M32.5,489.2c0,1.1-0.9,2-2.1,2H7.6c-1.2,0-2.1-0.9-2.1-2v-14.3c0-1.1,0.9-2,2.1-2h22.9c1.2,0,2.1,0.9,2.1,2
V489.2z"/>
<text transform="matrix(1 0 0 1 10.5005 487.4297)" class="white">25</text>
</g>
<g>
<path class="grid-mark-background" d="M32.5,362.3c0,1.1-0.9,2-2.1,2H7.6c-1.2,0-2.1-0.9-2.1-2v-14.3c0-1.1,0.9-2,2.1-2h22.9c1.2,0,2.1,0.9,2.1,2
V362.3z"/>
<text transform="matrix(1 0 0 1 10.5005 360.5293)" class="white">30</text>
</g>
<g>
<path class="grid-mark-background" d="M32.5,236.1c0,1.1-0.9,2-2.1,2H7.6c-1.2,0-2.1-0.9-2.1-2v-14.3c0-1.1,0.9-2,2.1-2h22.9c1.2,0,2.1,0.9,2.1,2
V236.1z"/>
<text transform="matrix(1 0 0 1 10.5005 234.3301)" class="white">35</text>
</g>
<g>
<path class="grid-mark-background" d="M32.5,108c0,1.1-0.9,2-2.1,2H7.6c-1.2,0-2.1-0.9-2.1-2V93.7c0-1.1,0.9-2,2.1-2h22.9c1.2,0,2.1,0.9,2.1,2V108
z"/>
<text transform="matrix(1 0 0 1 10.5005 106.2959)" class="white">40</text>
</g>
</g>
<g class="city" v-show="mapInfo.cities" v-cloak>
<g>
<path class="city-name-background" d="M141.7,800.2c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8c0-1,0.8-1.8,1.8-1.8
H140c1,0,1.8,0.8,1.8,1.8V800.2z"/>
<circle class="city-point" cx="93.4" cy="792.1" r="6.4"/>
<text transform="matrix(1 0 0 1 109.6055 797.8477)" class="font small city-name">金邊</text>
</g>
<g>
<path class="city-name-background" d="M702.2,449.8c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8V435c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V449.8z"/>
<circle class="city-point" cx="653.9" cy="441.6" r="6.4"/>
<text transform="matrix(1 0 0 1 670.1143 447.3906)" class="font small city-name">那霸</text>
</g>
<g>
<path class="city-name-background" d="M156.6,591c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V591z"/>
<circle class="city-point" cx="108.3" cy="582.9" r="6.4"/>
<text transform="matrix(1 0 0 1 124.4844 588.6289)" class="font small city-name">河內</text>
</g>
<g>
<path class="city-name-background" d="M364.3,557c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V557z"/>
<circle class="city-point" cx="316" cy="548.9" r="6.4"/>
<text transform="matrix(1 0 0 1 332.1699 554.6348)" class="font small city-name">香港</text>
</g>
<g>
<path class="city-name-background" d="M341.7,534.7c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8
c0-1,0.8-1.8,1.8-1.8H340c1,0,1.8,0.8,1.8,1.8V534.7z"/>
<circle class="city-point" cx="293.4" cy="526.5" r="6.4"/>
<text transform="matrix(1 0 0 1 309.6055 532.3018)" class="font small city-name">廣州</text>
</g>
<g>
<path class="city-name-background" d="M287,560c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V560z"/>
<circle class="city-point" cx="297.8" cy="552.6" r="6.4"/>
<text transform="matrix(1 0 0 1 254.9346 557.582)" class="font small city-name">澳門</text>
</g>
<g>
<path class="city-name-background" d="M516.7,551.7c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8
c0-1,0.8-1.8,1.8-1.8H515c1,0,1.8,0.8,1.8,1.8V551.7z"/>
<circle class="city-point" cx="468.5" cy="543.5" r="6.4"/>
<text transform="matrix(1 0 0 1 484.6406 549.3018)" class="font small city-name">高雄</text>
</g>
<g>
<path class="city-name-background" d="M523.1,515.7c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8
c0-1,0.8-1.8,1.8-1.8h32.2c1,0,1.8,0.8,1.8,1.8V515.7z"/>
<circle class="city-point" cx="474.8" cy="507.5" r="6.4"/>
<text transform="matrix(1 0 0 1 491.0195 513.3271)" class="font small city-name">台中</text>
</g>
<g>
<path class="city-name-background" d="M543.1,494.9c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8
c0-1,0.8-1.8,1.8-1.8h32.2c1,0,1.8,0.8,1.8,1.8V494.9z"/>
<circle class="city-point" cx="494.8" cy="486.8" r="6.4"/>
<text transform="matrix(1 0 0 1 510.9873 492.5322)" class="font small city-name">台北</text>
</g>
<g>
<path class="city-name-background" d="M538.3,334.3c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8
c0-1,0.8-1.8,1.8-1.8h32.2c1,0,1.8,0.8,1.8,1.8V334.3z"/>
<circle class="city-point" cx="490" cy="326.1" r="6.4"/>
<text transform="matrix(1 0 0 1 506.2158 331.8848)" class="font small city-name">上海</text>
</g>
<g>
<path class="city-name-background" d="M402.5,95.7c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8V80.9c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V95.7z"/>
<circle class="city-point" cx="354.2" cy="87.5" r="6.4"/>
<text transform="matrix(1 0 0 1 370.3984 93.3018)" class="font small city-name">北京</text>
</g>
<g>
<path class="city-name-background" d="M647.8,119.4c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8
c0-1,0.8-1.8,1.8-1.8H646c1,0,1.8,0.8,1.8,1.8V119.4z"/>
<circle class="city-point" cx="599.5" cy="111.2" r="6.4"/>
<text transform="matrix(1 0 0 1 615.6865 116.9688)" class="font small city-name">平壤</text>
</g>
<g>
<path class="city-name-background" d="M679.2,164.8c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8V150c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V164.8z"/>
<circle class="city-point" cx="630.9" cy="156.6" r="6.4"/>
<text transform="matrix(1 0 0 1 647.0449 162.4082)" class="font small city-name">首爾</text>
</g>
<g>
<path class="city-name-background" d="M764.8,291.7c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V291.7z"/>
<circle class="city-point" cx="716.5" cy="283.5" r="6.4"/>
<text transform="matrix(1 0 0 1 732.7305 289.2959)" class="font small city-name">熊本</text>
</g>
<g>
<path class="city-name-background" d="M756.4,268.4c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V268.4z"/>
<circle class="city-point" cx="708.2" cy="260.3" r="6.4"/>
<text transform="matrix(1 0 0 1 724.3379 266.04)" class="font small city-name">福岡</text>
</g>
<g>
<path class="city-name-background" d="M879.8,241.7c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8c0-1,0.8-1.8,1.8-1.8
H878c1,0,1.8,0.8,1.8,1.8V241.7z"/>
<circle class="city-point" cx="831.5" cy="233.5" r="6.4"/>
<text transform="matrix(1 0 0 1 847.6572 239.2793)" class="font small city-name">大阪</text>
</g>
<g>
<path class="city-name-background" d="M850.7,207c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V207z"/>
<circle class="city-point" cx="832.8" cy="219.6" r="6.4"/>
<text transform="matrix(1 0 0 1 818.5752 204.5908)" class="font small city-name">京都</text>
</g>
<g>
<path class="city-name-background" d="M807,237.3c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V237.3z"/>
<circle class="city-point" cx="818.2" cy="231" r="6.4"/>
<text transform="matrix(1 0 0 1 774.9248 234.873)" class="font small city-name">神戶</text>
</g>
<g>
<path class="city-name-background" d="M951.8,230.6c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8
c0-1,0.8-1.8,1.8-1.8H950c1,0,1.8,0.8,1.8,1.8V230.6z"/>
<circle class="city-point" cx="903.5" cy="222.5" r="6.4"/>
<text transform="matrix(1 0 0 1 919.6699 228.249)" class="font small city-name">靜岡</text>
</g>
<g>
<path class="city-name-background" d="M987.3,212c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V212z"/>
<circle class="city-point" cx="939" cy="203.8" r="6.4"/>
<text transform="matrix(1 0 0 1 955.1699 209.6055)" class="font small city-name">東京</text>
</g>
<g>
<path class="city-name-background" d="M966.2,151.1c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8v-14.8
c0-1,0.8-1.8,1.8-1.8h32.2c1,0,1.8,0.8,1.8,1.8V151.1z"/>
<circle class="city-point" cx="917.9" cy="142.9" r="6.4"/>
<text transform="matrix(1 0 0 1 934.0449 148.7207)" class="font small city-name">新瀉</text>
</g>
<g>
<path class="city-name-background" d="M1015.2,132.8c0,1-0.8,1.8-1.8,1.8h-32.2c-1,0-1.8-0.8-1.8-1.8V118c0-1,0.8-1.8,1.8-1.8
h32.2c1,0,1.8,0.8,1.8,1.8V132.8z"/>
<circle class="city-point" cx="966.9" cy="124.6" r="6.4"/>
<text transform="matrix(1 0 0 1 983.0449 130.4189)" class="font small city-name">仙台</text>
</g>
<g>
<path id="background" class="city-name-background" d="M539.7,747.9c0,1.1-0.9,2-2,2h-45.5c-1.1,0-2-0.9-2-2v-14.3c0-1.1,0.9-2,2-2h45.5
c1.1,0,2,0.9,2,2V747.9z"/>
<circle class="city-point" cx="477.6" cy="739.9" r="6.4"/>
<text transform="matrix(1 0 0 1 492.7949 745.7109)" class="font small city-name">馬尼拉</text>
</g>
<g>
<path class="city-name-background" d="M212.6,834.5c0,1.1-0.9,2-2,2h-60.7c-1.1,0-2-0.9-2-2v-14.3c0-1.1,0.9-2,2-2h60.7
c1.1,0,2,0.9,2,2V834.5z"/>
<circle class="city-point" cx="135.4" cy="826.6" r="6.4"/>
<text transform="matrix(1 0 0 1 151.6055 832.3945)" class="font small city-name">胡志明市</text>
</g>
</g>
<g class="past-route" v-for="route in pastRoute">
<g class="route">
<path class="past-path" :d="route.d" stroke="#898787"
stroke-linecap="round" stroke-linejoin="round"></path>
</g>
</g>
<g class="day" v-for="routesOfDate in fcstRoutesDays">
<g class="route">
<path v-for="route in routesOfDate.routes" :class="route.org" :d="route.d" v-show="routeSelector[route.org]"></path>
</g>
<g class="point" :style="phointStyle">
<circle v-for="route in routesOfDate.routes"
:class="route.org"
:cx="route.cx"
:cy="route.cy"
r="4"
v-show="routeSelector[route.org]">
</circle>
</g>
</g>
<g class="eye">
<circle :cx="typhoonEye.x" :cy="typhoonEye.y" :r="level7Radius" class="yellow transparent"></circle>
<circle :cx="typhoonEye.x" :cy="typhoonEye.y" :r="level10Radius" class="red transparent"></circle>
<circle :cx="typhoonEye.x" :cy="typhoonEye.y" r="5" class="brown"></circle>
</g>
</svg>
</div>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/velocity/velocity.min.js"></script>
<script src="bower_components/velocity/velocity.ui.min.js"></script>
<script src="bower_components/axios/dist/axios.min.js"></script>
<script src="bower_components/jquery-sticky/jquery.sticky.js"></script>
<script src="bower_components/vue/dist/vue.js"></script>
<script src="bower_components/lodash/dist/lodash.min.js"></script>
<script src="bower_components/svg.js/dist/svg.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>