-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2088 lines (2076 loc) · 422 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
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
<html>
<head>
<style type="text/css">div.i{position: absolute;border:0px;border-style:solid solid solid solid;}div.t{position: absolute;border:1px;border-style:solid solid solid solid; border-color:black black black black;}div.tooltip{width:auto; height:auto;margin:0 auto;font-family: Tahoma;font-size: 12px;padding:2;background-color:white;border:1px;border-style:solid solid solid solid;border-color:black black black black;}</style>
<script type="text/javascript">function hide_tooltip(evt){var element = document.elementFromPoint(evt.x, evt.y);var tooltip = document.getElementById("tooltip");tooltip.style.display = "none";}function toggle_visible(e){if (e==null || e.style == null)return;if (e.style.display == "none"){e.style.display = "";}else{e.style.display = "none";}}</script> </head>
<body>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/base/jquery-ui.css"><link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/ui-lightness/jquery-ui.css" type="text/css" media="all" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"></script>
<script>$(function() {$( "#tabs" ).tabs();});</script>
<div id="tabs" style='font-size: 12;'>
<ul>
<li><a href="#tabs-0">Tile Map</a></li>
<li><a href="#tabs-1">LF Heights</a></li>
<li><a href="#tabs-2">Terrain Details</a></li>
<li><a href="#tabs-3">Terrain Objects</a></li>
<li><a href="#tabs-4">Bob Script</a></li>
<li><a href="#tabs-5">Bob Script (Infield)</a></li>
</ul>
<div id="tabs-0">
<script type="text/javascript">function update_tooltip(evt){var element = document.elementFromPoint(evt.x, evt.y);if (element == null || element.className != 't'){hide_tooltip(evt);}else{var elements = element.id.split("|");var msg = "Position: " + elements[2];msg += "\nTile: " + elements[0];msg += "\nRotation: " + elements[1] + " degrees";var tooltip = document.getElementById("tooltip");if (tooltip != null && tooltip.style != null){tooltip.style.display = "";tooltip.style.left = (document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft) + evt.x + 16;tooltip.style.top = (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + evt.y;tooltip.innerText = msg;}}}</script><div style='position: relative; height: 592; padding:2;' onmouseout='hide_tooltip(event);' onmousemove='update_tooltip(event);'>
<div class='t' style='left:49px; top:73px; width:14px; height:22px; background-color:#006730;' id="battle/light_forest_rolling/2x3/aa|180|0x-1 (144x98)"></div>
<div class='t' style='left:65px; top:73px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_tl_rt/aa|90|2x-1 (146x98)"></div>
<div class='t' style='left:81px; top:81px; width:62px; height:62px; background-color:#000066;' id="battle/sea/8x8/8x8_aa|0|4x0 (148x99)"></div>
<div class='t' style='left:145px; top:57px; width:62px; height:62px; background-color:#000066;' id="battle/sea/8x8/8x8_aa|270|12x-3 (156x96)"></div>
<div class='t' style='left:209px; top:57px; width:62px; height:62px; background-color:#000066;' id="battle/sea/8x8/8x8_aa|90|20x-3 (164x96)"></div>
<div class='t' style='left:273px; top:81px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_bl_rt/ac|0|28x0 (172x99)"></div>
<div class='t' style='left:289px; top:73px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lb_rt/ac|0|30x-1 (174x98)"></div>
<div class='t' style='left:305px; top:81px; width:14px; height:14px; background-color:#223400;' id="battle/terrain_rugged_hills/2x2/aa|90|32x0 (176x99)"></div>
<div class='t' style='left:321px; top:73px; width:14px; height:14px; background-color:#669900;' id="battle/terrain_plains/2x2/aa|90|34x-1 (178x98)"></div>
<div class='t' style='left:337px; top:81px; width:14px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x1/aa|180|36x0 (180x99)"></div>
<div class='t' style='left:353px; top:73px; width:30px; height:30px; background-color:#142018;' id="battle/dense_forest_rugged/4x4/aa|270|38x-1 (182x98)"></div>
<div class='t' style='left:385px; top:65px; width:14px; height:22px; background-color:#003418;' id="battle/light_forest_rugged/2x3/aa|180|42x-2 (186x97)"></div>
<div class='t' style='left: 489px; top: 1px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 1px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 1px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 1px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 521px; top: 1px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 529px; top: 1px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 537px; top: 1px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 9px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 9px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 9px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 9px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 9px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 9px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 521px; top: 9px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 529px; top: 9px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 537px; top: 9px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 545px; top: 9px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 17px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 17px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 17px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 17px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 17px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 17px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 17px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 521px; top: 17px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 529px; top: 17px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 537px; top: 17px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 545px; top: 17px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 25px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 25px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 25px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 25px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 25px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 25px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 25px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 25px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 521px; top: 25px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 529px; top: 25px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 537px; top: 25px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 545px; top: 25px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 33px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 33px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 33px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 33px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 33px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 33px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 33px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 33px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 521px; top: 33px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 529px; top: 33px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 537px; top: 33px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 545px; top: 33px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 41px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 41px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 41px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 41px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 41px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 41px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 41px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 41px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 41px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 521px; top: 41px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 529px; top: 41px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 537px; top: 41px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 49px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 49px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 49px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 49px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 49px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 49px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 49px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 49px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 49px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 49px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 49px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 49px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 521px; top: 49px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 529px; top: 49px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 57px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 57px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 57px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 57px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 57px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 57px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 57px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 57px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 57px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 57px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 57px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 57px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 57px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 521px; top: 57px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 529px; top: 57px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 65px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 65px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 65px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 65px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 65px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 65px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 65px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 65px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 65px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 65px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 65px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 65px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 65px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 65px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 521px; top: 65px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 529px; top: 65px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 73px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 73px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 73px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 73px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 73px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 73px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 73px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 73px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 73px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 73px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 73px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 73px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 73px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 73px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 521px; top: 73px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 529px; top: 73px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 81px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 81px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 81px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 81px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 81px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 81px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 81px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 81px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 81px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 81px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 81px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 81px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 81px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 81px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 81px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 521px; top: 81px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 89px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 89px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 89px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 89px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 89px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 89px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 89px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 89px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 89px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 89px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 89px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 89px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 89px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 89px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 89px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 89px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 97px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 105px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 113px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 121px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 129px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 513px; top: 137px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 505px; top: 145px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 497px; top: 153px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 161px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 161px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 161px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 161px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 161px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 161px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 161px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 161px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 161px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 161px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 161px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 161px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 161px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 161px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 161px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 489px; top: 161px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 361px; top: 169px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 169px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 169px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 169px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 169px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 169px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 169px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 169px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 169px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 169px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 169px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 169px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 169px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 169px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 169px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 481px; top: 169px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 353px; top: 177px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 361px; top: 177px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 177px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 177px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 177px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 177px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 177px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 177px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 177px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 177px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 177px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 177px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 177px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 177px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 177px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 177px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 353px; top: 185px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 361px; top: 185px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 185px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 185px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 185px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 185px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 185px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 185px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 185px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 185px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 185px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 185px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 185px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 185px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 185px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 473px; top: 185px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 353px; top: 193px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 361px; top: 193px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 193px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 193px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 193px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 193px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 193px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 193px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 193px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 193px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 193px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 193px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 193px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 193px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 465px; top: 193px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 353px; top: 201px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 361px; top: 201px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 201px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 201px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 201px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 201px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 201px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 201px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 201px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 201px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 201px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 441px; top: 201px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 449px; top: 201px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 457px; top: 201px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 345px; top: 209px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 353px; top: 209px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 361px; top: 209px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 209px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 209px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 209px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 209px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 209px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 209px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 209px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 209px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 433px; top: 209px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 337px; top: 217px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 345px; top: 217px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 353px; top: 217px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 361px; top: 217px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 217px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 217px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 217px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 217px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 217px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 217px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 217px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 217px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 337px; top: 225px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 345px; top: 225px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 353px; top: 225px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 361px; top: 225px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 225px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 225px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 225px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 225px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 225px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 225px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 225px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 425px; top: 225px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 337px; top: 233px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 345px; top: 233px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 353px; top: 233px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 361px; top: 233px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 233px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 233px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 233px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 233px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 233px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 233px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 417px; top: 233px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 337px; top: 241px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 345px; top: 241px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 353px; top: 241px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 361px; top: 241px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 241px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 241px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 241px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 241px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 401px; top: 241px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 409px; top: 241px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 345px; top: 249px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 353px; top: 249px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 361px; top: 249px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 369px; top: 249px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 377px; top: 249px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 385px; top: 249px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left: 393px; top: 249px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_30_r/aa|0|36x-10 (180x89)"></div>
<div class='t' style='left:529px; top:81px; width:22px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/3x1/aa|0|60x0 (204x99)"></div>
<div class='t' style='left:553px; top:81px; width:14px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x1/aa|180|63x0 (207x99)"></div>
<div class='t' style='left:65px; top:89px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_bl_rt/ab|180|2x1 (146x100)"></div>
<div class='t' style='left:289px; top:89px; width:14px; height:14px; background-color:#669900;' id="battle/terrain_plains/2x2/aa|90|30x1 (174x100)"></div>
<div class='t' style='left:321px; top:89px; width:22px; height:14px; background-color:#223400;' id="battle/terrain_rugged_hills/2x3/ab|90|34x1 (178x100)"></div>
<div class='t' style='left:345px; top:89px; width:6px; height:14px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x1/aa|90|37x1 (181x100)"></div>
<div class='t' style='left:385px; top:89px; width:6px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/1x1/aa|0|42x1 (186x100)"></div>
<div class='t' style='left:521px; top:89px; width:62px; height:62px; background-color:#142018;' id="battle/dense_forest_rugged/8x8/aa|180|59x1 (203x100)"></div>
<div class='t' style='left:49px; top:97px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lb_rt/aa|180|0x2 (144x101)"></div>
<div class='t' style='left:273px; top:97px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_bl_rt/ab|270|28x2 (172x101)"></div>
<div class='t' style='left:305px; top:97px; width:14px; height:6px; background-color:#669900;' id="battle/terrain_plains/2x1/aa|0|32x2 (176x101)"></div>
<div class='t' style='left:65px; top:105px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|90|2x3 (146x102)"></div>
<div class='t' style='left:289px; top:105px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_tr/aa|270|30x3 (174x102)"></div>
<div class='t' style='left:305px; top:105px; width:14px; height:22px; background-color:#223400;' id="battle/terrain_rugged_hills/2x3/ab|0|32x3 (176x102)"></div>
<div class='t' style='left:321px; top:105px; width:30px; height:30px; background-color:#142018;' id="battle/dense_forest_rugged/4x4/aa|0|34x3 (178x102)"></div>
<div class='t' style='left:353px; top:105px; width:14px; height:22px; background-color:#142018;' id="battle/dense_forest_rugged/2x3/ab|180|38x3 (182x102)"></div>
<div class='t' style='left:369px; top:105px; width:6px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/1x1/ab|0|40x3 (184x102)"></div>
<div class='t' style='left:49px; top:113px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|90|0x4 (144x103)"></div>
<div class='t' style='left:273px; top:113px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|90|28x4 (172x103)"></div>
<div class='t' style='left:65px; top:121px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|270|2x5 (146x104)"></div>
<div class='t' style='left:73px; top:121px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|180|3x5 (147x104)"></div>
<div class='t' style='left:145px; top:121px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|270|12x5 (156x104)"></div>
<div class='t' style='left:161px; top:121px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|90|14x5 (158x104)"></div>
<div class='t' style='left:177px; top:121px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|0|16x5 (160x104)"></div>
<div class='t' style='left:185px; top:121px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|90|17x5 (161x104)"></div>
<div class='t' style='left:193px; top:121px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|270|18x5 (162x104)"></div>
<div class='t' style='left:209px; top:121px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|0|20x5 (164x104)"></div>
<div class='t' style='left:225px; top:121px; width:30px; height:30px; background-color:#000066;' id="battle/sea/4x4/4x4_aa|270|22x5 (166x104)"></div>
<div class='t' style='left:257px; top:121px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|0|26x5 (170x104)"></div>
<div class='t' style='left:289px; top:121px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_rt/aa|270|30x5 (174x104)"></div>
<div class='t' style='left:17px; top:129px; width:62px; height:62px; background-color:#000066;' id="battle/sea/8x8/8x8_aa|90|-4x6 (140x105)"></div>
<div class='t' style='left:177px; top:129px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lb_rb/ac|0|16x6 (160x105)"></div>
<div class='t' style='left:273px; top:129px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|0|28x6 (172x105)"></div>
<div class='t' style='left:305px; top:129px; width:14px; height:14px; background-color:#223400;' id="battle/terrain_rugged_hills/2x2/aa|270|32x6 (176x105)"></div>
<div class='t' style='left:353px; top:129px; width:14px; height:22px; background-color:#142018;' id="battle/dense_forest_rugged/2x3/ab|0|38x6 (182x105)"></div>
<div class='t' style='left:145px; top:137px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|180|12x7 (156x106)"></div>
<div class='t' style='left:161px; top:137px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_bl_rt/ab|0|14x7 (158x106)"></div>
<div class='t' style='left:193px; top:137px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_rb/aa|0|18x7 (162x106)"></div>
<div class='t' style='left:209px; top:137px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|0|20x7 (164x106)"></div>
<div class='t' style='left:217px; top:137px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|270|21x7 (165x106)"></div>
<div class='t' style='left:257px; top:137px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|90|26x7 (170x106)"></div>
<div class='t' style='left:289px; top:137px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_tl_rt/aa|270|30x7 (174x106)"></div>
<div class='t' style='left:321px; top:137px; width:30px; height:30px; background-color:#142018;' id="battle/dense_forest_rugged/4x4/ab|180|34x7 (178x106)"></div>
<div class='t' style='left:81px; top:145px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|0|4x8 (148x107)"></div>
<div class='t' style='left:97px; top:145px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|0|6x8 (150x107)"></div>
<div class='t' style='left:105px; top:145px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|180|7x8 (151x107)"></div>
<div class='t' style='left:113px; top:145px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lb_rb/ac|0|8x8 (152x107)"></div>
<div class='t' style='left:129px; top:145px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|0|10x8 (154x107)"></div>
<div class='t' style='left:137px; top:145px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|270|11x8 (155x107)"></div>
<div class='t' style='left:177px; top:145px; width:14px; height:22px; background-color:#223400;' id="battle/terrain_rugged_hills/2x3/ac|180|16x8 (160x107)"></div>
<div class='t' style='left:209px; top:145px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_bl_rt/aa|90|20x8 (164x107)"></div>
<div class='t' style='left:273px; top:145px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lb_rt/aa|0|28x8 (172x107)"></div>
<div class='t' style='left:305px; top:145px; width:14px; height:22px; background-color:#003418;' id="battle/light_forest_rugged/2x3/aa|180|32x8 (176x107)"></div>
<div class='t' style='left:513px; top:145px; width:6px; height:22px; background-color:#3A5F46;' id="battle/dense_forest_plains/3x1/aa|270|58x8 (202x107)"></div>
<div class='t' style='left:97px; top:153px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_bl_rt/aa|0|6x9 (150x108)"></div>
<div class='t' style='left:129px; top:153px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_rb/aa|0|10x9 (154x108)"></div>
<div class='t' style='left:145px; top:153px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|90|12x9 (156x108)"></div>
<div class='t' style='left:153px; top:153px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|0|13x9 (157x108)"></div>
<div class='t' style='left:161px; top:153px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_tl_rt/aa|270|14x9 (158x108)"></div>
<div class='t' style='left:193px; top:153px; width:14px; height:6px; background-color:#669900;' id="battle/terrain_plains/2x1/aa|180|18x9 (162x108)"></div>
<div class='t' style='left:225px; top:153px; width:30px; height:30px; background-color:#000066;' id="battle/sea/4x4/4x4_aa|90|22x9 (166x108)"></div>
<div class='t' style='left:257px; top:153px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_bl_rt/ab|0|26x9 (170x108)"></div>
<div class='t' style='left:289px; top:153px; width:14px; height:14px; background-color:#223400;' id="battle/terrain_rugged_hills/2x2/aa|0|30x9 (174x108)"></div>
<div class='t' style='left:353px; top:153px; width:14px; height:14px; background-color:#142018;' id="battle/dense_forest_rugged/2x2/ab|270|38x9 (182x108)"></div>
<div class='t' style='left:505px; top:153px; width:6px; height:22px; background-color:#3A5F46;' id="battle/dense_forest_plains/3x1/aa|270|57x9 (201x108)"></div>
<div class='t' style='left:521px; top:153px; width:6px; height:22px; background-color:#3A5F46;' id="battle/dense_forest_plains/3x1/aa|270|59x9 (203x108)"></div>
<div class='t' style='left:529px; top:153px; width:22px; height:14px; background-color:#003418;' id="battle/light_forest_rugged/2x3/aa|270|60x9 (204x108)"></div>
<div class='t' style='left:553px; top:153px; width:6px; height:14px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x1/aa|90|63x9 (207x108)"></div>
<div class='t' style='left:81px; top:161px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|0|4x10 (148x109)"></div>
<div class='t' style='left:113px; top:161px; width:14px; height:6px; background-color:#669900;' id="battle/terrain_plains/2x1/aa|180|8x10 (152x109)"></div>
<div class='t' style='left:145px; top:161px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_rt/ab|0|12x10 (156x109)"></div>
<div class='t' style='left:193px; top:161px; width:14px; height:14px; background-color:#223400;' id="battle/terrain_rugged_hills/2x2/aa|0|18x10 (162x109)"></div>
<div class='t' style='left:209px; top:161px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_rt/ab|90|20x10 (164x109)"></div>
<div class='t' style='left:273px; top:161px; width:14px; height:22px; background-color:#669900;' id="battle/terrain_plains/2x3/aa|0|28x10 (172x109)"></div>
<div class='t' style='left:497px; top:161px; width:6px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/1x1/ab|0|56x10 (200x109)"></div>
<div class='t' style='left:97px; top:169px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_tl_rt/aa|270|6x11 (150x110)"></div>
<div class='t' style='left:113px; top:169px; width:22px; height:14px; background-color:#223400;' id="battle/terrain_rugged_hills/2x3/aa|270|8x11 (152x110)"></div>
<div class='t' style='left:137px; top:169px; width:6px; height:22px; background-color:#669900;' id="battle/terrain_plains/3x1/aa|270|11x11 (155x110)"></div>
<div class='t' style='left:161px; top:169px; width:30px; height:30px; background-color:#446700;' id="battle/terrain_rolling_hills/4x4/aa|0|14x11 (158x110)"></div>
<div class='t' style='left:257px; top:169px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_rt/ab|270|26x11 (170x110)"></div>
<div class='t' style='left:289px; top:169px; width:30px; height:30px; background-color:#006730;' id="battle/light_forest_rolling/4x4/ae|90|30x11 (174x110)"></div>
<div class='t' style='left:321px; top:169px; width:14px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x1/aa|0|34x11 (178x110)"></div>
<div class='t' style='left:337px; top:169px; width:14px; height:22px; background-color:#142018;' id="battle/dense_forest_rugged/2x3/aa|0|36x11 (180x110)"></div>
<div class='t' style='left:353px; top:169px; width:6px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/1x1/ab|270|38x11 (182x110)"></div>
<div class='t' style='left:489px; top:169px; width:14px; height:22px; background-color:#142018;' id="battle/dense_forest_rugged/2x3/ab|0|55x11 (199x110)"></div>
<div class='t' style='left:513px; top:169px; width:6px; height:14px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x1/aa|270|58x11 (202x110)"></div>
<div class='t' style='left:529px; top:169px; width:14px; height:14px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x2/aa|270|60x11 (204x110)"></div>
<div class='t' style='left:545px; top:169px; width:22px; height:14px; background-color:#446700;' id="battle/terrain_rolling_hills/2x3/aa|270|62x11 (206x110)"></div>
<div class='t' style='left:81px; top:177px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_bl_rt/aa|0|4x12 (148x111)"></div>
<div class='t' style='left:145px; top:177px; width:14px; height:22px; background-color:#446700;' id="battle/terrain_rolling_hills/2x3/ac|180|12x12 (156x111)"></div>
<div class='t' style='left:193px; top:177px; width:14px; height:22px; background-color:#669900;' id="battle/terrain_plains/2x3/aa|180|18x12 (162x111)"></div>
<div class='t' style='left:209px; top:177px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_rt/ac|90|20x12 (164x111)"></div>
<div class='t' style='left:321px; top:177px; width:14px; height:22px; background-color:#006730;' id="battle/light_forest_rolling/2x3/ac|0|34x12 (178x111)"></div>
<div class='t' style='left:481px; top:177px; width:6px; height:14px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x1/aa|90|54x12 (198x111)"></div>
<div class='t' style='left:505px; top:177px; width:6px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/1x1/aa|180|57x12 (201x111)"></div>
<div class='t' style='left:521px; top:177px; width:6px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/1x1/aa|90|59x12 (203x111)"></div>
<div class='t' style='left:97px; top:185px; width:14px; height:14px; background-color:#223400;' id="battle/terrain_rugged_hills/2x2/aa|270|6x13 (150x112)"></div>
<div class='t' style='left:113px; top:185px; width:22px; height:6px; background-color:#669900;' id="battle/terrain_plains/3x1/aa|180|8x13 (152x112)"></div>
<div class='t' style='left:225px; top:185px; width:30px; height:30px; background-color:#000066;' id="battle/sea/4x4/4x4_aa|270|22x13 (166x112)"></div>
<div class='t' style='left:257px; top:185px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_rt/ac|270|26x13 (170x112)"></div>
<div class='t' style='left:273px; top:185px; width:14px; height:22px; background-color:#446700;' id="battle/terrain_rolling_hills/2x3/ac|180|28x13 (172x112)"></div>
<div class='t' style='left:505px; top:185px; width:22px; height:14px; background-color:#003418;' id="battle/light_forest_rugged/2x3/ab|90|57x13 (201x112)"></div>
<div class='t' style='left:529px; top:185px; width:30px; height:30px; background-color:#006730;' id="battle/light_forest_rolling/4x4/aa|90|60x13 (204x112)"></div>
<div class='t' style='left:17px; top:193px; width:62px; height:62px; background-color:#000066;' id="battle/sea/8x8/8x8_aa|270|-4x14 (140x113)"></div>
<div class='t' style='left:81px; top:193px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_bl_rt/ac|270|4x14 (148x113)"></div>
<div class='t' style='left:113px; top:193px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_rt/aa|180|8x14 (152x113)"></div>
<div class='t' style='left:129px; top:193px; width:14px; height:6px; background-color:#669900;' id="battle/terrain_plains/2x1/aa|180|10x14 (154x113)"></div>
<div class='t' style='left:209px; top:193px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_rt/ac|90|20x14 (164x113)"></div>
<div class='t' style='left:337px; top:193px; width:14px; height:14px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x2/aa|0|36x14 (180x113)"></div>
<div class='t' style='left:473px; top:193px; width:30px; height:30px; background-color:#003418;' id="battle/light_forest_rugged/4x4/aa|0|53x14 (197x113)"></div>
<div class='t' style='left:97px; top:201px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lb_rb/aa|180|6x15 (150x114)"></div>
<div class='t' style='left:129px; top:201px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_rb/ab|180|10x15 (154x114)"></div>
<div class='t' style='left:145px; top:201px; width:22px; height:6px; background-color:#669900;' id="battle/terrain_plains/3x1/aa|0|12x15 (156x114)"></div>
<div class='t' style='left:169px; top:201px; width:6px; height:6px; background-color:#669900;' id="battle/terrain_plains/1x1/aa|90|15x15 (159x114)"></div>
<div class='t' style='left:177px; top:201px; width:22px; height:14px; background-color:#223400;' id="battle/terrain_rugged_hills/2x3/aa|90|16x15 (160x114)"></div>
<div class='t' style='left:201px; top:201px; width:6px; height:14px; background-color:#669900;' id="battle/terrain_plains/2x1/aa|270|19x15 (163x114)"></div>
<div class='t' style='left:257px; top:201px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_bl_rt/ab|270|26x15 (170x114)"></div>
<div class='t' style='left:289px; top:201px; width:14px; height:6px; background-color:#669900;' id="battle/terrain_plains/2x1/aa|0|30x15 (174x114)"></div>
<div class='t' style='left:305px; top:201px; width:14px; height:14px; background-color:#003418;' id="battle/light_forest_rugged/2x2/aa|90|32x15 (176x114)"></div>
<div class='t' style='left:321px; top:201px; width:14px; height:22px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x3/aa|180|34x15 (178x114)"></div>
<div class='t' style='left:465px; top:201px; width:6px; height:22px; background-color:#3A5F46;' id="battle/dense_forest_plains/3x1/aa|90|52x15 (196x114)"></div>
<div class='t' style='left:505px; top:201px; width:22px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/3x1/aa|0|57x15 (201x114)"></div>
<div class='t' style='left:81px; top:209px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|0|4x16 (148x115)"></div>
<div class='t' style='left:89px; top:209px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|180|5x16 (149x115)"></div>
<div class='t' style='left:113px; top:209px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|0|8x16 (152x115)"></div>
<div class='t' style='left:121px; top:209px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|180|9x16 (153x115)"></div>
<div class='t' style='left:145px; top:209px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_tr/ab|270|12x16 (156x115)"></div>
<div class='t' style='left:161px; top:209px; width:14px; height:14px; background-color:#223400;' id="battle/terrain_rugged_hills/2x2/aa|180|14x16 (158x115)"></div>
<div class='t' style='left:209px; top:209px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_tr/aa|90|20x16 (164x115)"></div>
<div class='t' style='left:273px; top:209px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_tr/aa|270|28x16 (172x115)"></div>
<div class='t' style='left:289px; top:209px; width:14px; height:22px; background-color:#223400;' id="battle/terrain_rugged_hills/2x3/ac|0|30x16 (174x115)"></div>
<div class='t' style='left:337px; top:209px; width:6px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/1x1/aa|0|36x16 (180x115)"></div>
<div class='t' style='left:441px; top:209px; width:22px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/3x1/aa|0|49x16 (193x115)"></div>
<div class='t' style='left:505px; top:209px; width:6px; height:14px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x1/aa|270|57x16 (201x115)"></div>
<div class='t' style='left:513px; top:209px; width:14px; height:14px; background-color:#003418;' id="battle/light_forest_rugged/2x2/aa|180|58x16 (202x115)"></div>
<div class='t' style='left:81px; top:217px; width:62px; height:62px; background-color:#000066;' id="battle/sea/8x8/8x8_aa|270|4x17 (148x116)"></div>
<div class='t' style='left:177px; top:217px; width:14px; height:22px; background-color:#669900;' id="battle/terrain_plains/2x3/aa|0|16x17 (160x116)"></div>
<div class='t' style='left:193px; top:217px; width:14px; height:22px; background-color:#446700;' id="battle/terrain_rolling_hills/2x3/ab|180|18x17 (162x116)"></div>
<div class='t' style='left:225px; top:217px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_rb/ab|0|22x17 (166x116)"></div>
<div class='t' style='left:241px; top:217px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|90|24x17 (168x116)"></div>
<div class='t' style='left:249px; top:217px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|180|25x17 (169x116)"></div>
<div class='t' style='left:257px; top:217px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|90|26x17 (170x116)"></div>
<div class='t' style='left:305px; top:217px; width:14px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x1/aa|180|32x17 (176x116)"></div>
<div class='t' style='left:433px; top:217px; width:6px; height:22px; background-color:#3A5F46;' id="battle/dense_forest_plains/3x1/aa|90|48x17 (192x116)"></div>
<div class='t' style='left:441px; top:217px; width:22px; height:14px; background-color:#142018;' id="battle/dense_forest_rugged/2x3/ab|270|49x17 (193x116)"></div>
<div class='t' style='left:529px; top:217px; width:14px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x1/aa|180|60x17 (204x116)"></div>
<div class='t' style='left: 553px; top: 257px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 545px; top: 257px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 569px; top: 249px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 561px; top: 249px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 553px; top: 249px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 545px; top: 249px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 537px; top: 249px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 529px; top: 249px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 585px; top: 241px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 577px; top: 241px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 569px; top: 241px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 561px; top: 241px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 553px; top: 241px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 545px; top: 241px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 537px; top: 241px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 529px; top: 241px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 601px; top: 233px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 593px; top: 233px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 585px; top: 233px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 577px; top: 233px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 569px; top: 233px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 561px; top: 233px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 553px; top: 233px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 545px; top: 233px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 537px; top: 233px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 529px; top: 233px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 601px; top: 225px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 593px; top: 225px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 585px; top: 225px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 577px; top: 225px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 569px; top: 225px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 561px; top: 225px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 553px; top: 225px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 545px; top: 225px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 537px; top: 225px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 529px; top: 225px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 601px; top: 217px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 593px; top: 217px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 585px; top: 217px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 577px; top: 217px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 569px; top: 217px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 561px; top: 217px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 553px; top: 217px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 545px; top: 217px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 617px; top: 209px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 609px; top: 209px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 601px; top: 209px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 593px; top: 209px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 585px; top: 209px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 577px; top: 209px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 569px; top: 209px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 561px; top: 209px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 617px; top: 201px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 609px; top: 201px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 601px; top: 201px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 593px; top: 201px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 585px; top: 201px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 577px; top: 201px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 569px; top: 201px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 561px; top: 201px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 617px; top: 193px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 609px; top: 193px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 601px; top: 193px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 593px; top: 193px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 585px; top: 193px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 577px; top: 193px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 569px; top: 193px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 561px; top: 193px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 617px; top: 185px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 609px; top: 185px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 601px; top: 185px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 593px; top: 185px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 585px; top: 185px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 577px; top: 185px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 601px; top: 177px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left: 593px; top: 177px; width:6px; height:6px; background-color:#3C00FF; ;' id="battle/lakes/12x11/aa|180|60x12 (204x111)"></div>
<div class='t' style='left:145px; top:225px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_bl_rt/aa|270|12x18 (156x117)"></div>
<div class='t' style='left:161px; top:225px; width:14px; height:6px; background-color:#669900;' id="battle/terrain_plains/2x1/aa|0|14x18 (158x117)"></div>
<div class='t' style='left:209px; top:225px; width:14px; height:22px; background-color:#223400;' id="battle/terrain_rugged_hills/2x3/ac|180|20x18 (164x117)"></div>
<div class='t' style='left:241px; top:225px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_rb/ac|0|24x18 (168x117)"></div>
<div class='t' style='left:273px; top:225px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_tl_rt/aa|270|28x18 (172x117)"></div>
<div class='t' style='left:305px; top:225px; width:30px; height:30px; background-color:#003418;' id="battle/light_forest_rugged/4x4/ac|90|32x18 (176x117)"></div>
<div class='t' style='left:465px; top:225px; width:62px; height:62px; background-color:#142018;' id="battle/dense_forest_rugged/8x8/ab|270|52x18 (196x117)"></div>
<div class='t' style='left:161px; top:233px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_tr/ab|270|14x19 (158x118)"></div>
<div class='t' style='left:225px; top:233px; width:14px; height:6px; background-color:#669900;' id="battle/terrain_plains/2x1/aa|180|22x19 (166x118)"></div>
<div class='t' style='left:257px; top:233px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_rt/aa|0|26x19 (170x118)"></div>
<div class='t' style='left:289px; top:233px; width:14px; height:6px; background-color:#669900;' id="battle/terrain_plains/2x1/aa|0|30x19 (174x118)"></div>
<div class='t' style='left:425px; top:233px; width:6px; height:14px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x1/aa|90|47x19 (191x118)"></div>
<div class='t' style='left:441px; top:233px; width:14px; height:22px; background-color:#27402F;' id="battle/dense_forest_rolling/2x3/ac|0|49x19 (193x118)"></div>
<div class='t' style='left:457px; top:233px; width:6px; height:22px; background-color:#3A5F46;' id="battle/dense_forest_plains/3x1/aa|90|51x19 (195x118)"></div>
<div class='t' style='left:145px; top:241px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|180|12x20 (156x119)"></div>
<div class='t' style='left:177px; top:241px; width:14px; height:14px; background-color:#006730;' id="battle/light_forest_rolling/2x2/ab|180|16x20 (160x119)"></div>
<div class='t' style='left:193px; top:241px; width:14px; height:6px; background-color:#669900;' id="battle/terrain_plains/2x1/aa|180|18x20 (162x119)"></div>
<div class='t' style='left:225px; top:241px; width:30px; height:30px; background-color:#446700;' id="battle/terrain_rolling_hills/4x4/ac|180|22x20 (166x119)"></div>
<div class='t' style='left:273px; top:241px; width:14px; height:22px; background-color:#446700;' id="battle/terrain_rolling_hills/2x3/ac|0|28x20 (172x119)"></div>
<div class='t' style='left:289px; top:241px; width:14px; height:14px; background-color:#223400;' id="battle/terrain_rugged_hills/2x2/ac|180|30x20 (174x119)"></div>
<div class='t' style='left:417px; top:241px; width:6px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/1x1/aa|90|46x20 (190x119)"></div>
<div class='t' style='left:433px; top:241px; width:6px; height:22px; background-color:#3A5F46;' id="battle/dense_forest_plains/3x1/aa|270|48x20 (192x119)"></div>
<div class='t' style='left:161px; top:249px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_bl_rt/ac|270|14x21 (158x120)"></div>
<div class='t' style='left:193px; top:249px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_rt/aa|180|18x21 (162x120)"></div>
<div class='t' style='left:209px; top:249px; width:14px; height:6px; background-color:#669900;' id="battle/terrain_plains/2x1/aa|180|20x21 (164x120)"></div>
<div class='t' style='left:257px; top:249px; width:14px; height:14px; background-color:#223400;' id="battle/terrain_rugged_hills/2x2/aa|0|26x21 (170x120)"></div>
<div class='t' style='left:337px; top:249px; width:6px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/1x1/aa|0|36x21 (180x120)"></div>
<div class='t' style='left:401px; top:249px; width:14px; height:22px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x3/aa|0|44x21 (188x120)"></div>
<div class='t' style='left:417px; top:249px; width:14px; height:22px; background-color:#006730;' id="battle/light_forest_rolling/2x3/aa|180|46x21 (190x120)"></div>
<div class='t' style='left:1px; top:257px; width:78px; height:78px; background-color:#000066;' id="battle/sea/10x10/10x10_aa|90|-6x22 (138x121)"></div>
<div class='t' style='left:145px; top:257px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|270|12x22 (156x121)"></div>
<div class='t' style='left:177px; top:257px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lb_rb/aa|180|16x22 (160x121)"></div>
<div class='t' style='left:209px; top:257px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_tr/ab|270|20x22 (164x121)"></div>
<div class='t' style='left:289px; top:257px; width:30px; height:30px; background-color:#446700;' id="battle/terrain_rolling_hills/4x4/ac|180|30x22 (174x121)"></div>
<div class='t' style='left:321px; top:257px; width:6px; height:22px; background-color:#3A5F46;' id="battle/dense_forest_plains/3x1/aa|270|34x22 (178x121)"></div>
<div class='t' style='left:329px; top:257px; width:62px; height:62px; background-color:#003418;' id="battle/light_forest_rugged/8x8/ac|0|35x22 (179x121)"></div>
<div class='t' style='left:393px; top:257px; width:6px; height:14px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x1/aa|270|43x22 (187x121)"></div>
<div class='t' style='left:441px; top:257px; width:6px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/1x1/ab|0|49x22 (193x121)"></div>
<div class='t' style='left:449px; top:257px; width:6px; height:6px; background-color:#009947;' id="battle/light_forest_plains/1x1/aa|90|50x22 (194x121)"></div>
<div class='t' style='left:457px; top:257px; width:6px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/1x1/ab|0|51x22 (195x121)"></div>
<div class='t' style='left:529px; top:257px; width:14px; height:14px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x2/aa|270|60x22 (204x121)"></div>
<div class='t' style='left:161px; top:265px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|0|14x23 (158x122)"></div>
<div class='t' style='left:193px; top:265px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|270|18x23 (162x122)"></div>
<div class='t' style='left:257px; top:265px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_rt/ab|180|26x23 (170x122)"></div>
<div class='t' style='left:273px; top:265px; width:14px; height:6px; background-color:#669900;' id="battle/terrain_plains/2x1/aa|180|28x23 (172x122)"></div>
<div class='t' style='left:433px; top:265px; width:30px; height:30px; background-color:#003418;' id="battle/light_forest_rugged/4x4/ac|0|48x23 (192x122)"></div>
<div class='t' style='left:545px; top:265px; width:14px; height:14px; background-color:#3A5F46;' id="battle/dense_forest_plains/2x2/aa|90|62x23 (206x122)"></div>
<div class='t' style='left:145px; top:273px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|270|12x24 (156x123)"></div>
<div class='t' style='left:177px; top:273px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|180|16x24 (160x123)"></div>
<div class='t' style='left:209px; top:273px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_bl_rt/ab|270|20x24 (164x123)"></div>
<div class='t' style='left:225px; top:273px; width:14px; height:6px; background-color:#669900;' id="battle/terrain_plains/2x1/aa|180|22x24 (166x123)"></div>
<div class='t' style='left:241px; top:273px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lb_rt/aa|180|24x24 (168x123)"></div>
<div class='t' style='left:273px; top:273px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lt_tr/ab|270|28x24 (172x123)"></div>
<div class='t' style='left:393px; top:273px; width:30px; height:30px; background-color:#006730;' id="battle/light_forest_rolling/4x4/aa|270|43x24 (187x123)"></div>
<div class='t' style='left:425px; top:273px; width:6px; height:22px; background-color:#009947;' id="battle/light_forest_plains/3x1/aa|90|47x24 (191x123)"></div>
<div class='t' style='left:529px; top:273px; width:14px; height:22px; background-color:#142018;' id="battle/dense_forest_rugged/2x3/ab|180|60x24 (204x123)"></div>
<div class='t' style='left:81px; top:281px; width:30px; height:30px; background-color:#000066;' id="battle/sea/4x4/4x4_aa|270|4x25 (148x124)"></div>
<div class='t' style='left:113px; top:281px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|270|8x25 (152x124)"></div>
<div class='t' style='left:121px; top:281px; width:6px; height:6px; background-color:#000066;' id="battle/sea/1x1/1x1_aa|90|9x25 (153x124)"></div>
<div class='t' style='left:129px; top:281px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lb_rb/ab|0|10x25 (154x124)"></div>
<div class='t' style='left:161px; top:281px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|270|14x25 (158x124)"></div>
<div class='t' style='left:193px; top:281px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|90|18x25 (162x124)"></div>
<div class='t' style='left:225px; top:281px; width:14px; height:14px; background-color:#FE0000;' id="battle/cliff_custom/2x2_lb_rb/ac|180|22x25 (166x124)"></div>
<div class='t' style='left:257px; top:281px; width:14px; height:14px; background-color:#000066;' id="battle/sea/2x2/2x2_aa|270|26x25 (170x124)"></div>
<div class='t' style='left:321px; top:281px; width:6px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/1x1/ab|90|34x25 (178x124)"></div>
<div class='t' style='left:545px; top:281px; width:6px; height:6px; background-color:#3A5F46;' id="battle/dense_forest_plains/1x1/ab|180|62x25 (206x124)"></div>
<div class='t' style='left: 529px; top: 401px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 521px; top: 401px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 513px; top: 401px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 569px; top: 393px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 561px; top: 393px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 553px; top: 393px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 545px; top: 393px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 537px; top: 393px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 529px; top: 393px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 521px; top: 393px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 513px; top: 393px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 505px; top: 393px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 585px; top: 385px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 577px; top: 385px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 569px; top: 385px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 561px; top: 385px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 553px; top: 385px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 545px; top: 385px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 537px; top: 385px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 529px; top: 385px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 521px; top: 385px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 513px; top: 385px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 505px; top: 385px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 497px; top: 385px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 489px; top: 385px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 617px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 609px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 601px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 593px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 585px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 577px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 569px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 561px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 553px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 545px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 537px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 529px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 521px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 513px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 505px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 497px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 489px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 481px; top: 377px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 641px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 633px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 625px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 617px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 609px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 601px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 593px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 585px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 577px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 569px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 561px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 553px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 545px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 537px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 529px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 521px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 513px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 505px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 497px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 489px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 481px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 473px; top: 369px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 657px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 649px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 641px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 633px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 625px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 617px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 609px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 601px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 593px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 585px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 577px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 569px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 561px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 553px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 545px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 537px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 529px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 521px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 513px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 505px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 497px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 489px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 481px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 473px; top: 361px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 665px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 657px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 649px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 641px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 633px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 625px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 617px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 609px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 601px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 593px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 585px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 577px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 569px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 561px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 553px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 545px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 537px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 529px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 521px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 513px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 505px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 497px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 489px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 481px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 473px; top: 353px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 673px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 665px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 657px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 649px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 641px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 633px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 625px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 617px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 609px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 601px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 593px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 585px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 577px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 569px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 561px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 553px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 545px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 537px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 529px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 521px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 513px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 505px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 497px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 489px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 481px; top: 345px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 681px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 673px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 665px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 657px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 649px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 641px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 633px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 625px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 617px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 609px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 601px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 593px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 585px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 577px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 569px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 561px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 553px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 545px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 537px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 529px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 521px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 513px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 505px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 497px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 489px; top: 337px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 689px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 681px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 673px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 665px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 657px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 649px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 641px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 633px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 625px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 617px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 609px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 601px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 593px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 585px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 577px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 569px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 561px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 553px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 545px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 537px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 529px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 521px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 513px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 505px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 497px; top: 329px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 705px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 697px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 689px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 681px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 673px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 665px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 657px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 649px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 641px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 633px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 625px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 617px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 609px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 601px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 593px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 585px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 577px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 569px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 561px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 553px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 545px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 537px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 529px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 521px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 513px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 505px; top: 321px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 713px; top: 313px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 705px; top: 313px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>
<div class='t' style='left: 697px; top: 313px; width:6px; height:6px; background-color:#636363; ;' id="battle/atlantic_mountains/large_oval_60_r/aa|180|53x18 (197x117)"></div>