-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLG50.xml
1676 lines (1676 loc) · 112 KB
/
LG50.xml
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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version='1.0' encoding='UTF-8'?>
<osm version='0.6' upload='true' generator='JOSM'>
<bounds minlat='28.1734862' minlon='112.5363806' maxlat='28.1921576' maxlon='112.5632867' origin='JOSM' />
<node id='-1304' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18860521553064' lon='112.55499401677334' />
<node id='-1302' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187353539413767' lon='112.55639606053505' />
<node id='-1300' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187847851875606' lon='112.55696410428895' />
<node id='-1298' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189099522205172' lon='112.55556206052722' />
<node id='-1296' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.191149558406412' lon='112.53984853318815' />
<node id='-1294' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19117843486543' lon='112.53984853318815' />
<node id='-1292' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19117908120458' lon='112.54167234931627' />
<node id='-1290' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1911502047457' lon='112.54167234931627' />
<node id='-1288' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190260044306818' lon='112.54167234931627' />
<node id='-1286' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190260044306818' lon='112.53984853318815' />
<node id='-1284' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18970560619854' lon='112.53984853318815' />
<node id='-1282' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189481313127274' lon='112.54167234931627' />
<node id='-1280' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190260044716755' lon='112.54356851760143' />
<node id='-1278' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190260044716755' lon='112.54173331348304' />
<node id='-1276' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189473812236667' lon='112.54173331348304' />
<node id='-1274' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189470921255456' lon='112.54175684481791' />
<node id='-1272' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189574550912383' lon='112.54356851760143' />
<node id='-1270' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190260044306818' lon='112.54546468588657' />
<node id='-1268' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190260044306818' lon='112.54362948176818' />
<node id='-1266' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189578033040924' lon='112.54362948176818' />
<node id='-1264' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190005404220948' lon='112.54546468588657' />
<node id='-1262' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190260044306818' lon='112.54736085417173' />
<node id='-1260' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190260044306818' lon='112.54552565005332' />
<node id='-1258' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190007628609166' lon='112.54552565005332' />
<node id='-1256' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189485934105264' lon='112.54736085417173' />
<node id='-1254' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190260044306818' lon='112.54866236694542' />
<node id='-1252' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190260044306818' lon='112.54742181833848' />
<node id='-1250' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189479314201684' lon='112.54742181833848' />
<node id='-1248' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189344594073237' lon='112.54866236508492' />
<node id='-1246' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190260044306818' lon='112.55001998803638' />
<node id='-1244' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190260044306818' lon='112.54872332925169' />
<node id='-1242' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189337974160896' lon='112.54872332925169' />
<node id='-1240' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18926556341106' lon='112.5493901062208' />
<node id='-1238' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189338371814788' lon='112.55001998803638' />
<node id='-1236' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19026004389686' lon='112.55008094848218' />
<node id='-1234' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18934541069851' lon='112.55008094848218' />
<node id='-1232' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1894904796519' lon='112.55133598277644' />
<node id='-1230' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19026004389686' lon='112.55152719161659' />
<node id='-1228' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19111463971368' lon='112.55008095220313' />
<node id='-1226' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19031377671051' lon='112.55008095220313' />
<node id='-1224' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19031377671051' lon='112.55154054241191' />
<node id='-1222' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190321675602373' lon='112.55154250707743' />
<node id='-1220' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19111463971368' lon='112.5513771849382' />
<node id='-1218' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19116837209777' lon='112.55008095220313' />
<node id='-1216' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19116837209777' lon='112.55136599229823' />
<node id='-1214' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192023841618596' lon='112.55118763564508' />
<node id='-1212' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19202282086258' lon='112.55008095220313' />
<node id='-1210' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19031377712046' lon='112.547421816478' />
<node id='-1208' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19031377712046' lon='112.55001998803638' />
<node id='-1206' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192022767160157' lon='112.55001998803638' />
<node id='-1204' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192020370638154' lon='112.54742181833848' />
<node id='-1202' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19031377671051' lon='112.54552565005332' />
<node id='-1200' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19031377671051' lon='112.54736085417173' />
<node id='-1198' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192020316935732' lon='112.54736085417173' />
<node id='-1196' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192018629613674' lon='112.54552565005332' />
<node id='-1194' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19031377671051' lon='112.54362948176818' />
<node id='-1192' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19031377671051' lon='112.54546468588657' />
<node id='-1190' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192018565252756' lon='112.54546468588657' />
<node id='-1188' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192016877930673' lon='112.54362948176818' />
<node id='-1186' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19031377671051' lon='112.54173331348304' />
<node id='-1184' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19031377671051' lon='112.54356851760143' />
<node id='-1182' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192016824228254' lon='112.54356851760143' />
<node id='-1180' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192015136906132' lon='112.54173331348304' />
<node id='-1178' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190313776300563' lon='112.53984853318815' />
<node id='-1176' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190313776300563' lon='112.54167234931627' />
<node id='-1174' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192015072135266' lon='112.54167234931627' />
<node id='-1172' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192013395881578' lon='112.53984853318815' />
<node id='-1170' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187721181531103' lon='112.5436190314592' />
<node id='-1168' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187721181531103' lon='112.54215377051129' />
<node id='-1166' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186676016301508' lon='112.54226121315747' />
<node id='-1164' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186682421558242' lon='112.5436190314592' />
<node id='-1162' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187721181531103' lon='112.54489548730547' />
<node id='-1160' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187721181531103' lon='112.54367999562596' />
<node id='-1158' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186679455068415' lon='112.54367999562596' />
<node id='-1156' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186476348710784' lon='112.54489548730547' />
<node id='-1154' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187721182351012' lon='112.54606487818272' />
<node id='-1152' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187721182351012' lon='112.54495645147222' />
<node id='-1150' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186466161118638' lon='112.54495645147222' />
<node id='-1148' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186384795634652' lon='112.54544337224235' />
<node id='-1146' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18643932572542' lon='112.54606487818272' />
<node id='-1144' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187721181531103' lon='112.54739073904145' />
<node id='-1142' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187721181531103' lon='112.54612584234948' />
<node id='-1140' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186444677389968' lon='112.54612584234948' />
<node id='-1138' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186555650370646' lon='112.54739073904145' />
<node id='-1136' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187721181531103' lon='112.5474517032082' />
<node id='-1134' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18656100202938' lon='112.5474517032082' />
<node id='-1132' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186669363426915' lon='112.5486868489849' />
<node id='-1130' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18770882291621' lon='112.54894821461718' />
<node id='-1128' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187721181531103' lon='112.54894671507132' />
<node id='-1126' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18777491562084' lon='112.5474517032082' />
<node id='-1124' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18777491562084' lon='112.54894021641915' />
<node id='-1122' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.188620256477517' lon='112.54883788264755' />
<node id='-1120' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.188788388822353' lon='112.5474517032082' />
<node id='-1118' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187774914800926' lon='112.54612584234948' />
<node id='-1116' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187774914800926' lon='112.54739073904145' />
<node id='-1114' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.188794514363526' lon='112.54739073904145' />
<node id='-1112' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189189734423763' lon='112.54612584234948' />
<node id='-1110' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187774914800926' lon='112.54495645147222' />
<node id='-1108' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187774914800926' lon='112.54606487818272' />
<node id='-1106' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189189734423763' lon='112.54606487818272' />
<node id='-1104' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189189734423763' lon='112.54495645147222' />
<node id='-1102' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187774914800926' lon='112.54367999562596' />
<node id='-1100' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187774914800926' lon='112.54489548730547' />
<node id='-1098' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189183361293605' lon='112.54489548730547' />
<node id='-1096' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18888050885666' lon='112.54367999562596' />
<node id='-1094' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187780524672448' lon='112.54214767372254' />
<node id='-1092' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187774914800926' lon='112.54214824674997' />
<node id='-1090' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187774914800926' lon='112.5436190314592' />
<node id='-1088' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.188874770317224' lon='112.5436190314592' />
<node id='-1086' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.188752881010362' lon='112.54232355593896' />
<node id='-1084' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190383124025377' lon='112.55453638571564' />
<node id='-1082' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186243826210124' lon='112.559113453606' />
<node id='-1080' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18746493327551' lon='112.56053148072012' />
<node id='-1078' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192023841618596' lon='112.55561813502175' />
<node id='-1076' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192023841618596' lon='112.55453638571564' />
<node id='-1074' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18621828050923' lon='112.55905809692212' />
<node id='-1072' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184631156188967' lon='112.55723173193815' />
<node id='-1070' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186778315060305' lon='112.55478975314989' />
<node id='-1068' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186778315060305' lon='112.55621850778431' />
<node id='-1066' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1865218497241' lon='112.5564794362041' />
<node id='-1064' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1865218497241' lon='112.55733720247687' />
<node id='-1062' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18714594483112' lon='112.55804548300533' />
<node id='-1060' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18842489049633' lon='112.55452992241256' />
<node id='-1058' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187936277611595' lon='112.55397576022048' />
<node id='-1056' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187229608794684' lon='112.55477463489979' />
<node id='-1054' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186838722986515' lon='112.55477463489979' />
<node id='-1052' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186838722986515' lon='112.55625667364481' />
<node id='-1050' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186573059044125' lon='112.55652003929171' />
<node id='-1048' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186573059044125' lon='112.55730501247403' />
<node id='-1046' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187186685915606' lon='112.5580028073444' />
<node id='-1044' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190309875638306' lon='112.5545401662084' />
<node id='-1042' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180877546979993' lon='112.54483747385797' />
<node id='-1040' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180877546979993' lon='112.54616844359124' />
<node id='-1038' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181862873941373' lon='112.54616844359124' />
<node id='-1036' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181862873941373' lon='112.54483747385797' />
<node id='-1034' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183328488239486' lon='112.54483747385797' />
<node id='-1032' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183328488239486' lon='112.54616844359124' />
<node id='-1030' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18431379261743' lon='112.54616844359124' />
<node id='-1028' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18431379261743' lon='112.54483747385797' />
<node id='-1026' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.182311577673588' lon='112.55716186724118' />
<node id='-1024' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181533250240427' lon='112.55630824983595' />
<node id='-1022' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181722620942896' lon='112.55609340919506' />
<node id='-1020' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.182439901153543' lon='112.55690033230535' />
<node id='-1018' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183762891674554' lon='112.55690033230535' />
<node id='-1016' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183762891674554' lon='112.55716186724118' />
<node id='-1014' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18407632278372' lon='112.55831632033475' />
<node id='-1012' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183832028002517' lon='112.55895382081071' />
<node id='-1010' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18343778765629' lon='112.5587593710166' />
<node id='-1008' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183682093997508' lon='112.55812187054067' />
<node id='-1006' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183792360590903' lon='112.5590573564516' />
<node id='-1004' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18354806516092' lon='112.55969484576467' />
<node id='-1002' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183153834427127' lon='112.55950040713344' />
<node id='-1000' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183398130757762' lon='112.55886289177367' />
<node id='-998' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186951426416186' lon='112.56081024368893' />
<node id='-996' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186505784082204' lon='112.56128731136373' />
<node id='-994' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186210779799634' lon='112.56093258504873' />
<node id='-992' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186656434022275' lon='112.56045552853678' />
<node id='-990' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186433414050303' lon='112.56136478541868' />
<node id='-988' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185987769557148' lon='112.5618418419306' />
<node id='-986' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18569276384531' lon='112.56148712677847' />
<node id='-984' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18613842022715' lon='112.56101005910364' />
<node id='-982' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18591303449303' lon='112.5619218536785' />
<node id='-980' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185467377171754' lon='112.56239892135333' />
<node id='-978' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185172370024084' lon='112.5620442062012' />
<node id='-976' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18561802857499' lon='112.56156713852637' />
<node id='-974' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1865589915702' lon='112.55986496793898' />
<node id='-972' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186133368641464' lon='112.55936491591004' />
<node id='-970' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18582414571323' lon='112.55970370536433' />
<node id='-968' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18624978053201' lon='112.5602037462304' />
<node id='-966' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186064255119707' lon='112.55928371345577' />
<node id='-964' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18563863022152' lon='112.5587836725897' />
<node id='-962' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18532940586245' lon='112.5591224508811' />
<node id='-960' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185755042650715' lon='112.55962250291003' />
<node id='-958' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18556724844291' lon='112.55869980965082' />
<node id='-956' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18514162156624' lon='112.55819975762189' />
<node id='-954' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1848323957698' lon='112.55853853591331' />
<node id='-952' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185258034536574' lon='112.55903858794224' />
<node id='-950' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185028939187085' lon='112.56174924962558' />
<node id='-948' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18460331016756' lon='112.56124919759664' />
<node id='-946' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18429408281432' lon='112.56158798705093' />
<node id='-944' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18471972372398' lon='112.56208802791699' />
<node id='-942' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184534195656774' lon='112.56116799514234' />
<node id='-940' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184108564667856' lon='112.56066795427628' />
<node id='-938' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183799335883837' lon='112.56100673256769' />
<node id='-936' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184224978762938' lon='112.56150678459663' />
<node id='-934' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18403718186779' lon='112.56058409133742' />
<node id='-932' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18361154890048' lon='112.56008403930848' />
<node id='-930' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183302318679115' lon='112.5604228175999' />
<node id='-928' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183727963536658' lon='112.56092286962883' />
<node id='-926' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.174769133602588' lon='112.53658646282125' />
<node id='-924' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17363455581907' lon='112.53842184926656' />
<node id='-922' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17363455581907' lon='112.53977098657455' />
<node id='-920' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18876434744319' lon='112.53979476163212' />
<node id='-918' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18876434744319' lon='112.53658024324086' />
<node id='-916' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190374344158744' lon='112.53827334027355' />
<node id='-914' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.190374344158744' lon='112.53658024324086' />
<node id='-912' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192023841618596' lon='112.53658024324086' />
<node id='-910' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192023841618596' lon='112.53827334027355' />
<node id='-908' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17363455581907' lon='112.54754428248987' />
<node id='-906' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18228814816742' lon='112.5572217337255' />
<node id='-904' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183756658431953' lon='112.5572217337255' />
<node id='-902' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18256467816601' lon='112.56007985695231' />
<node id='-900' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17363455581907' lon='112.54999662786554' />
<node id='-898' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185229351482256' lon='112.55386476049495' />
<node id='-896' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184608475249135' lon='112.55312732189438' />
<node id='-894' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18574679225965' lon='112.55326990981483' />
<node id='-892' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184653360190122' lon='112.55546488366846' />
<node id='-890' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184659830343353' lon='112.55450448966843' />
<node id='-888' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184066200558526' lon='112.5538206186208' />
<node id='-886' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18321967330252' lon='112.55381327717178' />
<node id='-884' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.182616878248766' lon='112.5544867593062' />
<node id='-882' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.182610407971904' lon='112.55544715330625' />
<node id='-880' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18320404583874' lon='112.55613102435387' />
<node id='-878' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18405057321847' lon='112.5561383658029' />
<node id='-876' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183919522069537' lon='112.55577238731254' />
<node id='-874' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18334002085013' lon='112.55576736402001' />
<node id='-872' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.182933010365982' lon='112.55529847500968' />
<node id='-870' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.182937438117843' lon='112.55464102648088' />
<node id='-868' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183350735148586' lon='112.55417927054593' />
<node id='-866' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183930236309926' lon='112.55418429383849' />
<node id='-864' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184337242998314' lon='112.55465318284882' />
<node id='-862' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184332815304415' lon='112.55531063137764' />
<node id='-860' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180183686262428' lon='112.54708254143875' />
<node id='-858' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180183686262428' lon='112.54629610219921' />
<node id='-856' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184891558488065' lon='112.54629610219921' />
<node id='-854' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184891558488065' lon='112.54708254143875' />
<node id='-852' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180183686262428' lon='112.54392240298006' />
<node id='-850' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180183686262428' lon='112.54470884035915' />
<node id='-848' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184891558488065' lon='112.54470884035915' />
<node id='-846' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184891558488065' lon='112.54392240298006' />
<node id='-844' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180034032493825' lon='112.54850721232239' />
<node id='-842' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17908870224651' lon='112.54840036688988' />
<node id='-840' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17908870224651' lon='112.54715513731848' />
<node id='-838' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180034032493825' lon='112.54715513731848' />
<node id='-836' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18101741078167' lon='112.54861836290269' />
<node id='-834' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18008777044669' lon='112.54851328492497' />
<node id='-832' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18008777044669' lon='112.54715513731848' />
<node id='-830' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18101741078167' lon='112.54715513731848' />
<node id='-828' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181924162823695' lon='112.54864733427732' />
<node id='-826' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181490052846197' lon='112.54867178096775' />
<node id='-824' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181071148240395' lon='112.54862443550522' />
<node id='-822' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181071148240395' lon='112.54715513731848' />
<node id='-820' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181924162823695' lon='112.54715513731848' />
<node id='-818' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.182856442208013' lon='112.54859482970733' />
<node id='-816' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181977899826773' lon='112.54864430913894' />
<node id='-814' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181977899826773' lon='112.54715513731848' />
<node id='-812' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.182856443027976' lon='112.54715513731848' />
<node id='-810' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18385257423675' lon='112.54853873069243' />
<node id='-808' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18291017956255' lon='112.54859180642941' />
<node id='-806' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18291017956255' lon='112.54715513731848' />
<node id='-804' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18385257423675' lon='112.54715513731848' />
<node id='-802' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18473375618246' lon='112.54853793812849' />
<node id='-800' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18390631027076' lon='112.54853793812849' />
<node id='-798' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18390631027076' lon='112.54715513731848' />
<node id='-796' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18473375618246' lon='112.54715513731848' />
<node id='-794' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180034032493825' lon='112.54212740938829' />
<node id='-792' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178991662070285' lon='112.54259111510491' />
<node id='-790' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.179112939317292' lon='112.54383634467631' />
<node id='-788' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180034034133786' lon='112.54383634467631' />
<node id='-786' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181017412421607' lon='112.54230747210043' />
<node id='-784' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180087772086637' lon='112.54211466696952' />
<node id='-782' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180087772086637' lon='112.54383634467631' />
<node id='-780' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181017412421607' lon='112.54383634467631' />
<node id='-778' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181924164463616' lon='112.54249552370818' />
<node id='-776' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18107114988032' lon='112.54231861822846' />
<node id='-774' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18107114988032' lon='112.54383634467631' />
<node id='-772' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181924164463616' lon='112.54383634467631' />
<node id='-770' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18285644384792' lon='112.5423817777601' />
<node id='-768' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181977901466702' lon='112.54249356090314' />
<node id='-766' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181977901466702' lon='112.54383634467631' />
<node id='-764' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.182856444667877' lon='112.54383634467631' />
<node id='-762' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18385257587666' lon='112.54226633505542' />
<node id='-760' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183806051253015' lon='112.54226093408568' />
<node id='-758' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.182910181202473' lon='112.54237493677984' />
<node id='-756' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.182910181202473' lon='112.54383634467631' />
<node id='-754' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18385257587666' lon='112.54383634467631' />
<node id='-752' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1847337570024' lon='112.54236871719948' />
<node id='-750' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183906311090713' lon='112.54227257696152' />
<node id='-748' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183906311090713' lon='112.54383634467631' />
<node id='-746' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1847337570024' lon='112.54383634467631' />
<node id='-744' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18478749259356' lon='112.54237496096606' />
<node id='-742' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18478749259356' lon='112.54383634467631' />
<node id='-740' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18506719666706' lon='112.54383634467631' />
<node id='-738' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185819060495508' lon='112.54351991631579' />
<node id='-736' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185819060495508' lon='112.54249481672628' />
<node id='-734' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177879572281196' lon='112.54176670907609' />
<node id='-732' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177047248459246' lon='112.54173443535171' />
<node id='-730' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177047248459246' lon='112.53984853318815' />
<node id='-728' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177879572281196' lon='112.53984853318815' />
<node id='-726' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178757697338213' lon='112.54174314239212' />
<node id='-724' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17861190371398' lon='112.54179510742331' />
<node id='-722' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177933311316586' lon='112.54176879467273' />
<node id='-720' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177933311316586' lon='112.53984853318815' />
<node id='-718' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178757697338213' lon='112.53984853318815' />
<node id='-716' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.179635815185428' lon='112.54143012801005' />
<node id='-714' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17881143593239' lon='112.54172398690321' />
<node id='-712' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17881143593239' lon='112.53984853318815' />
<node id='-710' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.179635815185428' lon='112.53984853318815' />
<node id='-708' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18051392582271' lon='112.54133358404823' />
<node id='-706' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180129033265036' lon='112.54125430532893' />
<node id='-704' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17968955333839' lon='112.54141095949778' />
<node id='-702' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17968955333839' lon='112.53984853318815' />
<node id='-700' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18051392582271' lon='112.53984853318815' />
<node id='-698' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181491432027535' lon='112.54153492319502' />
<node id='-696' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180567663534436' lon='112.54134465389662' />
<node id='-694' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180567663534436' lon='112.53984853318815' />
<node id='-692' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181491432027535' lon='112.53984853318815' />
<node id='-690' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18232410828371' lon='112.54161288655585' />
<node id='-688' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.182047127504504' lon='112.54164937984598' />
<node id='-686' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18154516924805' lon='112.54154598374102' />
<node id='-684' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18154516924805' lon='112.53984853318815' />
<node id='-682' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18232410828371' lon='112.53984853318815' />
<node id='-680' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183156800194837' lon='112.54150316296275' />
<node id='-678' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.182377845085803' lon='112.5416058018529' />
<node id='-676' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.182377845085803' lon='112.53984853318815' />
<node id='-674' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183156800194837' lon='112.53984853318815' />
<node id='-672' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18411617293772' lon='112.54141408138109' />
<node id='-670' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18392328234413' lon='112.54140216873581' />
<node id='-668' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18321053657847' lon='112.54149607825978' />
<node id='-666' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18321053657847' lon='112.53984853318815' />
<node id='-664' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18411617293772' lon='112.53984853318815' />
<node id='-662' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184966937917878' lon='112.54146658223013' />
<node id='-660' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184169908839262' lon='112.54141739675417' />
<node id='-658' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184169908839262' lon='112.53984853318815' />
<node id='-656' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184966937917878' lon='112.53984853318815' />
<node id='-654' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185853902677444' lon='112.541427772644' />
<node id='-652' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185532169206603' lon='112.5415014792295' />
<node id='-650' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185020673391858' lon='112.54146991248705' />
<node id='-648' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185020673391858' lon='112.53984853318815' />
<node id='-646' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185853902677444' lon='112.53984853318815' />
<node id='-644' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187826336699047' lon='112.53984853318815' />
<node id='-642' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1887103654181' lon='112.53984853318815' />
<node id='-640' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1887103654181' lon='112.5413917314502' />
<node id='-638' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187826336699047' lon='112.54132137930782' />
<node id='-636' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186885083945654' lon='112.53984853504862' />
<node id='-634' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187772602635146' lon='112.53984853504862' />
<node id='-632' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187772602635146' lon='112.54131710020674' />
<node id='-630' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186885083945654' lon='112.54124646713205' />
<node id='-628' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185907637705647' lon='112.54141547115869' />
<node id='-626' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185907637705647' lon='112.53984853318815' />
<node id='-624' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186831349408703' lon='112.53984853318815' />
<node id='-622' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186831349408703' lon='112.54124218617052' />
<node id='-620' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186707201338187' lon='112.54123231074949' />
<node id='-618' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186400536603465' lon='112.55371742902898' />
<node id='-616' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185640402097402' lon='112.55455797843169' />
<node id='-614' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186161782475406' lon='112.55536010894876' />
<node id='-612' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186757807924728' lon='112.55469381942508' />
<node id='-610' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187202676022448' lon='112.55469381942508' />
<node id='-608' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18723232683315' lon='112.55466113081395' />
<node id='-606' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18706001125684' lon='112.55298817718439' />
<node id='-604' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1864390116933' lon='112.55367487615968' />
<node id='-602' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187270876236457' lon='112.55461866352661' />
<node id='-600' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187892870445832' lon='112.55393309572244' />
<node id='-598' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.188564500092536' lon='112.55272505339971' />
<node id='-596' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187868979729878' lon='112.55272505339971' />
<node id='-594' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187108544093554' lon='112.55293450237328' />
<node id='-592' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187098485289436' lon='112.5529456205941' />
<node id='-590' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.188410908536937' lon='112.55443659707893' />
<node id='-588' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.188564500912456' lon='112.55443698777944' />
<node id='-586' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18940606396546' lon='112.55272505339971' />
<node id='-584' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18861823457832' lon='112.55272505339971' />
<node id='-582' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18861823457832' lon='112.55443720731593' />
<node id='-580' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18940606396546' lon='112.55444041478123' />
<node id='-578' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19031849358051' lon='112.55272505339971' />
<node id='-576' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189459797208343' lon='112.55272505339971' />
<node id='-574' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.189459797208343' lon='112.55444063431773' />
<node id='-572' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19031849358051' lon='112.55444414690159' />
<node id='-570' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.191151187592872' lon='112.55280039534604' />
<node id='-568' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19037222636477' lon='112.5527252134009' />
<node id='-566' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19037222636477' lon='112.55444436643803' />
<node id='-564' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.191151187592872' lon='112.55444754785668' />
<node id='-562' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19120491995859' lon='112.55280557119785' />
<node id='-560' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19120491995859' lon='112.5544477636722' />
<node id='-558' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192023840798726' lon='112.55445110509199' />
<node id='-556' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192023840798726' lon='112.55288460805491' />
<node id='-554' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184226912191246' lon='112.54938455641276' />
<node id='-552' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183648422814404' lon='112.54938455641276' />
<node id='-550' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183364319273643' lon='112.55088179898992' />
<node id='-548' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183364319273643' lon='112.55088394598233' />
<node id='-546' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184226912191246' lon='112.55088394598233' />
<node id='-544' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185030120717727' lon='112.54938455641276' />
<node id='-542' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184280648037113' lon='112.54938455641276' />
<node id='-540' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184280648037113' lon='112.55088394598233' />
<node id='-538' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185030120717727' lon='112.55088394598233' />
<node id='-536' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18583332321054' lon='112.54938455641276' />
<node id='-534' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18508385615994' lon='112.54938455641276' />
<node id='-532' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18508385615994' lon='112.55088394598233' />
<node id='-530' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18583332321054' lon='112.55088394598233' />
<node id='-528' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186727792935745' lon='112.54956535215352' />
<node id='-526' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185887058249104' lon='112.54938611735443' />
<node id='-524' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185887058249104' lon='112.55088394598233' />
<node id='-522' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186727792935745' lon='112.55088394598233' />
<node id='-520' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1878230603125' lon='112.54979563662826' />
<node id='-518' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187807971386867' lon='112.54979563662826' />
<node id='-516' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18678152752476' lon='112.54957681270245' />
<node id='-514' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18678152752476' lon='112.55088394598233' />
<node id='-512' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187823059492576' lon='112.55088394598233' />
<node id='-510' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184564620412402' lon='112.5509449101491' />
<node id='-508' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183364319273643' lon='112.5509449101491' />
<node id='-506' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.183364319273643' lon='112.55210502281896' />
<node id='-504' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184564620412402' lon='112.55210502281896' />
<node id='-502' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18555037584251' lon='112.5509449101491' />
<node id='-500' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184618356088567' lon='112.5509449101491' />
<node id='-498' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.184618356088567' lon='112.55210502281896' />
<node id='-496' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185530171027093' lon='112.55210502281896' />
<node id='-494' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18555037584251' lon='112.55211010564685' />
<node id='-492' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1864448479348' lon='112.5509449101491' />
<node id='-490' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185604111023256' lon='112.5509449101491' />
<node id='-488' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185604111023256' lon='112.55212362760619' />
<node id='-486' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1864448479348' lon='112.55233522357219' />
<node id='-484' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1878230603125' lon='112.5509449101491' />
<node id='-482' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186498582666047' lon='112.5509449101491' />
<node id='-480' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186498582666047' lon='112.55234874553153' />
<node id='-478' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.186706579015013' lon='112.55240108823988' />
<node id='-476' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1878230603125' lon='112.55164338967565' />
<node id='-474' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187876794351038' lon='112.54979564034925' />
<node id='-472' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.187876794351038' lon='112.55162571140683' />
<node id='-470' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18877382641473' lon='112.55163505101001' />
<node id='-468' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18877382641473' lon='112.55093581612911' />
<node id='-466' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18855097156218' lon='112.54979564034925' />
<node id='-464' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180878913049717' lon='112.55556901838347' />
<node id='-462' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18149219623502' lon='112.5562441712278' />
<node id='-460' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18207777927691' lon='112.55563381141545' />
<node id='-458' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1816693347916' lon='112.55467229740722' />
<node id='-456' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180227364689575' lon='112.5548438484292' />
<node id='-454' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180680007866794' lon='112.55535004747983' />
<node id='-452' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180840349862347' lon='112.55552656225905' />
<node id='-450' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18164462600096' lon='112.55461412395853' />
<node id='-448' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181644550564283' lon='112.55461394163164' />
<node id='-446' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181116356365358' lon='112.55383530896081' />
<node id='-444' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.179577360481794' lon='112.55411692590398' />
<node id='-442' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18018910301809' lon='112.55480105369764' />
<node id='-440' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181083319849755' lon='112.55378658674404' />
<node id='-438' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18074266677839' lon='112.55328442493223' />
<node id='-436' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180474740964257' lon='112.55309887566834' />
<node id='-434' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178927342483593' lon='112.5533900145416' />
<node id='-432' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.179539088738007' lon='112.5540741423353' />
<node id='-430' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180427559712356' lon='112.55306619822007' />
<node id='-428' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.179673250515968' lon='112.5525438092836' />
<node id='-426' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17827732873464' lon='112.55266309201637' />
<node id='-424' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178889078707048' lon='112.55334721981005' />
<node id='-422' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17963521496055' lon='112.552500757806' />
<node id='-420' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17907781942441' lon='112.55175497002651' />
<node id='-418' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177627312675153' lon='112.55193616949114' />
<node id='-416' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17823906636551' lon='112.5526202972848' />
<node id='-414' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.179042953714987' lon='112.55170832038304' />
<node id='-412' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17848555509213' lon='112.55096253260356' />
<node id='-410' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177047250099246' lon='112.5502747917602' />
<node id='-408' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177047250099246' lon='112.55128749125905' />
<node id='-406' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177589038593577' lon='112.55189337848053' />
<node id='-404' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178450689189642' lon='112.55091587923913' />
<node id='-402' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178283916532187' lon='112.55069275202602' />
<node id='-400' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178283916532187' lon='112.55027479548116' />
<node id='-398' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177047250099246' lon='112.54925876572544' />
<node id='-396' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177047250099246' lon='112.5502138313144' />
<node id='-394' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178283916532187' lon='112.5502138313144' />
<node id='-392' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178283916532187' lon='112.54925876758593' />
<node id='-390' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177047250099246' lon='112.54817549454773' />
<node id='-388' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177047250099246' lon='112.54919780341915' />
<node id='-386' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178283916532187' lon='112.54919780341915' />
<node id='-384' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178283916532187' lon='112.54817549454773' />
<node id='-382' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177047250099246' lon='112.54638775682297' />
<node id='-380' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177047250099246' lon='112.54748256296874' />
<node id='-378' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178226438517914' lon='112.54748256296874' />
<node id='-376' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178392824230254' lon='112.54638775682297' />
<node id='-374' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17704725173925' lon='112.54535135110429' />
<node id='-372' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17704725173925' lon='112.54632679079573' />
<node id='-370' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178402090104154' lon='112.54632679079573' />
<node id='-368' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17848485810219' lon='112.54578213751041' />
<node id='-366' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178413825783306' lon='112.54535135296474' />
<node id='-364' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17704725173925' lon='112.54423770761144' />
<node id='-362' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17704725173925' lon='112.545290388798' />
<node id='-360' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17840376616126' lon='112.545290388798' />
<node id='-358' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178230189152814' lon='112.54423770761144' />
<node id='-356' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177047250099246' lon='112.5427853211763' />
<node id='-354' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.177047250099246' lon='112.54417674344471' />
<node id='-352' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.178220139353375' lon='112.54417674344471' />
<node id='-350' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17801970404093' lon='112.54296120339275' />
<node id='-348' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1809658806529' lon='112.55095264229868' />
<node id='-346' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181850869693037' lon='112.55095264229868' />
<node id='-344' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181850869693037' lon='112.5494774203477' />
<node id='-342' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181581893821036' lon='112.549484564586' />
<node id='-340' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1809658806529' lon='112.54944034100677' />
<node id='-338' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180097554398458' lon='112.55095264229868' />
<node id='-336' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18091214314128' lon='112.55095264229868' />
<node id='-334' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18091214314128' lon='112.54943648795533' />
<node id='-332' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180155538151908' lon='112.54938216941858' />
<node id='-330' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180097554398458' lon='112.54938216941858' />
<node id='-328' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180043818090457' lon='112.5511222212132' />
<node id='-326' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180043818090457' lon='112.54938216941858' />
<node id='-324' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.179107504467478' lon='112.54938216941858' />
<node id='-322' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.179107504467478' lon='112.55019855306315' />
<node id='-320' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17972792342577' lon='112.5511222212132' />
<node id='-318' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181459748570653' lon='112.55223838937567' />
<node id='-316' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181459748570653' lon='112.55101360646543' />
<node id='-314' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1809658806529' lon='112.55101360646543' />
<node id='-312' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.1809658806529' lon='112.5510145701934' />
<node id='-310' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18091214314128' lon='112.5510145701934' />
<node id='-308' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18091214314128' lon='112.55101360646543' />
<node id='-306' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180097554398458' lon='112.55101360646543' />
<node id='-304' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180097554398458' lon='112.5511222212132' />
<node id='-302' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180097554398458' lon='112.55118318537997' />
<node id='-300' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180043816450514' lon='112.55118318537997' />
<node id='-298' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17976887151127' lon='112.55118318537997' />
<node id='-296' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.179976580019414' lon='112.55149241926928' />
<node id='-294' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.180889702211985' lon='112.55234081989218' />
<node id='-292' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18094536338291' lon='112.55239253003778' />
<node id='-290' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181930196102453' lon='112.55330756556657' />
<node id='-288' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18265857712789' lon='112.55308312113452' />
<node id='-286' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18265857712789' lon='112.5520846989494' />
<node id='-284' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181904606732964' lon='112.55101360646543' />
<node id='-282' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181904606732964' lon='112.5510145701934' />
<node id='-280' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181850869693037' lon='112.5510145701934' />
<node id='-278' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181850869693037' lon='112.55101360646543' />
<node id='-276' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181513485807102' lon='112.55101360646543' />
<node id='-274' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181513485807102' lon='112.5522287334911' />
<node id='-272' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18265857712789' lon='112.5520229794283' />
<node id='-270' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18265857712789' lon='112.55101360646543' />
<node id='-268' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181904606732964' lon='112.54947599708147' />
<node id='-266' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.181904606732964' lon='112.55095264601964' />
<node id='-264' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18265857712789' lon='112.55095264601964' />
<node id='-262' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18265857712789' lon='112.55094107384197' />
<node id='-260' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.182839100165705' lon='112.54945119317917' />
<node id='-258' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18478749423344' lon='112.5485378767327' />
<node id='-256' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18478749423344' lon='112.54715507592269' />
<node id='-254' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.185067198306935' lon='112.54715507592269' />
<node id='-252' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18581906213536' lon='112.54747150428324' />
<node id='-250' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18581906213536' lon='112.5485378767327' />
<node id='-248' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17362767744617' lon='112.54416516196464' />
<node id='-246' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17362767744617' lon='112.54737090075683' />
<node id='-244' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.176949153550858' lon='112.54737090075683' />
<node id='-242' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.176949153550858' lon='112.54416516196464' />
<node id='-240' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17362767744617' lon='112.54147018039596' />
<node id='-238' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17362767744617' lon='112.54408322648175' />
<node id='-236' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.176949153550858' lon='112.54408322648175' />
<node id='-234' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.176949153550858' lon='112.54147018039596' />
<node id='-232' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17362767744617' lon='112.53984853318815' />
<node id='-230' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17362767744617' lon='112.54138824305261' />
<node id='-228' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.176949153550858' lon='112.54138824305261' />
<node id='-226' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.176949153550858' lon='112.53984853318815' />
<node id='-224' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17362767744617' lon='112.54744271709598' />
<node id='-222' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.176949153550858' lon='112.5511227570311' />
<node id='-220' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.176949153550858' lon='112.54744271709598' />
<node id='-218' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.173486229530123' lon='112.55009733929973' />
<node id='-216' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.18519387450682' lon='112.56328669342695' />
<node id='-214' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.192139494032048' lon='112.55576566726344' />
<node id='-212' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.19215760156667' lon='112.53638064736265' />
<node id='-210' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.17470099019668' lon='112.53638064736265' />
<node id='-208' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3' lat='28.173486229530123' lon='112.53835271573773' />
<way id='-1544' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1298' />
<nd ref='-1300' />
<nd ref='-1302' />
<nd ref='-1304' />
<nd ref='-1298' />
<tag k='building' v='stairs' />
<tag k='name' v='步梯' />
</way>
<way id='-1542' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1294' />
<nd ref='-1172' />
<nd ref='-1174' />
<nd ref='-1292' />
<nd ref='-1294' />
<tag k='building' v='shop' />
<tag k='name' v='1008' />
</way>
<way id='-1540' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1282' />
<nd ref='-1284' />
<nd ref='-1286' />
<nd ref='-1288' />
<nd ref='-1282' />
<tag k='building' v='shop' />
<tag k='name' v='1102' />
</way>
<way id='-1538' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1272' />
<nd ref='-1274' />
<nd ref='-1276' />
<nd ref='-1278' />
<nd ref='-1280' />
<nd ref='-1272' />
<tag k='building' v='shop' />
<tag k='name' v='1103' />
</way>
<way id='-1536' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1264' />
<nd ref='-1266' />
<nd ref='-1268' />
<nd ref='-1270' />
<nd ref='-1264' />
<tag k='building' v='shop' />
<tag k='name' v='1105' />
</way>
<way id='-1534' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1256' />
<nd ref='-1258' />
<nd ref='-1260' />
<nd ref='-1262' />
<nd ref='-1256' />
<tag k='building' v='shop' />
<tag k='name' v='1106' />
</way>
<way id='-1532' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1248' />
<nd ref='-1250' />
<nd ref='-1252' />
<nd ref='-1254' />
<nd ref='-1248' />
<tag k='building' v='shop' />
<tag k='name' v='1107' />
</way>
<way id='-1530' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1238' />
<nd ref='-1240' />
<nd ref='-1242' />
<nd ref='-1244' />
<nd ref='-1246' />
<nd ref='-1238' />
<tag k='building' v='shop' />
<tag k='name' v='1108' />
</way>
<way id='-1528' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1230' />
<nd ref='-1232' />
<nd ref='-1234' />
<nd ref='-1236' />
<nd ref='-1230' />
<tag k='building' v='shop' />
<tag k='name' v='1109' />
</way>
<way id='-1526' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1220' />
<nd ref='-1222' />
<nd ref='-1224' />
<nd ref='-1226' />
<nd ref='-1228' />
<nd ref='-1220' />
<tag k='building' v='shop' />
<tag k='name' v='1110' />
</way>
<way id='-1524' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1212' />
<nd ref='-1214' />
<nd ref='-1216' />
<nd ref='-1218' />
<nd ref='-1212' />
<tag k='building' v='shop' />
<tag k='name' v='1002' />
</way>
<way id='-1522' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1204' />
<nd ref='-1206' />
<nd ref='-1208' />
<nd ref='-1210' />
<nd ref='-1204' />
<tag k='building' v='shop' />
<tag k='name' v='1003' />
</way>
<way id='-1520' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1196' />
<nd ref='-1198' />
<nd ref='-1200' />
<nd ref='-1202' />
<nd ref='-1196' />
<tag k='building' v='shop' />
<tag k='name' v='1005' />
</way>
<way id='-1518' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1188' />
<nd ref='-1190' />
<nd ref='-1192' />
<nd ref='-1194' />
<nd ref='-1188' />
<tag k='building' v='shop' />
<tag k='name' v='1006' />
</way>
<way id='-1516' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1180' />
<nd ref='-1182' />
<nd ref='-1184' />
<nd ref='-1186' />
<nd ref='-1180' />
<tag k='building' v='shop' />
<tag k='name' v='1007' />
</way>
<way id='-1514' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1290' />
<nd ref='-1176' />
<nd ref='-1178' />
<nd ref='-1296' />
<nd ref='-1290' />
<tag k='building' v='shop' />
<tag k='name' v='1101' />
</way>
<way id='-1512' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1164' />
<nd ref='-1166' />
<nd ref='-1168' />
<nd ref='-1170' />
<nd ref='-1164' />
<tag k='building' v='shop' />
<tag k='name' v='1163' />
</way>
<way id='-1510' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1156' />
<nd ref='-1158' />
<nd ref='-1160' />
<nd ref='-1162' />
<nd ref='-1156' />
<tag k='building' v='shop' />
<tag k='name' v='1161' />
</way>
<way id='-1508' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1146' />
<nd ref='-1148' />
<nd ref='-1150' />
<nd ref='-1152' />
<nd ref='-1154' />
<nd ref='-1146' />
<tag k='building' v='shop' />
<tag k='name' v='1159' />
</way>
<way id='-1506' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1138' />
<nd ref='-1140' />
<nd ref='-1142' />
<nd ref='-1144' />
<nd ref='-1138' />
<tag k='building' v='shop' />
<tag k='name' v='1157' />
</way>
<way id='-1504' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1128' />
<nd ref='-1130' />
<nd ref='-1132' />
<nd ref='-1134' />
<nd ref='-1136' />
<nd ref='-1128' />
<tag k='building' v='shop' />
<tag k='name' v='1155' />
</way>
<way id='-1502' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1120' />
<nd ref='-1122' />
<nd ref='-1124' />
<nd ref='-1126' />
<nd ref='-1120' />
<tag k='building' v='shop' />
<tag k='name' v='1156' />
</way>
<way id='-1500' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1112' />
<nd ref='-1114' />
<nd ref='-1116' />
<nd ref='-1118' />
<nd ref='-1112' />
<tag k='building' v='shop' />
<tag k='name' v='1158' />
</way>
<way id='-1498' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1104' />
<nd ref='-1106' />
<nd ref='-1108' />
<nd ref='-1110' />
<nd ref='-1104' />
<tag k='building' v='shop' />
<tag k='name' v='1160' />
</way>
<way id='-1496' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1096' />
<nd ref='-1098' />
<nd ref='-1100' />
<nd ref='-1102' />
<nd ref='-1096' />
<tag k='building' v='shop' />
<tag k='name' v='1162' />
</way>
<way id='-1494' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1086' />
<nd ref='-1088' />
<nd ref='-1090' />
<nd ref='-1092' />
<nd ref='-1094' />
<nd ref='-1086' />
<tag k='building' v='shop' />
<tag k='name' v='1165' />
</way>
<way id='-1492' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1076' />
<nd ref='-1078' />
<nd ref='-1080' />
<nd ref='-1082' />
<nd ref='-1084' />
<nd ref='-1076' />
</way>
<way id='-1490' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1062' />
<nd ref='-1064' />
<nd ref='-1066' />
<nd ref='-1068' />
<nd ref='-1070' />
<nd ref='-1072' />
<nd ref='-1074' />
<nd ref='-1062' />
</way>
<way id='-1488' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1044' />
<nd ref='-1046' />
<nd ref='-1048' />
<nd ref='-1050' />
<nd ref='-1052' />
<nd ref='-1054' />
<nd ref='-1056' />
<nd ref='-1058' />
<nd ref='-1060' />
<nd ref='-1044' />
</way>
<way id='-1486' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1036' />
<nd ref='-1038' />
<nd ref='-1040' />
<nd ref='-1042' />
<nd ref='-1036' />
<tag k='building' v='lift' />
<tag k='name' v='直梯' />
</way>
<way id='-1484' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1028' />
<nd ref='-1030' />
<nd ref='-1032' />
<nd ref='-1034' />
<nd ref='-1028' />
<tag k='building' v='lift' />
<tag k='name' v='直梯' />
</way>
<way id='-1482' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1016' />
<nd ref='-1018' />
<nd ref='-1020' />
<nd ref='-1022' />
<nd ref='-1024' />
<nd ref='-1026' />
<nd ref='-1016' />
</way>
<way id='-1480' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1008' />
<nd ref='-1010' />
<nd ref='-1012' />
<nd ref='-1014' />
<nd ref='-1008' />
<tag k='building' v='shop' />
<tag k='name' v='1319' />
</way>
<way id='-1478' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-1000' />
<nd ref='-1002' />
<nd ref='-1004' />
<nd ref='-1006' />
<nd ref='-1000' />
<tag k='building' v='shop' />
<tag k='name' v='1320' />
</way>
<way id='-1476' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-992' />
<nd ref='-994' />
<nd ref='-996' />
<nd ref='-998' />
<nd ref='-992' />
<tag k='building' v='shop' />
<tag k='name' v='1327' />
</way>
<way id='-1474' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-984' />
<nd ref='-986' />
<nd ref='-988' />
<nd ref='-990' />
<nd ref='-984' />
<tag k='building' v='shop' />
<tag k='name' v='1326' />
</way>
<way id='-1472' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-976' />
<nd ref='-978' />
<nd ref='-980' />
<nd ref='-982' />
<nd ref='-976' />
<tag k='building' v='shop' />
<tag k='name' v='1325' />
</way>
<way id='-1470' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-968' />
<nd ref='-970' />
<nd ref='-972' />
<nd ref='-974' />
<nd ref='-968' />
<tag k='building' v='shop' />
<tag k='name' v='1328' />
</way>
<way id='-1468' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-960' />
<nd ref='-962' />
<nd ref='-964' />
<nd ref='-966' />
<nd ref='-960' />
<tag k='building' v='shop' />
<tag k='name' v='1329' />
</way>
<way id='-1466' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-952' />
<nd ref='-954' />
<nd ref='-956' />
<nd ref='-958' />
<nd ref='-952' />
<tag k='building' v='shop' />
<tag k='name' v='1330' />
</way>
<way id='-1464' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-944' />
<nd ref='-946' />
<nd ref='-948' />
<nd ref='-950' />
<nd ref='-944' />
<tag k='building' v='shop' />
<tag k='name' v='1323' />
</way>
<way id='-1462' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-936' />
<nd ref='-938' />
<nd ref='-940' />
<nd ref='-942' />
<nd ref='-936' />
<tag k='building' v='shop' />
<tag k='name' v='1322' />
</way>
<way id='-1460' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-928' />
<nd ref='-930' />
<nd ref='-932' />
<nd ref='-934' />
<nd ref='-928' />
<tag k='building' v='shop' />
<tag k='name' v='1321' />
</way>
<way id='-1458' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-918' />
<nd ref='-920' />
<nd ref='-922' />
<nd ref='-924' />
<nd ref='-926' />
<nd ref='-918' />
</way>
<way id='-1456' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-910' />
<nd ref='-912' />
<nd ref='-914' />
<nd ref='-916' />
<nd ref='-910' />
<tag k='building' v='shop' />
<tag k='name' v='1009' />
</way>
<way id='-1454' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-900' />
<nd ref='-902' />
<nd ref='-904' />
<nd ref='-906' />
<nd ref='-908' />
<nd ref='-900' />
</way>
<way id='-1452' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-894' />
<nd ref='-896' />
<nd ref='-898' />
<nd ref='-894' />
<tag k='building' v='shop' />
<tag k='name' v='1331' />
</way>
<way id='-1450' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-878' />
<nd ref='-880' />
<nd ref='-882' />
<nd ref='-884' />
<nd ref='-886' />
<nd ref='-888' />
<nd ref='-890' />
<nd ref='-892' />
<nd ref='-878' />
</way>
<way id='-1448' action='modify' timestamp='2010-11-25T14:44:46Z' visible='true' version='3'>
<nd ref='-862' />
<nd ref='-864' />
<nd ref='-866' />
<nd ref='-868' />
<nd ref='-870' />
<nd ref='-872' />
<nd ref='-874' />