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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
|
@{{BLOCK(Layer_1)
@=======================================================================
@
@ Layer_1, 256x256@8,
@ + regular map (flat), not compressed, 32x32
@ Total size: 2048 = 2048
@
@ Time-stamp: 2007-12-07, 18:17:34
@ Exported by Cearn's GBA Image Transmogrifier
@ ( http://www.coranac.com )
@
@=======================================================================
.section .rodata
.align 2
.global Layer_1Map @ 2048 bytes
Layer_1Map:
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0001,0x0002,0x0003,0x0004,0x0001,0x0002,0x0003,0x0004
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0005,0x0006,0x0007,0x0008,0x0005,0x0006,0x0007,0x0008
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x0009,0x000A,0x000B,0x000C,0x0009,0x000A,0x000B,0x000C
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
.hword 0x000D,0x000E,0x000F,0x0010,0x000D,0x000E,0x000F,0x0010
@}}BLOCK(Layer_1)
@{{BLOCK(Layer_2)
@=======================================================================
@
@ Layer_2, 256x256@8,
@ + regular map (flat), not compressed, 32x32
@ Total size: 2048 = 2048
@
@ Time-stamp: 2007-12-07, 18:17:34
@ Exported by Cearn's GBA Image Transmogrifier
@ ( http://www.coranac.com )
@
@=======================================================================
.section .rodata
.align 2
.global Layer_2Map @ 2048 bytes
Layer_2Map:
.hword 0x0000,0x0000,0x0000,0x0011,0x0012,0x0013,0x0014,0x0015
.hword 0x0016,0x0014,0x0015,0x0016,0x0013,0x0014,0x0015,0x0016
.hword 0x0013,0x0014,0x0015,0x0016,0x0013,0x0014,0x0015,0x0016
.hword 0x0013,0x0414,0x0413,0x0412,0x0411,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0017,0x0018,0x0019,0x001A,0x001B,0x001C
.hword 0x001D,0x001B,0x001C,0x001D,0x001A,0x001B,0x001C,0x001D
.hword 0x001A,0x001B,0x001C,0x001D,0x001A,0x001B,0x001C,0x001D
.hword 0x001A,0x041B,0x041A,0x0419,0x0418,0x0417,0x0000,0x0000
.hword 0x001E,0x001F,0x0020,0x0021,0x0022,0x0023,0x0024,0x0025
.hword 0x0026,0x0024,0x0025,0x0026,0x0027,0x0028,0x0029,0x002A
.hword 0x0027,0x0028,0x0029,0x002A,0x0023,0x0024,0x0025,0x0026
.hword 0x0023,0x0424,0x0423,0x0422,0x0421,0x0420,0x041F,0x041E
.hword 0x002B,0x002C,0x002D,0x002E,0x002F,0x0030,0x0031,0x0032
.hword 0x0033,0x0031,0x0032,0x0033,0x0034,0x0035,0x0036,0x0037
.hword 0x0034,0x0035,0x0036,0x0037,0x0030,0x0031,0x0032,0x0033
.hword 0x0030,0x0431,0x0430,0x042F,0x042E,0x042D,0x042C,0x042B
.hword 0x0038,0x0039,0x003A,0x003B,0x003C,0x003D,0x003E,0x003F
.hword 0x0040,0x003E,0x003F,0x0040,0x0041,0x0042,0x0043,0x0044
.hword 0x0041,0x0042,0x0043,0x0044,0x003D,0x003E,0x003F,0x0040
.hword 0x003D,0x043E,0x043D,0x043C,0x043B,0x043A,0x0439,0x0438
.hword 0x0045,0x0046,0x0047,0x0048,0x0049,0x004A,0x004B,0x004C
.hword 0x004D,0x004B,0x004C,0x004D,0x004E,0x004F,0x0050,0x0051
.hword 0x0052,0x0053,0x0054,0x0055,0x004A,0x004B,0x004C,0x004D
.hword 0x004A,0x044B,0x044A,0x0449,0x0448,0x0447,0x0446,0x0445
.hword 0x0056,0x0057,0x0058,0x0059,0x005A,0x005B,0x005C,0x005D
.hword 0x005E,0x005C,0x005D,0x005E,0x005F,0x0060,0x0061,0x0062
.hword 0x0063,0x0064,0x0065,0x0066,0x005B,0x005C,0x005D,0x005E
.hword 0x005B,0x045C,0x045B,0x045A,0x0459,0x0458,0x0457,0x0456
.hword 0x0067,0x0068,0x0069,0x006A,0x006B,0x006C,0x006D,0x006E
.hword 0x006F,0x006D,0x006E,0x006F,0x0070,0x0071,0x0072,0x0000
.hword 0x0000,0x0073,0x0074,0x0075,0x006C,0x006D,0x006E,0x006F
.hword 0x006C,0x046D,0x046C,0x046B,0x046A,0x0469,0x0468,0x0467
.hword 0x0038,0x0039,0x0076,0x0077,0x0078,0x0079,0x007A,0x007B
.hword 0x007C,0x007A,0x007B,0x007C,0x007D,0x007E,0x007F,0x0000
.hword 0x0000,0x0080,0x0081,0x0082,0x0079,0x007A,0x007B,0x007C
.hword 0x0079,0x047A,0x0479,0x0478,0x0477,0x0476,0x0439,0x0438
.hword 0x0045,0x0046,0x0083,0x0084,0x0085,0x0086,0x0087,0x0088
.hword 0x0089,0x0087,0x0088,0x0089,0x008A,0x008B,0x008C,0x0000
.hword 0x0000,0x008D,0x008E,0x008F,0x0086,0x0087,0x0088,0x0089
.hword 0x0086,0x0487,0x0486,0x0485,0x0484,0x0483,0x0446,0x0445
.hword 0x0056,0x0057,0x0090,0x0091,0x0092,0x0093,0x0094,0x0095
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0092
.hword 0x0093,0x0094,0x0095,0x0096,0x0491,0x0490,0x0457,0x0456
.hword 0x0067,0x0068,0x0097,0x0098,0x0099,0x009A,0x009B,0x009C
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0099
.hword 0x009A,0x009B,0x009C,0x0000,0x0498,0x0497,0x0468,0x0467
.hword 0x0056,0x009D,0x009E,0x0000,0x009F,0x00A0,0x00A1,0x00A2
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00A3
.hword 0x00A4,0x00A5,0x00A6,0x00A7,0x04A7,0x04A6,0x04A5,0x009F
.hword 0x00A0,0x00A1,0x00A2,0x0000,0x0000,0x049E,0x049D,0x0456
.hword 0x0067,0x00A8,0x0000,0x0000,0x00A9,0x00AA,0x00AB,0x00AC
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00AD,0x00AE
.hword 0x00AF,0x00B0,0x00B1,0x00B2,0x04B2,0x04B1,0x04B0,0x00A9
.hword 0x00AA,0x00AB,0x00AC,0x0000,0x0000,0x0000,0x04A8,0x0467
.hword 0x0038,0x00B3,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00B4,0x00B5
.hword 0x00B6,0x00B7,0x00B8,0x00B9,0x04B9,0x04B8,0x04B7,0x04B6
.hword 0x04B5,0x04B4,0x0000,0x0000,0x0000,0x0000,0x04B3,0x0438
.hword 0x0045,0x00BA,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00BB,0x00BC
.hword 0x00BD,0x00BE,0x00BF,0x00C0,0x04C0,0x04BF,0x04BE,0x04BD
.hword 0x04BC,0x04BB,0x00C1,0x0000,0x0000,0x0000,0x04BA,0x0445
.hword 0x0067,0x0068,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00C2,0x00C3
.hword 0x00C4,0x00C5,0x00C6,0x00C7,0x04C7,0x04C6,0x04C5,0x04C4
.hword 0x04C3,0x04C2,0x00C8,0x0000,0x0000,0x0000,0x0468,0x0467
.hword 0x0056,0x009D,0x0000,0x0000,0x0000,0x0000,0x00C9,0x00CA
.hword 0x00CB,0x00CC,0x00CD,0x00CE,0x0000,0x0000,0x00CF,0x00D0
.hword 0x00D1,0x00D2,0x0000,0x0000,0x0000,0x0000,0x04D2,0x04D1
.hword 0x04D0,0x04CF,0x00D3,0x0000,0x0000,0x0000,0x049D,0x0456
.hword 0x0067,0x00A8,0x0000,0x0000,0x0000,0x0000,0x00D4,0x00D5
.hword 0x00D6,0x00D7,0x00D8,0x00D9,0x0000,0x0092,0x0093,0x0094
.hword 0x0095,0x0000,0x0000,0x0000,0x0000,0x0000,0x00DA,0x00DB
.hword 0x00DC,0x00DD,0x00DE,0x0000,0x0000,0x0000,0x04A8,0x0467
.hword 0x0038,0x00B3,0x0000,0x0000,0x0000,0x0000,0x00DF,0x00E0
.hword 0x00E1,0x00E2,0x00E3,0x00E4,0x0000,0x0099,0x009A,0x009B
.hword 0x009C,0x0000,0x0000,0x00E5,0x00E6,0x00E7,0x00E8,0x0092
.hword 0x0093,0x0094,0x0095,0x0000,0x0000,0x0000,0x04B3,0x0438
.hword 0x0045,0x00BA,0x0000,0x0000,0x0000,0x0000,0x00E9,0x00EA
.hword 0x00EB,0x00EC,0x00ED,0x00EE,0x0000,0x009F,0x00A0,0x00A1
.hword 0x00A2,0x0000,0x0000,0x00EF,0x00F0,0x00F1,0x00F2,0x0099
.hword 0x009A,0x009B,0x009C,0x0000,0x0000,0x0000,0x04BA,0x0445
.hword 0x0067,0x0068,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x00A9,0x00AA,0x00AB
.hword 0x00AC,0x0000,0x0000,0x00F3,0x00F4,0x00F5,0x00F6,0x009F
.hword 0x00A0,0x00A1,0x00A2,0x0000,0x0000,0x0000,0x0468,0x0467
.hword 0x0056,0x009D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x08DA,0x08DB,0x08DC,0x08DD
.hword 0x08DE,0x0000,0x0000,0x00F7,0x00F8,0x00F9,0x00FA,0x00A9
.hword 0x00AA,0x00AB,0x00AC,0x0000,0x0000,0x0000,0x049D,0x0456
.hword 0x0067,0x00A8,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0CD2,0x0CD1,0x0CD0,0x0CCF
.hword 0x08D3,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x04A8,0x0467
.hword 0x0038,0x00B3,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x00FB,0x0CC7,0x0CC6,0x0CC5,0x0CC4,0x0CC3,0x0CC2
.hword 0x08C8,0x0000,0x0000,0x0000,0x0000,0x00C9,0x00CA,0x00CB
.hword 0x00CC,0x00CD,0x00CE,0x0000,0x0000,0x0000,0x04B3,0x0438
.hword 0x0045,0x00BA,0x0000,0x0000,0x0000,0x0092,0x0093,0x0094
.hword 0x0095,0x00FC,0x0CC0,0x0CBF,0x0CBE,0x0CBD,0x0CBC,0x0CBB
.hword 0x08C1,0x0000,0x0000,0x0000,0x0000,0x00D4,0x00D5,0x00D6
.hword 0x00D7,0x00D8,0x00D9,0x0000,0x0000,0x0000,0x04BA,0x0445
.hword 0x0067,0x0068,0x0000,0x0000,0x0000,0x0099,0x009A,0x009B
.hword 0x009C,0x00FD,0x0CB9,0x0CB8,0x0CB7,0x0CB6,0x0CB5,0x0CB4
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x00DF,0x00E0,0x00E1
.hword 0x00E2,0x00E3,0x00E4,0x0000,0x0000,0x0000,0x0468,0x0467
.hword 0x0045,0x00BA,0x0000,0x0000,0x0000,0x009F,0x00A0,0x00A1
.hword 0x00A2,0x00FE,0x0CB2,0x0CB1,0x0CB0,0x0CAF,0x0CAE,0x0CAD
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x00E9,0x00EA,0x00EB
.hword 0x00EC,0x00ED,0x00EE,0x0000,0x0000,0x0000,0x049D,0x0456
.hword 0x00FF,0x0100,0x0101,0x0000,0x0000,0x00A9,0x00AA,0x00AB
.hword 0x00AC,0x0102,0x0CA7,0x0CA6,0x0CA5,0x0CA4,0x0CA3,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0501,0x0500,0x04FF
.hword 0x0000,0x0103,0x0104,0x0105,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0505,0x0504,0x0503,0x0000
.hword 0x0000,0x0000,0x0106,0x0107,0x0108,0x0109,0x010A,0x0109
.hword 0x010A,0x010B,0x0109,0x010A,0x010B,0x0109,0x010A,0x010B
.hword 0x0109,0x010A,0x010B,0x0109,0x010A,0x010B,0x0109,0x010A
.hword 0x010B,0x0109,0x010A,0x0508,0x0507,0x0506,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x010C,0x010D,0x010E,0x010F,0x010E
.hword 0x010F,0x0110,0x010E,0x010F,0x0110,0x010E,0x010F,0x0110
.hword 0x010E,0x010F,0x0110,0x010E,0x010F,0x0110,0x010E,0x010F
.hword 0x0110,0x010E,0x010F,0x050D,0x050C,0x0000,0x0000,0x0000
@}}BLOCK(Layer_2)
@{{BLOCK(Layer_3)
@=======================================================================
@
@ Layer_3, 256x256@8,
@ + regular map (flat), not compressed, 32x32
@ Total size: 2048 = 2048
@
@ Time-stamp: 2007-12-07, 18:17:34
@ Exported by Cearn's GBA Image Transmogrifier
@ ( http://www.coranac.com )
@
@=======================================================================
.section .rodata
.align 2
.global Layer_3Map @ 2048 bytes
Layer_3Map:
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0111,0x0112,0x0113
.hword 0x0114,0x0115,0x0116,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0113,0x0114,0x0115,0x0116
.hword 0x0111,0x0112,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0117,0x0118,0x0119
.hword 0x011A,0x011B,0x011C,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0119,0x011A,0x011B,0x011C
.hword 0x0117,0x0118,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x011D,0x011E,0x011F
.hword 0x0120,0x0121,0x0122,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x011F,0x0120,0x0121,0x0122
.hword 0x011D,0x011E,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0123,0x0124,0x0000
.hword 0x0125,0x0126,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0125,0x0126,0x0000
.hword 0x0123,0x0124,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0127,0x0128,0x0000
.hword 0x0129,0x012A,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0129,0x012A,0x0000
.hword 0x0127,0x0128,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x012B,0x012C,0x0000
.hword 0x012D,0x012E,0x012F,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x012D,0x012E,0x012F
.hword 0x012B,0x012C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0130,0x0131,0x0000
.hword 0x0132,0x0133,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0132,0x0133,0x0000
.hword 0x0130,0x0131,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0134,0x0135,0x0000
.hword 0x0136,0x0137,0x0138,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0136,0x0137,0x0138
.hword 0x0134,0x0135,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
.hword 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
@}}BLOCK(Layer_3)
@{{BLOCK(Multilayer)
@=======================================================================
@
@ Multilayer, 8x2504@8,
@ + palette 256 entries, not compressed
@ + 313 tiles not compressed
@ Total size: 512 + 20032 = 20544
@
@ Time-stamp: 2007-12-07, 18:17:35
@ Exported by Cearn's GBA Image Transmogrifier
@ ( http://www.coranac.com )
@
@=======================================================================
.section .rodata
.align 2
.global MultilayerPal @ 512 bytes
MultilayerPal:
.hword 0x0000,0x0000,0x0000,0x0000,0x0001,0x0001,0x0002,0x0002
.hword 0x0022,0x0023,0x0442,0x0C42,0x1063,0x1083,0x0024,0x0005
.hword 0x0045,0x0C64,0x0006,0x0007,0x0446,0x0467,0x0847,0x1066
.hword 0x0887,0x1484,0x14A5,0x1CC5,0x14A6,0x1CC6,0x18C7,0x20E5
.hword 0x20E6,0x2507,0x2927,0x0008,0x0428,0x0068,0x0869,0x0C69
.hword 0x000A,0x042A,0x044A,0x086A,0x0C6B,0x0488,0x04AA,0x0C8A
.hword 0x088B,0x0CAB,0x04CA,0x1CE8,0x14AA,0x000D,0x0C6D,0x082E
.hword 0x088C,0x08AC,0x04CD,0x08AE,0x10AC,0x14CC,0x18CC,0x108E
.hword 0x14AF,0x14CF,0x18EE,0x20E9,0x1D0B,0x050E,0x190D,0x152E
.hword 0x190E,0x190F,0x2108,0x2928,0x2D49,0x252A,0x296A,0x316A
.hword 0x2D8B,0x358B,0x39AB,0x252D,0x316D,0x258E,0x2DAE,0x318C
.hword 0x35AD,0x35EF,0x39EE,0x39EF,0x41EE,0x420F,0x0832,0x0C33
.hword 0x0C92,0x0CB2,0x08F2,0x1091,0x14B1,0x14D1,0x18D2,0x0C55
.hword 0x0C75,0x0C56,0x04F5,0x14B4,0x10B5,0x18D4,0x10B6,0x14B6
.hword 0x14D6,0x10F7,0x20D5,0x0932,0x1932,0x1552,0x0955,0x1536
.hword 0x09B6,0x11B4,0x2130,0x2550,0x2171,0x2D51,0x2172,0x21B2
.hword 0x31D0,0x3192,0x35D2,0x31F2,0x2574,0x25B5,0x29D4,0x35F4
.hword 0x0C58,0x1058,0x1459,0x105A,0x10B9,0x14B9,0x10F9,0x14DA
.hword 0x145D,0x145E,0x187F,0x08BC,0x093A,0x1139,0x1D19,0x09BA
.hword 0x0DBA,0x09FC,0x255E,0x3A10,0x3E10,0x3E31,0x2636,0x3214
.hword 0x3635,0x3E54,0x3216,0x3E57,0x0A3D,0x167D,0x0A9E,0x2A39
.hword 0x325A,0x2A9E,0x4252,0x4653,0x4A73,0x4E93,0x4275,0x4A74
.hword 0x4E94,0x4A96,0x52B5,0x52B5,0x52B6,0x56D6,0x5AF8,0x52FA
.hword 0x52FD,0x5F19,0x5F3B,0x6339,0x633A,0x675B,0x6B7B,0x6B9C
.hword 0x6FBD,0x4CD9,0x64D9,0x7CD9,0x0199,0x1999,0x3199,0x4D99
.hword 0x6599,0x7D99,0x0279,0x1A79,0x3279,0x4E79,0x6679,0x7E79
.hword 0x0339,0x1B39,0x3339,0x4F39,0x6739,0x7F39,0x03F9,0x1BF9
.hword 0x33F9,0x4FF9,0x67F9,0x7FF9,0x001F,0x181F,0x301F,0x4C1F
.hword 0x641F,0x7C1F,0x00DF,0x18DF,0x30DF,0x4CDF,0x64DF,0x7CDF
.hword 0x019F,0x199F,0x319F,0x4D9F,0x659F,0x7D9F,0x027F,0x1A7F
.hword 0x327F,0x4E7F,0x667F,0x7E7F,0x033F,0x1B3F,0x333F,0x4F3F
.hword 0x673F,0x7F3F,0x03FF,0x1BFF,0x33FF,0x4FFF,0x67FF,0x7FFF
.section .rodata
.align 2
.global MultilayerTiles @ 20032 bytes
MultilayerTiles:
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x201A1A1B,0x1D4B1A1B,0x4A52514F,0x1F4F0C19,0x5752524B,0x1B201919,0x21514C20,0x0B0D1D0B
.word 0x204B4B4C,0x190D0D0B,0x0A0B191B,0x0D1B4C0B,0x1B200C0A,0x0B192121,0x4C51221D,0x0D0C224B
.word 0x204F4B19,0x210B1A1F,0x0A0B1A1B,0x220C0D1A,0x1B22200D,0x1B0B1920,0x4C4B1B1A,0x0B054B58
.word 0x201F1F1F,0x4A525D52,0x1B1F2222,0x5A4B2120,0x1F201F1B,0x22202020,0x4C1B0D22,0x221F2020
.word 0x1D504F4C,0x0D1A574F,0x0D4A4C4C,0x1B1B1F1D,0x20191A1A,0x190B1B21,0x22201A0C,0x1B0B191F
.word 0x0D0D050C,0x1A0B0D19,0x1B0C4F5D,0x200C1D0B,0x1B21524C,0x0D1D1D0B,0x1D4F4F4B,0x1B1D0B0C
.word 0x221A1B0B,0x51210C1A,0x2222220D,0x511B191F,0x1B514F4C,0x191A0C0D,0x0C4C4F1F,0x4A0C191D
.word 0x0D51210C,0x201A4B1B,0x1D0B1B0C,0x19524C4C,0x4F0C0D1A,0x1D4F4F5C,0x4C190C0D,0x4B515252
.word 0x4C1B1B4C,0x0B0C1D4B,0x221B1A4C,0x1C210C0D,0x20190B20,0x514C190A,0x211B0C0D,0x0B0B1B0B
.word 0x0C0D4B57,0x1B22211D,0x1D1B5A5D,0x4C5C5D4C,0x0C0D1D4C,0x515C5121,0x0B01505A,0x5122201B
.word 0x211F4B4B,0x1F1F2121,0x201F1B0C,0x2122201B,0x210C0B19,0x22212120,0x0B0D1D0B,0x2120201A
.word 0x0A1A2120,0x2021201A,0x0C1B514C,0x4F221F1F,0x0C1B0D21,0x4C212021,0x0C1B0B1C,0x221B201F
.word 0x1A1B4C22,0x0B1A4C21,0x4C222221,0x225D5251,0x1F212122,0x0B1F211F,0x1B1B1F21,0x0D0C4C1B
.word 0x0B19201F,0x0D0A0D19,0x19222121,0x21221A0C,0x1A212122,0x5A52200C,0x1A1B1F4E,0x521B0B0B
.word 0x1B0B1A4B,0x20514C4C,0x1B0C0B22,0x201F2220,0x4C220D0A,0x0A0D211F,0x204C4C1A,0x1F0A0B0B
.word 0x1D222022,0x1F0A1D20,0x0D19204B,0x210B1D21,0x0C1A2158,0x4C191A4A,0x221A1A51,0x20201920
.word 0x0B1B5C4F,0x201A190C,0x0B525121,0x0C4F511B,0x0D521B05,0x4F4F4B0B,0x1D0D0C1D,0x4B1F1B0B
.word 0x520B1D1D,0x0D0B191A,0x1B0B1A4C,0x190C0B0C,0x1A0B4C5C,0x1B1B0D19,0x0C1D4C22,0x5C512121
.word 0x0B194C5C,0x0C0C1A19,0x191D5222,0x1D51200B,0x210B1D0D,0x5C521951,0x210C0B4C,0x4A0B50AC
.word 0x0B0B0B0C,0x515C5D20,0x0B0D0D0A,0x21190B05,0x1B514C0C,0x1A190B0C,0x5C5A4C4E,0x1D0A0C4F
.word 0x20192020,0x190A0D4B,0x0C0C190B,0x0A0B0A0D,0x1B0C051B,0x4C222119,0x190C1B20,0x0D190C0B
.word 0x4C4C524F,0x5A4C4B4F,0x20204C4C,0x514B4C22,0x0B0A0B0C,0x0D190C0B,0x1D214C4E,0x0B0C0B0D
.word 0x580C5051,0x1A192051,0x0C0B4C0B,0x51200B1B,0x0B201D20,0x5D4C200C,0x191D1A0D,0x4B0D0B0B
.word 0x52524B4C,0x0B0B0C4B,0x4F4F4F52,0x0B051A4F,0x0D1A4C1B,0x0B21201A,0x4B0B1B0C,0x4C5D5252
.word 0x0D1D1B21,0x4C202219,0x4B1D220D,0x221F204C,0x191D4F4F,0x201F4B5A,0x200C224C,0x2119194F
.word 0x200C204B,0x0B0C0C0C,0x1B191B22,0x0D0C4F22,0x5222190D,0x0B1F4C51,0x514F1A0D,0x19214C4B
.word 0x4B1F204C,0x0B215A5A,0x1F20224F,0x585C5121,0x224F5152,0x21191B21,0x4C4F4F51,0x190B4A5A
.word 0x214C2222,0x0D205D22,0x2122211F,0x191A4B20,0x1B1B4C21,0x4C0D0D0B,0x2121210C,0x5D1D0D19
.word 0x5C4F0C0A,0x21201D4C,0x4C1D214B,0x1B515D5C,0x214F1B21,0x0C224F4C,0x21210A19,0x0B0D4C22
.word 0x21200D1F,0x0C0A0C20,0x0B0B0C1B,0x0B1A2120,0x511D0C4C,0x0D194F52,0x52AD4F51,0x4A0B0C4C
.word 0x0C0A0C0C,0x51212121,0x010C0C19,0x4B0D201A,0x0B191B1A,0x4C1B1B0B,0x1A0B0C1B,0x1B0B0A1B
.word 0x22201B1B,0x1A1A0D21,0x4C4C4F4C,0x1F21224C,0x4C4C1F19,0x21222122,0x4B524F1F,0x4F4F1F1F
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x07000000,0x09030300,0x07030700
.word 0x00000000,0x10070000,0x00000000,0x14100000,0x00000000,0x14140700,0x07000000,0x070E0707
.word 0x10070700,0x07070709,0x2B141403,0x07071014,0x382B1407,0x07071014,0x2A2A0707,0x07070E14
.word 0x070F0F0F,0x03030007,0x1328130F,0x0000070F,0x28282813,0x00070713,0x130F1313,0x0707070F
.word 0x07070707,0x0709090E,0x07070707,0x09090907,0x07070707,0x140E1410,0x07070707,0x14141414
.word 0x00000300,0x07070303,0x07000000,0x07070707,0x070A0000,0x07070909,0x07070700,0x07070E13
.word 0x07070607,0x0F14352A,0x0707070E,0x0F0F130F,0x070F1314,0x07070707,0x0E352B14,0x09070707
.word 0x00030307,0x00000000,0x09070707,0x00000000,0x09070707,0x07030707,0x070F0707,0x07070707
.word 0x070F0707,0x07070707,0x09090707,0x07090909,0x2A2A0E07,0x090E1010,0x2B38140E,0x0E141414
.word 0x00000000,0x10100700,0x07070703,0x14140707,0x10141407,0x140E0709,0x2B2B1407,0x07070714
.word 0x382A0707,0x07071014,0x2A280707,0x07071014,0x280E0707,0x07070E14,0x14070707,0x07090E2A
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000007,0x070F0000,0x0007070F
.word 0x09070707,0x07070707,0x07070707,0x07070707,0x070F0707,0x09090907,0x090F0707,0x0E0E1009
.word 0x2A090707,0x14141410,0x2B2A0E07,0x2A2A1414,0x2A381407,0x132A2A14,0x3838380E,0x070E0F2B
.word 0x28280707,0x07090E14,0x140E0707,0x07070E2A,0x0F070707,0x0A07142A,0x07070707,0x0A070728
.word 0x06070707,0x28090711,0x07070A0E,0x352A3513,0x0F07070E,0x35353B3B,0x11070707,0x3A351324
.word 0x14070707,0x2B2A1414,0x14090707,0x142B382A,0x2B130707,0x070F3835,0x2A070712,0x07070F28
.word 0x07070F13,0x3A320707,0x07071213,0x79751407,0x78090F12,0x98653B76,0x76977833,0x63373737
.word 0x0E282A2B,0x140E0707,0x0707070F,0x0E090707,0x07070707,0x07070907,0x0F070907,0x07111113
.word 0x2828280F,0x35132828,0x29282975,0x35282828,0xA7736579,0x6A7E383B,0x98A9A598,0xA5A7A5A5
.word 0x2A383814,0x142A1414,0x383B3B28,0x2A2A2A2B,0x14281417,0x130E0F0F,0x09070709,0x07070707
.word 0x1214070F,0x07070713,0x282A7345,0x2A291228,0x352A2A97,0x28293737,0x35281214,0x37283535
.word 0x0F070707,0x07070E2A,0x0707070E,0x07071428,0x06070A0E,0x0A070711,0x07070707,0x0A090713
.word 0x0F070707,0x282A353B,0x1115753D,0x35353B24,0x3C9E8562,0x35351309,0x74794135,0x3A281026
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x01000000
.word 0x00000000,0x04030300,0x01000000,0x07070704,0x04030000,0x07070704,0x07070100,0x0F0F0707
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x07070704,0x09070707
.word 0x07070707,0x07070707,0x09090707,0x06070909,0x100E0907,0x0E141414,0x14100E09,0x0F242A14
.word 0x13280000,0x07070713,0x2828130F,0x0709070F,0x130F280F,0x0909090E,0x07071313,0x140E0907
.word 0x07070713,0x14141410,0x07070707,0x2B2A1414,0x07070707,0x142B1414,0x14070707,0x070F382A
.word 0x143B3B14,0x0707070F,0x09281428,0x2A070707,0x12070717,0x28291213,0x28140709,0x37293728
.word 0x352A730F,0x37283537,0x352A2A45,0x37373735,0x37281297,0x675E5E37,0x37373714,0x68698837
.word 0x3C157507,0xA5281009,0x749E853D,0x98A59826,0x28794162,0x07987C41,0x13283735,0x240A112B
.word 0x0E123737,0x37242909,0x24123B37,0x3737370A,0x12123B5E,0x37373729,0x130F3860,0x5E373729
.word 0x97A59898,0x370F0F23,0x072E7898,0x37373707,0x07102B2B,0x675E370F,0x383B0707,0x8A695F5E
.word 0x69130712,0x8A8C8E89,0x12092A38,0x8C8C9799,0x0E293660,0x7694992D,0x14366060,0xA5763924
.word 0x37373737,0x2A073A24,0x37375E5E,0x23071237,0x605E5F89,0x37290F13,0x6060678A,0x685E1212
.word 0x3B6B8C8C,0x62291224,0x416E8F6E,0x14072631,0x3B6D9895,0x0E071031,0x98989797,0x09070F0E
.word 0x37373723,0x37373737,0x37373737,0x375E5E37,0x5F373737,0x67698888,0x695F6737,0x686E8C88
.word 0x69698894,0x6A718969,0x97959799,0x98959595,0xA4981410,0xA4A498A4,0x98090907,0x2938A5A4
.word 0x28283737,0xA5A59841,0x13123737,0x98987C2B,0x0E123B5E,0x070A1109,0x24123B60,0x2424290A
.word 0x120F3873,0x37373729,0x130F24A4,0x37373729,0x240E1229,0x37373737,0x290E3724,0x5E5E3737
.word 0xA5989896,0x0F0F2397,0x2E789874,0x37370004,0x102B2B09,0x5E370F03,0x3B000024,0x695F5E38
.word 0x13081229,0x8C8E8969,0x092A3837,0x8C979912,0x29366037,0x94992D0E,0x36606060,0x76392414
.word 0x37373737,0x083A2437,0x375E5E37,0x07123737,0x5E5F8967,0x290F1360,0x60678A8A,0x5E121260
.word 0x6B8C8C8A,0x2912243B,0x6E8F6E8C,0x00263141,0x6D989576,0x0510313B,0x989797A5,0x0F0F0E98
.word 0x3737232A,0x37373737,0x37373723,0x5E5E3737,0x37373737,0x6988885F,0x5F673768,0x6E8C8869
.word 0x69889462,0x71896969,0x95979914,0x95959597,0x9814100E,0xA498A4A4,0x09090907,0x38A5A498
.word 0x28373737,0xA5984128,0x12373737,0x987C2B13,0x123B5E67,0x0300090E,0x123B6068,0x24290724
.word 0x0F38736A,0x37372912,0x0F24A498,0x37372913,0x0E1229A4,0x37373724,0x0E372429,0x5E373729
.word 0x07070400,0x07070707,0x07070401,0x07070707,0x09090704,0x07070F0F,0x13090704,0x07071213
.word 0x130F0803,0x07070F13,0x07070703,0x0607070F,0x07070503,0x07070707,0x00070704,0x07090000
.word 0x1425250E,0x090E2414,0x2A2B2A10,0x0707122A,0x3838260E,0x0F070E2A,0x2B38150E,0x13120F13
.word 0x142A140E,0x28130E09,0x090E0E0E,0x232A1507,0x12070707,0x283A3A13,0x23100907,0x12626235
.word 0x14090707,0x07073835,0x2B130707,0x3A320F28,0x2A070707,0x79750707,0x07070707,0x98651407
.word 0x07070F12,0x63373B76,0x78091213,0x370F3737,0x76970F13,0x37370F23,0x97A57812,0x675E3707
.word 0x5F373723,0x6A6E8C88,0x69373737,0x98718988,0x695F6737,0xA4959569,0x97698837,0x29A49895
.word 0xA4959794,0x0938A5A4,0x98981499,0x090732A4,0x3A090910,0x07071445,0x360E2907,0x0713292B
.word 0x240F2473,0x885E3737,0x290E12A4,0x88886737,0x160E3729,0x8C888937,0x67262524,0x8E8C8C88
.word 0x94736207,0x998E958E,0x99A47325,0x78999799,0x45941409,0x2E782E73,0x102E0909,0x142E1415
.word 0x63606C68,0x1E0E263B,0x6B6E8C88,0x07143B3B,0x94958A88,0x11109899,0x9794948C,0x072995A4
.word 0x98979794,0x140F3B98,0x2E3962A4,0x3B38102D,0x1414372A,0x37120E10,0x28282A25,0x37373737
.word 0x14A5A579,0x3738370F,0x1307090B,0x5E375E37,0x13090709,0x676B6C37,0xA72A0909,0x6969676C
.word 0x782A1010,0x8C696EA5,0x2B251438,0x98A4A498,0x0E10262B,0x989E3909,0x10382626,0x14090707
.word 0x3A0E2929,0x09073245,0x365F8969,0x0907142B,0x376E6767,0x07132929,0x77696969,0x07121212
.word 0x98A49895,0x07623737,0x4573A498,0x10397862,0x10142679,0x37240E10,0x10100E16,0x5E5E2913
.word 0x16262507,0x88886737,0x67736225,0x88888988,0x94A47309,0x8C8C8C8E,0x99941409,0x8E8E9599
.word 0x452E0909,0x99999773,0x100E0E14,0x78782E15,0x0E09375E,0x2E2E1409,0x09675F5E,0x14140909
.word 0x606C6868,0x0E263B63,0x6E8C8888,0x143B3B6B,0x958A888C,0x10989994,0x94948C8C,0x2995A497
.word 0x97979494,0x0F3B9898,0x3962A4A4,0x38102D2E,0x14372A2D,0x120E1014,0x282A2514,0x37373728
.word 0xA5A57908,0x38370F14,0x0905000F,0x375E3713,0x05080808,0x6B6C3713,0x2A090908,0x69676CA7
.word 0x2A101014,0x696EA578,0x2514383B,0xA4A4982B,0x10262B37,0x9E39090E,0x38262637,0x09050810
.word 0x0E292937,0x0632453A,0x5F89695E,0x03142B36,0x6E676767,0x13292937,0x69696969,0x12121277
.word 0xA498958C,0x62373798,0x73A49898,0x39786245,0x14267998,0x240E1010,0x100E1614,0x5E291310
.word 0x26250309,0x88673716,0x73622509,0x88898867,0xA4730908,0x8C8C8E94,0x94140908,0x8E959999
.word 0x2E090905,0x99977345,0x0E0E1410,0x782E1510,0x09375E37,0x2E14090E,0x675F5E5E,0x14090909
.word 0x07141410,0x07070707,0x070E1410,0x09070707,0x07070707,0x0E0E1010,0x14090700,0x2A141414
.word 0x2B100700,0x14282A38,0x2B140700,0x070E282A,0x14140700,0x07070707,0x07070300,0x07070707
.word 0x0A0A0707,0x3A353528,0x09070707,0x2835352A,0x0707140E,0x10133B35,0x1311282A,0x2609243B
.word 0x0706070F,0x743C110F,0x07070707,0x799E1507,0x070A0707,0x41857507,0x070E0E07,0x35623D07
.word 0x072E9833,0x8A69370F,0x07107898,0x8A8C5F5E,0x383B2B98,0x8C8C8E89,0x6913072B,0x76949799
.word 0x12090707,0xA576992D,0x0E292A12,0x1E0E3924,0x14363638,0x0714263B,0x63606060,0x11103B3B
.word 0x375F8929,0x07121229,0x776E6769,0x10623712,0x98696967,0x37397837,0x45A49869,0x5E240E62
.word 0x1073A495,0x3B5E2910,0x10142698,0x38622D13,0x25100E79,0x102E2A24,0x450E0E16,0x0E113862
.word 0x0E0E0E09,0x14140909,0x09093714,0x14140909,0x5E675F5E,0x2A140709,0x60675E5E,0x372A0960
.word 0x955F5E5E,0x5E370E07,0x07616060,0x3B5E0F09,0x09989860,0x3F3B2B0F,0x0798A598,0x3B3F3B0F
.word 0x28282537,0x38373737,0x5E37282A,0x6E605E5E,0x69675E37,0x95716867,0x89898988,0x988E6E8C
.word 0x8C8C8C8C,0x99958E8E,0x94959594,0x73779894,0x9798A473,0x14A4A5A4,0xA4A52E45,0x073BA499
.word 0x13613B38,0x16100707,0x29956A71,0x0E141007,0x1362A5A5,0x10090907,0x0F0707A5,0x252A130F
.word 0x29230710,0x60603735,0x5E60370F,0x6E6C605E,0x5F983B14,0x958E6E68,0xA5602509,0xA4A49898
.word 0x250E0E09,0x3B622D24,0x45301410,0x382E2A62,0x6C302638,0x1011386C,0x8C6E4038,0x0E25608D
.word 0x8C6E6E6E,0x09257698,0x9895958E,0x240725A5,0x79989595,0x29370938,0x9EA499A4,0x3737370F
.word 0x5E675E5E,0x14140909,0x605F5E60,0x14140760,0x95616060,0x2A2A0907,0x07989898,0x37370E09
.word 0x0998A53B,0x5E5E0F0F,0x0707072A,0x3B3B2B0F,0x0909382A,0x3F3F3B09,0x0E2A383B,0x3B3B2B09
.word 0x2825372A,0x37373728,0x37282A26,0x605E5E5E,0x675E372B,0x71686769,0x89898860,0x8E6E8C89
.word 0x8C8C8C6C,0x958E8E8C,0x95959471,0x77989494,0x98A47362,0xA4A5A497,0xA52E4545,0x3BA499A4
.word 0x613B3838,0x10080513,0x956A716E,0x14100529,0x62A5A595,0x09090613,0x0800A598,0x2A130F0F
.word 0x23001099,0x60373529,0x60370F73,0x6C605E5E,0x983B1414,0x8E6E685F,0x60250906,0xA49898A5
.word 0x0E0E0916,0x622D2425,0x3014100E,0x2E2A6245,0x30263810,0x05386C6C,0x6E403825,0x25608D8C
.word 0x6E6E6E60,0x2576988C,0x95958E6E,0x0325A598,0x98959595,0x37073879,0xA499A4A4,0x3737139E
.word 0x675E5E3B,0x1409095E,0x5F5E6038,0x14066060,0x61606010,0x2A090595,0x9898980E,0x370E0908
.word 0x98A53B09,0x5E0F0F09,0x05052A24,0x3B2B0F06,0x09382A29,0x3F3B0909,0x2A383B37,0x3B2B090E
.word 0x07070000,0x0E090707,0x07030000,0x140E0907,0x07070000,0x14100907,0x07070000,0x14100907
.word 0x07090900,0x2B2A0907,0x0F070703,0x382A090F,0x07070703,0x140E0707,0x07070707,0x0E070707
.word 0x07132A14,0x37282A07,0x070E2A2A,0x28292907,0x070F2A14,0x35371207,0x070F2B14,0x35372813
.word 0x0914382A,0x35352812,0x07283B38,0x282A2A14,0x07143B38,0x122A7307,0x09172814,0x1497450F
.word 0x6B6E6C60,0x07299899,0x94958C68,0x140F95A4,0x97948A88,0x3B383B98,0x98979488,0x3712102D
.word 0x2E39978C,0x37370E10,0x14146294,0x38373737,0x282837A4,0x6E603737,0x28282A2A,0x95715E5E
.word 0x6C301409,0x0925606C,0x8C302610,0x2425768D,0x8C6E4038,0x29072598,0x986E6E38,0x373709A5
.word 0x7995956E,0x5E373738,0x9E98958E,0x685E370F,0x09A49995,0x71686712,0x379898A4,0x76716B37
.word 0x0907073B,0x0E3B2B09,0x0E09382A,0x0E0E0909,0x092A382A,0x380E0711,0x1438613B,0x37380E07
.word 0x62736B60,0x26371207,0x0778986E,0x2B263707,0x07759994,0x602B370F,0x0F339997,0x6B605E23
.word 0x0F0E0F14,0x07131213,0x2B3B3B3B,0x11072938,0x16263030,0x0F123726,0x36363636,0x07123737
.word 0x5E5F6060,0x07115F5E,0x67696971,0x07115E60,0x69696969,0x1207606C,0x6C686C6E,0x290F0F76
.word 0x63301707,0xA5A4A498,0x24290F07,0x12291224,0x5E673707,0x3537375E,0x6C713711,0x355E6767
.word 0x71A5600A,0x375F696E,0x967E140F,0x69676768,0xA2142C24,0x6A6E6B98,0x24292929,0x6A7376A7
.word 0x09989898,0x5E5E3712,0x37373712,0x68686737,0x370F0F0F,0x71716B6B,0x0F0F0F23,0x76717878
.word 0x1212375E,0x99997138,0x0F136E67,0x0F2B120F,0x0F3B3B78,0x0F0F0707,0x0F0E2962,0x29290F0F
.word 0x09386160,0x0E0E0911,0x14736B6E,0x0E0E0707,0x62789894,0x38380E07,0x07759997,0x37371207
.word 0x073399A5,0x2626370F,0x0F090F13,0x2B2B3723,0x230F0F37,0x60605E37,0x230F2929,0x6B6B643B
.word 0x0E0F1415,0x1312130F,0x3B3B3B2B,0x0029382B,0x26303026,0x37372616,0x2C2C362C,0x3737372C
.word 0x60603B36,0x075E5E5E,0x67676C37,0x005E5E67,0x6767675E,0x055E6167,0x60616060,0x0F297661
.word 0x30050907,0xA4A49863,0x29290700,0x29122424,0x67371223,0x37375E5E,0x7137040F,0x5E69696E
.word 0xA53B0004,0x698A8C8E,0x7E140F0F,0x89898C9A,0x252C2429,0x6C6EA4A8,0x37373729,0x9798A92A
.word 0x989898A6,0x5E371203,0x37371212,0x68693737,0x0F780F35,0x76976037,0x730F2335,0x76979978
.word 0x4578A637,0x98A4A478,0xA4737397,0xA4A4A445,0xA4997673,0xA6A64573,0xA4A6A678,0xA67845A6
.word 0x3861605E,0x0E090808,0x736C8C97,0x10000514,0xA4979978,0x380EA462,0x78979978,0x73457345
.word 0x9899A4A4,0x98A43A2D,0xA6A6A6A6,0xA4A445A4,0xA6A6A6A6,0xA6A632A6,0x97A6A6A6,0xA6A61697
.word 0x0E0F1415,0x1312130F,0x3B3B3B2B,0x0129382B,0x78767373,0x37972678,0x99737345,0x9745A473
.word 0x99787399,0xA4A44573,0xA6A4A4A6,0xA4A44573,0xA6A6A6A6,0xA6A49773,0xA6A4A6A6,0xA6A6A438
.word 0x30050907,0xA4A49863,0x29290700,0x29122424,0x69371223,0x37375E5E,0x95374597,0x5E69696E
.word 0x9878A497,0x698A8C8E,0x453AA4A4,0x89898C45,0x733A97A4,0x8F6E7878,0xA4A632A6,0x78787873
.word 0x989898A5,0x5E371203,0x37371212,0x5F5F3737,0x0F0F0F35,0x71606437,0x0F0F2335,0x7178730F
.word 0x12375F37,0x9861380F,0x138F898A,0x2B120F0F,0x3B629794,0x0F00010F,0x09376A94,0x290F0F0F
.word 0x3860605E,0x0E090808,0x45606E5F,0x0E000514,0x73786A71,0x380E003B,0x7598976A,0x37120504
.word 0x00989898,0x26370F07,0x070F120F,0x38372324,0x0F0F290F,0x5E5E3712,0x0F292929,0x6B403812
.word 0x07070707,0x09070F0F,0x07070707,0x07070F14,0x0E090703,0x07071335,0x13090703,0x07070F2A
.word 0x07070700,0x0E070707,0x070A0000,0x350F0707,0x07000003,0x2B130706,0x00000000,0x14140E07
.word 0x07070E14,0xA56A3535,0x1107090E,0xA77E2813,0x11090707,0xA5382828,0x13070707,0xA53B2828
.word 0x0F07070E,0x98A72928,0x07070728,0xA9732828,0x0907072A,0xA5652928,0x07070F2B,0x9879750F
.word 0x5E372525,0x988E6867,0x69672837,0x99956E8C,0x89895E2A,0x73778E8E,0x8C8C8937,0x14A49894
.word 0x94958C88,0x073BA5A4,0x9798958C,0x0713A499,0xA4A5A494,0x11071213,0x0F0E2E73,0x0F122938
.word 0x37373798,0x9971786B,0x0F0F0F12,0x0F997178,0x120F0F0F,0x0F2B1238,0x0F123723,0x290F070F
.word 0x0F136E5E,0x29290F07,0x0F3B3B67,0x2929290F,0x290E2978,0x5E373729,0x29292962,0x5E5E5E29
.word 0x23090FA5,0x986B6437,0x230F0F13,0x7698763B,0x230F2937,0x0776473C,0x12232929,0x12070726
.word 0x090F2929,0x29122411,0x120F3829,0x37292917,0x0F0F3037,0x37373724,0x120F2638,0x37373713
.word 0x76987676,0x290F0F12,0x072D7376,0x29292907,0x070E2626,0x5E37290F,0x26300707,0x5F5E3737
.word 0x5E12070F,0x675F605F,0x0F071526,0x5F5F7378,0x10132738,0x45627814,0x10273B3B,0x98452612
.word 0x29292929,0x24072E13,0x29293737,0x12070F29,0x3637375E,0x29240F12,0x38385E5F,0x5E370F0F
.word 0x303F5F5F,0x38240F12,0x2F606C60,0x0E071616,0x2B40736C,0x07070916,0x73737373,0x070F0F09
.word 0x29292912,0x29292929,0x29292929,0x29373729,0x37292929,0x5E5E5E5E,0x5E375E29,0x5E605F5F
.word 0x5E5E5F62,0x62605F5E,0x736C7378,0x736C6C6C,0x78731409,0x78787378,0x73070707,0x13269878
.word 0x23232929,0x9898763C,0x120F2929,0x76764726,0x090F3837,0x07070711,0x120F3038,0x12122417
.word 0x0F0F263A,0x29292924,0x120F1278,0x37373713,0x12070F13,0x37373737,0x13093707,0x37373737
.word 0x79737364,0x0F0F1273,0x143A733D,0x29290003,0x09141406,0x29240701,0x15000012,0x37292916
.word 0x0F050F13,0x363B3737,0x06101424,0x3645620F,0x0F162624,0x3B620E05,0x16262626,0x38160F08
.word 0x37373729,0xA4977878,0x37373729,0x78A4A437,0x5E375E37,0x734578A6,0x60375E5E,0x45A4A497
.word 0x9760635E,0x78A49797,0x646C3B3B,0xA4A4A478,0x63453B32,0x05102773,0x78734573,0x97454578
.word 0xA6A6A698,0x3A7397A4,0xA6A6A697,0x0097A6A6,0xA6A6A4A4,0x0097A6A6,0xA6A6A639,0x000097A4
.word 0xA4733978,0x00000073,0x0E45A497,0x00000001,0x0000100E,0x00000000,0x00737878,0x00000000
.word 0x73737878,0x9797413A,0x00453A00,0x73000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x739797A4,0xA6A6783A,0x39267373,0xA6A44500,0x00000000,0x73450000,0x00000000,0x3A000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0xA6A67845,0x789798A6,0xA6A6A43A,0x3A39A4A6,0xA6A6A678,0x737839A6,0xA673A476,0x97A44539
.word 0x30784539,0xA4A6A497,0xA4000000,0xA6A6A6A6,0x78730000,0xA6A6A6A6,0x97000000,0x76A4A697
.word 0x2937232A,0x24242429,0x29373723,0x29292429,0x29373778,0x37373729,0x37673778,0x3B3B3737
.word 0x378897A4,0x3B373737,0x609778A4,0x60606045,0x73A473A6,0x73627676,0x09789797,0x26767673
.word 0x12242424,0x98762F12,0x0F242424,0x7846160F,0x0F262929,0x03000608,0x0F262C29,0x1213070F
.word 0x0F162D38,0x3729120F,0x0F0F4545,0x3713120F,0x080F1273,0x37131312,0x08241213,0x37242413
.word 0x07000003,0x14140907,0x07070003,0x140E0909,0x07070700,0x14140909,0x0F130F07,0x1410070E
.word 0x13281307,0x07070707,0x0F28280F,0x07070707,0x1328130F,0x07070707,0x13130F0F,0x07070707
.word 0x0707142B,0x6398793A,0x070F2B2A,0x37657532,0x0F383814,0x373B1407,0x28352A14,0x37760707
.word 0x2A2B1414,0x76780707,0x07130907,0x97090707,0x07070707,0x780F120F,0x12070707,0x33121313
.word 0x2B3B0F45,0x07123726,0x16263B14,0x07113737,0x3636303B,0x07115F5E,0x5E5F3630,0x12075E60
.word 0x67696036,0x290F606C,0x69696960,0x290F0F76,0x6C686971,0x29290F12,0x76986C69,0x5E372907
.word 0x37292912,0x62605F5E,0x5E292929,0x73605F5F,0x5E375E29,0x786C6C5E,0x735E5F29,0x1378736C
.word 0x786C7362,0x07269878,0x73731478,0x07072D78,0x26070709,0x07071030,0x2C092407,0x070F2416
.word 0x120F123A,0x5E373737,0x13070F78,0x375E3737,0x16093713,0x63373729,0x37161407,0x37636337
.word 0x62453B0A,0x73636063,0x73763207,0x3A737373,0x30621017,0x103A142E,0x09140909,0x07140910
.word 0x3C3B3B37,0x0709162B,0x63636337,0x0F102626,0x62615E37,0x07097373,0x73626260,0x07136076
.word 0x7373733B,0x100F2673,0x14162B73,0x26160910,0x09091312,0x130F0707,0x0F0F120E,0x13131313
.word 0x10989847,0x2926290F,0x0F070707,0x37293729,0x0F070707,0x37363629,0x7C240707,0x37373736
.word 0x32140909,0x37373B73,0x16100916,0x45737345,0x07071616,0x45471607,0x07161616,0x09101107
.word 0x26092424,0x07072D30,0x2C373737,0x07071016,0x29363737,0x070F2424,0x48373737,0x070F0F0F
.word 0x73737360,0x112B2929,0x302E7345,0x09163A2B,0x07091646,0x130F0707,0x07070716,0x3737120F
.word 0x1616140A,0x5E5E3729,0x37453B07,0x37373737,0x62763217,0x63636363,0x73621009,0x37636073
.word 0x30140909,0x7373732E,0x09070909,0x3A3A1410,0x07071337,0x10140907,0x07373737,0x07090707
.word 0x262C3737,0x060E1426,0x36363737,0x0E161626,0x36372936,0x0845623B,0x38382937,0x123B6245
.word 0x3A3A383B,0x0F263B3B,0x14264545,0x26061414,0x0E24120E,0x0F08080E,0x0F0E0E0E,0x2424240F
.word 0xA5454605,0xA4787878,0xA6A6000F,0xA6A6A6A6,0xA6A60505,0xA6A6A6A6,0xA62A0805,0xA6A6A4A4
.word 0x990E0909,0xA6A497A4,0x14142626,0x45453A3A,0x73732637,0x733A4545,0x73162637,0x14266239
.word 0x14979797,0x00000000,0x0097A4A4,0x00000000,0x00A4A6A6,0x00000000,0x00A4A6A6,0x00000000
.word 0x00737378,0x00000000,0x00004545,0x00000000,0x00007876,0x00000000,0x0000733B,0x00000000
.word 0x78000000,0x45453A45,0x00000000,0x45784500,0x00000000,0xA4A49778,0x00000000,0xA6A6A645
.word 0x00000000,0xA6A6A497,0x00000000,0x97A43A00,0x00000000,0x73780000,0x00000000,0x73787800
.word 0x45783939,0x05152D26,0x73737873,0x000E1616,0x3AA6A697,0x0F121237,0x39A4A6A6,0x0F0F0F46
.word 0x7878A6A6,0x30242473,0x3945A497,0x163B3830,0x143A453A,0x0F060808,0x73784545,0x24120F08
.word 0x10100006,0x5E37240E,0x2D260E05,0x37373729,0x732D0505,0x3B3B3B3B,0x620E0605,0x60606262
.word 0x15060605,0x73732E15,0x08080E08,0x45140E08,0x05242424,0x140E0506,0x37372424,0x14050505
.word 0x072D766E,0x5F5E290F,0x070E7376,0x675F3737,0x26302676,0x5F5F605F,0x5E120726,0x45627378
.word 0x0F070707,0x98457814,0x1E13150F,0x07092612,0x10272726,0x0F10162B,0x3C3B3B38,0x07092626
.word 0x29373724,0x110F0F24,0x48363737,0x092B290F,0x73373737,0x13163A29,0x30737337,0x370F072B
.word 0x072E7360,0x26371207,0x07091645,0x2630140F,0x0E070746,0x09141212,0x14070716,0x0717262B
.word 0x07070909,0x07090707,0x07071309,0x070E0707,0x24373737,0x0F0E0707,0x26372437,0x13120726
.word 0x62292924,0x24130707,0x07303026,0x26240F07,0x07626230,0x1626160F,0x07457362,0x1616260F
.word 0x12120E13,0x26131313,0x29241212,0x30262929,0x37372924,0x62303737,0x37373737,0x62602C37
.word 0x37373737,0x73603B3B,0x3B3B3B3B,0x3246453B,0x45457330,0x09737673,0x73731026,0x07167373
.word 0x0F302626,0x16070A07,0x12623030,0x0A0E0707,0x0F307373,0x09090707,0x0F070773,0x0E070F0F
.word 0x120F0707,0x2B2B2413,0x242B240F,0x3B382B24,0x29452609,0x3B3B3629,0x732B1007,0x73734545
.word 0x0E070707,0x26301412,0x14160E09,0x2614122B,0x36161626,0x09172636,0x372C2726,0x07073060
.word 0x373F3F3F,0x070E3A45,0x453B3B3B,0x0F070E73,0x3D453B3B,0x12290716,0x42737373,0x2929290F
.word 0x24372424,0x070E0707,0x26292926,0x070E0726,0x62303030,0x0F120707,0x07626262,0x13130707
.word 0x07457326,0x24240F0F,0x07070710,0x2626160F,0x07071614,0x16162607,0x07141616,0x16161607
.word 0x0F092410,0x2424240F,0x120F0F0E,0x2B242424,0x24241314,0x38372437,0x37373726,0x38363637
.word 0x3636362C,0x3B3B3B36,0x3B363838,0x3D453B3B,0x3B452D26,0x7373733B,0x45141515,0x26733B45
.word 0x392B2616,0x7899A6A4,0x78303B3B,0xA6A6A6A6,0x98453660,0xA4A6A4A4,0x78363645,0xA6A6A6A4
.word 0x45003673,0x453A7373,0x73370F32,0x97789773,0x78381410,0xA4A47873,0x97150906,0xA6A6A678
.word 0x00789998,0x00000000,0x0097A6A6,0x00000000,0x009797A4,0x00000000,0x000076A4,0x00000000
.word 0x0000733A,0x00000000,0x00979773,0x00000000,0x00A4A4A4,0x00000000,0x00A4A6A6,0x00000000
.word 0x08000000,0x62737673,0x15000000,0x989898A4,0x32000000,0xA6A6A697,0x00000000,0xA4A6A6A4
.word 0x00000000,0x73984500,0x00000000,0x98789700,0x05000000,0xA6A699A4,0x08000000,0xA6A6A698
.word 0xA4A67673,0x2B141214,0xA6A6A6A4,0x15133845,0x45A6A6A6,0x05163838,0x3B99A4A6,0x0E2B3B3B
.word 0x60737373,0x0E3A453B,0x6095A478,0x000E7645,0x76A4A6A4,0x24072646,0x78A6A6A6,0x24240F7A
.word 0x29292926,0x14060629,0x29292C26,0x1405382C,0x2C2C2C08,0x1406053B,0x45454506,0x37060505
.word 0x45451605,0x370F0F05,0x0303120F,0x26160F05,0x06261313,0x27260606,0x13162624,0x26160608
.word 0x63633B3B,0x07137373,0x62616337,0x100F6076,0x73625E37,0x26162673,0x73736237,0x130F0910
.word 0x14167360,0x13130707,0x09092B3B,0x26131313,0x0F0F1373,0x30261313,0x12121212,0x62302929
.word 0x36160E07,0x07073036,0x37161609,0x0F0E3A60,0x372C2726,0x12070E45,0x453F3F26,0x29290773
.word 0x3D3B3B3F,0x29292916,0x42453B3B,0x2929290F,0x0773733B,0x2629290F,0x29323273,0x2B263029
.word 0x07070726,0x07161607,0x07071610,0x09090707,0x07141614,0x16090707,0x0E163616,0x29160707
.word 0x30262736,0x27290F07,0x07154536,0x0F161207,0x07272B2D,0x0F160F0F,0x0F07262B,0x160F0F0F
.word 0x0F090F10,0x070F0F0F,0x16161616,0x07071316,0x16161616,0x12292916,0x16161616,0x0F292929
.word 0x12262616,0x07071212,0x37373716,0x0F070F16,0x37373737,0x0F070F16,0x160F1616,0x0F0F0F16
.word 0x27160707,0x98737332,0x12131307,0x0F130F12,0x2929290F,0x23292929,0x2B362907,0x0F292929
.word 0x16261607,0x12123737,0x1616070F,0x37373716,0x1607160F,0x16161614,0x0F0F0F0F,0x16091616
.word 0x07323232,0x2929290F,0x2929290F,0x29292929,0x290F0F0F,0x26263030,0x0F0F0F0F,0x2B362B14
.word 0x0F0F1212,0x26261616,0x0F0F1637,0x0F160F0F,0x0F161610,0x0F0F0707,0x0F070F16,0x0F0F0F0F
.word 0x07163636,0x07090707,0x0E262736,0x09090707,0x3015452D,0x16160707,0x07272B2B,0x29290F07
.word 0x07072626,0x2716120F,0x0F070F0F,0x0F160F0F,0x0F0F0F0F,0x0F0F0F0F,0x0F0F0F0F,0x16161616
.word 0x080F0E0E,0x0F0F0F0F,0x1414140E,0x0012140E,0x0E161610,0x3724160E,0x16161616,0x13131316
.word 0x372C2626,0x07372424,0x5E5E3829,0x00373737,0x37373737,0x05373B37,0x3B3B3B37,0x0F24623B
.word 0x73050907,0xA4A4A678,0x29290700,0xA4A49797,0x78371212,0x45457339,0x8E37040F,0x78784578
.word 0xA5600004,0x9797A499,0x8514120F,0xA4A4A497,0x25362437,0xA6A6A698,0x78373737,0x99999997
.word 0x0097A6A6,0x00000000,0x00789797,0x00000000,0x00007373,0x00000000,0x0000A678,0x00000000
.word 0x00A49797,0x00000000,0x00A4A6A6,0x00000000,0x0097A6A6,0x00000000,0x000099A4,0x00000000
.word 0x10000000,0xA6A6A6A6,0x00000000,0xA4A4A408,0x00000000,0x45457300,0x00000000,0x7873A6A4
.word 0x09000000,0xA6A6A4A4,0x3A000000,0xA6A6A697,0x45000000,0xA6A6A6A4,0x00000000,0xA6A6A4A4
.word 0x7399A6A6,0x24240F03,0x37999797,0x2C371337,0x3945393A,0x38363637,0x39979778,0x38624526
.word 0x9797A4A6,0x733B3B60,0xA6A6A6A6,0x160F0F39,0x14A4A6A6,0x0F000326,0x4599A4A6,0x130F0F0F
.word 0x162C2624,0x06050505,0x2D2C372C,0x08000509,0x39626238,0x2608002B,0x45736262,0x370F0504
.word 0x00737373,0x16240F07,0x07070F0F,0x16240F12,0x0F07130F,0x3837130F,0x0F131313,0x403C3012
.word 0x29240E0E,0x62603737,0x37371213,0x73602C37,0x37372912,0x32463B3B,0x37373724,0x0973453B
.word 0x3B3B3737,0x07167673,0x45453B37,0x070F7373,0x7373733B,0x07070F0F,0x0F091030,0x12291316
.word 0x29292932,0x26362B30,0x0F0F0F0F,0x0F261614,0x0F0F0F0F,0x0F160F16,0x0F0F120F,0x0F0F070F
.word 0x0F0F1612,0x000F0F07,0x0F161637,0x0000000F,0x00070F10,0x00000000,0x00000016,0x00000000
.word 0x271D210D,0x1B5A5D42,0x191A4A2F,0x0D654C4C,0x20191F6B,0x2A505C20,0x1C207979,0x3E5C4F1C
.word 0x3E3C7894,0x7B512150,0x4E713C11,0x5240165D,0x79971719,0x17633E4D,0x973F4D52,0x63656578
.word 0x5C5D5371,0x7579534C,0x5C51212C,0x65342151,0x22202F0B,0x470B3451,0x1A19170B,0x194C8120
.word 0x4F50340B,0x1D56660C,0x4F4B0C3C,0x2C6F6B4F,0x1F1B0B3E,0x3F63534B,0x161C1A7A,0x36170C27
.word 0x5121420C,0x4C224F52,0x22789978,0x4C4F4C51,0x1B6C650C,0x4F7B5C56,0x6C6C6B0B,0x6B747A6C
.word 0x6D6C6C19,0x656C6C6C,0x7B636621,0x3C6C6B7D,0x2C547743,0x6B6D4242,0x5C5D6D63,0x8D584F51
.word 0x1A6B0C19,0x6C6C4D47,0x4C3E0C1B,0x6C6B5253,0x3E2C0C4F,0x6C405257,0x0A6B6D6D,0x8C7B5119
.word 0x160A6340,0x6C4D0B11,0x4A6D346B,0x431D204E,0x19779471,0x1D1A0D0D,0x4C4D728F,0x524B4C5A
.word 0x0F161600,0x260F070F,0x16000000,0x0F0F0F0F,0x00000000,0x0F0F0F00,0x00000000,0x0F000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x16160F26,0x0F292916,0x16161610,0x07072929,0x16161616,0x0F071212,0x12261616,0x0F070F16
.word 0x37372616,0x0F0F0F16,0x37373716,0x00000F16,0x160F3716,0x00000000,0x00001637,0x00000000
.word 0x16161607,0x16091614,0x1607070F,0x00001616,0x0F0F160F,0x00000000,0x00000F0F,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x2C1E4F4F,0x6B34996B,0x43201A0D,0x63665C45,0x5D52514B,0x1D4C4B4C,0x2121210C,0x1D1B2151
.word 0x0D201A3B,0x1D22194B,0x33342B73,0x6C4F224B,0x3C273E1A,0x6B6C211B,0x40403E20,0x666C6C3E
.word 0x6E633F70,0x63170A6E,0x656C9571,0x544E0C40,0x51448E6C,0x834C4F5B,0x2022406C,0x994A224C
.word 0x1F206C6C,0x98794B21,0x1F656C6C,0x507F2220,0x6C6C6C6C,0x7A49654A,0x71636574,0x4C786C62
.word 0x192C760B,0x334C4C21,0x19117947,0x17191B1A,0x0A0C55A5,0x271C1B1B,0x4A5A5A98,0x3C1E1711
.word 0x817D2143,0x4064667D,0x1C332122,0x6B6B6643,0x0B4A5A4C,0x6C634019,0x205D2221,0x656B420D
.word 0x4B4C2220,0x4F4F5251,0x191D201A,0x1A4C1B0D,0x27343434,0x111D163C,0x6B3F3F3E,0x2B276C6C
.word 0x6D666365,0x796A406C,0x6B716D65,0x7977656C,0x6371656B,0x0B647938,0x6C636542,0x20409598
.word 0x07070E14,0x006A3535,0x1107090E,0x007E2813,0x11090707,0xA5382828,0x13070707,0xA53B2828
.word 0x0F07070E,0x00A72928,0x07070728,0x00732828,0x0907072A,0x00652928,0x07070F2B,0x0000750F
.word 0x00000016,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x653E4B22,0x53666C6C,0x3320214C,0x4B786465,0x421E2021,0x53986465,0x6B2F1E1F,0x95946C6C
.word 0x6B6C1D20,0x6C6C667B,0x3D640D1B,0x52514B19,0x2F631E17,0x744C2042,0x1C6B1E3C,0x49444642
.word 0x644E5355,0x6B946576,0x1F4C514F,0x6C6B9597,0x214C224E,0x6C949998,0x7F406565,0x6C6C9498
.word 0x7999A494,0x666C6CA4,0x946C9474,0x4C416C94,0x95946B6B,0x4F4D4095,0x793F956D,0x224C4299
.word 0x1C4B2021,0x95A49964,0x6C2F166C,0x330D7B77,0x6D3C1A42,0x5C4F529E,0x611E1F65,0x5A4F4C4D
.word 0x363F3440,0x504C4C22,0x7334434D,0x1C1C1A33,0x3B4B584F,0x6D654126,0x575C4C21,0x6B6E3F4D
.word 0x77426560,0x4C545338,0x344F5251,0x4C1F1917,0x19204E52,0x514C204A,0x1A514F4C,0x4B4C0B0D
.word 0x3E1F1D1D,0x21221A1B,0x2C3E3E3E,0x514C4B19,0x63406565,0x4C4F1F34,0x6C3C3C6B,0x50212F6E
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x0B0C0C00,0x00000000,0x1B0B0D4B
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x57651900
.word 0x51000000,0x193F0D1D,0x51514F1D,0x40400D1B,0x204B4C1B,0x400D1D1B,0x1C1D1A20,0x4B1B4C21
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x004C4A00,0x00000000,0x21214C51,0x21214F4B
.word 0x214F5A4C,0x21214C20,0x5A511B0B,0x201F4C4F,0x210D3F6E,0x1F220D4B,0x646C6E65,0x214C0B0C
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x1A1F2020,0x4B21201B,0x21202121,0x41190D1A,0x19202220,0x3F191921,0x201F1F20,0x3F1B1A22
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x1F4F0000
.word 0x0C22654B,0x1B1B1F19,0x0B1B1940,0x0C21200D,0x0C1A190D,0x40224C21,0x1B190D0B,0x21515A51
.word 0x0707142B,0x0000793A,0x070F2B2A,0x00007532,0x73383814,0x00000E07,0x28352A14,0x00009898
.word 0x2A2B1414,0x00737807,0x07130907,0x00459807,0x07070707,0x0078990F,0x12070707,0x00781313
.word 0x7A949833,0x94416566,0x6D6D9895,0x6D6E6C65,0x6D6B6C6B,0x7B4A3D6B,0x514E476B,0x1B3E4920
.word 0x1D4B4442,0x1B634933,0x3F431F49,0x3C2C3E36,0x6E36273E,0x1B0C1966,0x60334333,0x0D4B5765
.word 0x3E4B636A,0x22526B95,0x1C21431E,0x4F516594,0x0C22224C,0x524E4995,0x171D4B4C,0x4C4F4C6B
.word 0x66361922,0x21202065,0x536C3B20,0x0C0B1A7A,0x2C6BA444,0x0D1D0B2C,0x224A7776,0x1A21201B
.word 0x4B1F1B1D,0x406D825A,0x201D1B1B,0x66844E22,0x4A4B221F,0x7E554333,0x21214B21,0x444D204B
.word 0x4C4C2222,0x4D20214E,0x204C4C21,0x4D331D1B,0x214F1B0B,0x1F333320,0x4C4C1A0A,0x19431D21
.word 0x401D0B65,0x2C343F66,0x3E1D0B64,0x6C6B6463,0x1D0B0D6C,0x6D636B1E,0x1A4C216D,0x75464D11
.word 0x5D525695,0x73985522,0x1F43799E,0x6B769817,0x1970854D,0x6B7A9873,0x0B773C0B,0x6C657473
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x1B000000,0x00000000,0x21000000,0x00000000,0x0B000000
.word 0x5C000000,0x1B194F51,0x204F4F00,0x214C210D,0x191B1F19,0x584B1B0D,0x2121200D,0x274B1A0D
.word 0x4B224C21,0x6C331D1B,0x21515A51,0x6C272220,0x51522221,0x71420B1B,0x1D190C0C,0x8E604D22
.word 0x1919191A,0x60224F4B,0x20191A4C,0x6E6E0922,0x4319334E,0x8E8E6C2A,0x60386C6C,0x958E8E6E
.word 0x6E6C6E6E,0x8E8E6E6E,0x6E6E8E8E,0x95716E6E,0x6E8E8E95,0x9898716B,0x6B6E8E8E,0x7171646B
.word 0x6E6E6E6E,0x4F501B6C,0x8E6E6E6E,0x6E6E6E8E,0x958E8E8E,0x6E8E8E8E,0x95959595,0x8E8E8E8E
.word 0x95959595,0x6B716D6D,0x97989898,0x646B7198,0x71717195,0x646B6B71,0x6B6E6E6E,0x6B6B6B64
.word 0x211F214C,0x7421204F,0x246B6C6E,0x6E7A5A53,0x6E6E6E6E,0x6C24636E,0x6E6E6E6E,0x958E6E6E
.word 0x6E6E6E6E,0x958E716E,0x6E6E6E6B,0x8E8E6E6E,0x6E6E6B6B,0x716E6E6E,0x6E6B646B,0x6B6B6B6E
.word 0x211B0D40,0x74203422,0x36633419,0x63366E36,0x8E8E8E61,0x8E8E6E6E,0x95959595,0x8E8E8E8E
.word 0x8E959595,0x718E8E8E,0x8E8E8E8E,0x6E6E7171,0x71717171,0x6E6B6B6B,0x6464646B,0x6B646464
.word 0x0A0A0707,0x00983528,0x09070707,0x0000992A,0x0707140E,0x00077635,0x7311282A,0x00011079
.word 0x0706070F,0x00060E73,0x07070707,0x00487307,0x070A0707,0x00A77507,0x070E0E07,0x00983D07
.word 0x00000000,0x1B000000,0x00000000,0x52000000,0x00000000,0x4B200000,0x00000000,0x211B0000
.word 0x00000000,0x3F192100,0x00000000,0x0D4F4B00,0x00000000,0x0C1A1B00,0x00000000,0x1C1B1919
.word 0x0D0D191A,0x8E8E3C19,0x214B4C4B,0x8E8E744C,0x20201D20,0x8E8E6C4D,0x40191A20,0x8E8E6E36
.word 0x6E6E0C0D,0x718E8E6E,0x6C6B6E6C,0x718E8E6E,0x6C534B19,0x718E8E6E,0x6C531F19,0x6E6E6E6E
.word 0x646B6E8E,0x6B64646B,0x6B6B6E71,0x8E716B64,0x6B6B6B71,0x958E8E6B,0x6E6B6471,0x8E8E6E6E
.word 0x6E6E6B64,0x6E6E6E6E,0x6E6E6B64,0x6E6E6E6E,0x6E6E6B6B,0x8E6E6E6E,0x6E6E6E6B,0x958E6E6E
.word 0x6E6E6E8E,0x6B6C6B6B,0x6E6E8E8E,0x71717171,0x6E6E6E8E,0x95978E71,0x6E6E6E6E,0x8E8E8E6E
.word 0x6E6E6E6E,0x6E6E6E6E,0x8E8E8E8E,0x8E6B6E6E,0x8E957195,0x24013671,0x6E6C718E,0x1A212036
.word 0x6B646B6B,0x64646B6B,0x716D6D71,0x6B6B6B6E,0x97979595,0x6E6E6E8E,0x8E959595,0x6E6E6E6E
.word 0x7195958E,0x6E6C6E6B,0x8E979797,0x6E6E6E6E,0x6E8E6239,0x6E6E6E6E,0x6E361D1D,0x8E8E6E6E
.word 0x6464716B,0x6B646464,0x7195978E,0x71717171,0x95958E71,0x95979795,0x718E716E,0x95957171
.word 0x6B6E6E6C,0x71716C6C,0x6C6C6C6E,0x71716C6B,0x6E6E6E6E,0x95958E71,0x8E716E8E,0x99949595
.word 0x07132A14,0x00739807,0x070E2A2A,0x00007307,0x070F2A14,0x00000007,0x070F2B14,0x00000013
.word 0x0914382A,0x00002812,0x07283B38,0x00002A14,0x07143B38,0x002A7307,0x09172814,0x0097450F
.word 0x00000000,0x190D1B0D,0x4C000000,0x190C1A1B,0x4F000000,0x1B0C1922,0x4B220000,0x1F1B1B1B
.word 0x404B1F00,0x4F1D193F,0x584F4B1A,0x1A1B2066,0x1B1B2220,0x0D1A6B99,0x0D201D1B,0x171D970C
.word 0x6C3E1919,0x6E6E6E6E,0x6E271D1B,0x6E6E6E6E,0x6E2A1B21,0x6E6E6E6E,0x6E60331B,0x6E6E6E6E
.word 0x6C664D21,0x6E6E6E6E,0x6E70744B,0x6E6E6E6E,0x6E706D3E,0x6E6E6E6E,0x6E706D65,0x8E6E6E6E
.word 0x6E6E6E6E,0x8E8E8E6E,0x6E6E6E6E,0x6E8E716E,0x6E71956E,0x636E8E6C,0x6E8E9795,0x246E6E6C
.word 0x71959995,0x246E6E6E,0x71959995,0x536E6E6E,0x71949995,0x3E6E6E6E,0x71949994,0x656E6E6E
.word 0x1D1B196C,0x4B4F0C6B,0x1B211B24,0x19216E1A,0x1D1B1F1B,0x211B6522,0x4B214F1D,0x201A664F
.word 0x224C210C,0x0C1D1B4B,0x515A511B,0x0D222021,0x52222121,0x0C0B1B51,0x190C0C0B,0x194B221D
.word 0x36204F52,0x95958E6E,0x1A1A1B1B,0x958E6E6C,0x1B190D1D,0x8E6E6E2F,0x1F1B0C20,0x8E36241A
.word 0x204B2019,0x24014B1B,0x4F4B2219,0x0D0C1B22,0x1B1B211B,0x19190B19,0x190C1B1B,0x1B4B201B
.word 0x958E8E95,0x94999794,0x94949595,0x6E959499,0x97979495,0x636E8E97,0x61959797,0x226E6061
.word 0x01243939,0x4F6B6E00,0x211A191D,0x4C193F1B,0x1D191B1D,0x0C193F1A,0x0B1B210D,0x0B1B0C6B
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x0000004B,0x00000000,0x00202019,0x00000000
.word 0x1D4B4B1A,0x6B6B980C,0x1B51200D,0x6D779965,0x1B211A19,0x70959971,0x771D191B,0x708E9499
.word 0x942C1B21,0x6E719497,0xA4944F4B,0x6C6E9597,0x9999771A,0x6E6E9597,0x97998E3E,0x6E6E7195
.word 0x6E706D6D,0x8E6E6E6E,0x6B6B6D6D,0x95716E6E,0x6E6B6B6B,0x958E6E6E,0x6E6E6B6B,0x958E6E6E
.word 0x6E6E6E6B,0x958E7171,0x716E6E6E,0x94948E71,0x6E6E6E6E,0x94979795,0x958E716E,0x95979797
.word 0x71949997,0x366E6E6E,0x71959794,0x636E8E71,0x718E9595,0x6E95978E,0x71718E95,0x8E99948E
.word 0x71718E95,0x6E99958E,0x71718E95,0x8E979595,0x8E6E8E8E,0x8E97958E,0x958E6E71,0x8E978E8E
.word 0x3F191A1B,0x0000190D,0x654C4B52,0x00000021,0x586E3634,0x00000020,0x4F206B6E,0x00000033
.word 0x5B4E3C6E,0x00001B0D,0x4A1B246E,0x0000190C,0x1B0C246E,0x00000D0B,0x221A366E,0x0000210C
.word 0x4B1A1900,0x4B4F4B4C,0x51000000,0x191B2251,0x00000000,0x21204F51,0x00000000,0x5C4F0000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x41744B0D,0x1B1F1B1B,0x4F521A0C,0x524F1D19,0x514F1D4B,0x510D1B51,0x4B4C4F51,0x001D1B20
.word 0x1B51210D,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x584C201B,0x00000000,0x1B190D1A,0x00000000,0x0D0C0D1D,0x00000000,0x1D19191D,0x00000000
.word 0x4C4B1B0D,0x0000001B,0x1B4F4B0D,0x00000000,0x1D1B190C,0x00000000,0x4F4C584C,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x05010A0B,0x0C000000,0x43B4B4A1,0xAE000000,0xB6B5B1B5
.word 0x00000000,0x00000000,0x00000000,0x0A050000,0x00000000,0x9B440000,0x0B050100,0xA1A15756
.word 0x9C0D0A05,0xABAE9D9C,0xAA592019,0xABABAEAB,0xAB9B5850,0xACABAEAB,0xAB9DAA9D,0xAAABABAE
.word 0x00000000,0x00000000,0x00000A0A,0x00000000,0x5B5A4E59,0x0000000C,0xB9B0AAAF,0x000520B6
.word 0xAFACACAC,0x0821B5B0,0xAEAEAEAB,0x1EB5B0AE,0xAFAFAFAF,0xB4B5AAAE,0xB0B0AFAA,0xB5B2AAAB
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000005,0x00000000,0x0000001A,0x00000000,0x000000AC,0x00000000
.word 0x00000000,0x00000000,0xAA4D0200,0x00000002,0xB0AD4D00,0x000000AA,0xB0B04D00,0x000002AA
.word 0xB0AD5900,0x00004DAA,0x59590200,0x0000024D,0x00000000,0x02000000,0x00000000,0x4D000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x0002594D,0x00000000,0x0059AAAA,0x00000000
.word 0x94A4952F,0x6E6E6E8E,0x9599952F,0x6E6E6E71,0x95999534,0x6E6E6E71,0x8E97953E,0x6E6E6E6E
.word 0x6E949774,0x6E6E6E6E,0x8E959534,0x6C6E6E6E,0x8E8E8E2F,0x656C6E6E,0x8E958E3E,0x6C6C6E6E
.word 0x978E716E,0x71959797,0x71717171,0x6E717171,0x6D71716E,0x6E6C716E,0x6D6D6C6C,0x6E6E6C70
.word 0x716D6C6C,0x6E6E6E71,0x71716C6C,0x6E6E6E71,0x7171716D,0x6E6E6E8E,0x8E957171,0x6C6E6E6E
.word 0x956E6E71,0x8E97958E,0x97958E6E,0x36959797,0x9597978E,0x246E8E8E,0x29718E71,0x403E2436
.word 0x22386E6E,0x19190C4B,0x0B193B6C,0x191B191B,0x0C0D276E,0x0D22200C,0x1B1A4360,0x1A21201F
.word 0x4B1B2063,0x005A511B,0x1B224F01,0x00222121,0x0B191B1B,0x000C0C0B,0x1A5A193F,0x00211B0D
.word 0x19214B40,0x00001A19,0x20195120,0x0000004C,0x1D194F1D,0x00000050,0x191B1D1D,0x00000000
.word 0x4B0D1B19,0x00000000,0x0C0B0D0C,0x00000000,0x0B1B1D19,0x0000000D,0x191B4C4B,0x00000019
.word 0x4C211B4F,0x0000001A,0x4B581D1B,0x0000000D,0x514C1A1B,0x00004C5A,0x441B1D4B,0x004F0C44
.word 0x540B0000,0xB0B2AFAE,0x59800C00,0xB3AFAB9D,0x9CB05B00,0xB2AFAA9C,0x9DB59D00,0xB2B0AA9B
.word 0xACB5B000,0xAFB0AB9B,0xB4B5B000,0xACAFB2B0,0xB5B5AA00,0xACACB3B5,0xB6B05900,0xABABB2B4
.word 0xAEAB9BB0,0x9DABABAB,0xAEAB9CB0,0x9C9DACAF,0xAEAB9DAC,0x5B9BABAF,0xAEAE9DAB,0x5980ABAE
.word 0xAEAEAAAB,0x5B9BABAE,0xAEABABAB,0x569CABAC,0xABB5B4AC,0x56AAACAB,0xABB6B3AA,0x9BABAFAF
.word 0xB3B2ACAB,0xB5B3B1B3,0xB4B5B5B0,0xB5B4B4B4,0xB4B6B5B0,0xB5B4B4B4,0xB4B6B5AF,0xB5B4B4B4
.word 0xB5B6B4AA,0xB4B4B3B5,0xB6B6AB9C,0xB4B2B4B5,0xB9B6AA9D,0xB4B3B6B9,0xB9B9AC5B,0xB4B4B9B6
.word 0x000000B4,0x00000000,0x0000AAB5,0x00000000,0x0005B5B4,0x00000000,0x0019ABB5,0x00000000
.word 0x0019B0B4,0x00000000,0x004BB2B1,0x00000000,0x009DB0B1,0x00000000,0x4EAFACB1,0x00000000
.word 0x00000000,0x02000000,0x00000000,0x024D0200,0x00000000,0x4D595902,0x00000000,0x59ACAC4D
.word 0x00000000,0x59ADAC59,0x00000000,0x4D4D5902,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x0002594D,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x02000002,0x0002594D
.word 0x4D00004D,0x0059AAAC,0x4D000002,0x0002AA59,0x02000000,0x0000024D,0x00000000,0x00000200
.word 0x00000000,0x501D5751,0x00000000,0x1B19194C,0x00000000,0x19201B00,0x00000000,0x1B200000
.word 0x00000000,0x1A000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x4C1B1A22,0x6D11504F,0x524F2120,0x71981A4A,0x20222241,0x6E6B993F,0x6E6E6E1A,0x6E6B6B6E
.word 0x1B1D224B,0x6E7B206B,0x19211F19,0x6E65203F,0x3F1A2019,0x6E3E211A,0x1B4B4B00,0x6E3E2120
.word 0x6E6E6E8E,0x8E8E716E,0x6E6E8E8E,0x8E8E6E6E,0x6E6E958E,0x716E6E6E,0x6E6E958E,0x6B6E6E6E
.word 0x6E8E958E,0x956E6E6E,0x6E8E958E,0x978E6E6E,0x6E8E958E,0x978E6E6E,0x6E8E958E,0x9995716E
.word 0x6E6E6E8E,0x988E8E8E,0x6E6E6E71,0x95958E6E,0x6E6E6C6C,0x95958E6E,0x6E6E6D71,0x8E8E8E6E
.word 0x6C6B7071,0x6E8E6E6E,0x6B6B7077,0x6E6E6E6C,0x6B6C7095,0x6E8E6E6C,0x6B6C7195,0x8E8E6E6C
.word 0x474F514F,0x00510B32,0x95758599,0x0B0D1B18,0x1E999995,0x1A0B5220,0x6B6E6E65,0x584B5120
.word 0x22501D6C,0x4C4F406E,0x211B1A6E,0x1B1A6B4C,0x581D1B6E,0x1A0C0D4B,0x4F4C586D,0x0B1B515A
.word 0xB54E0B00,0xACAAAFB4,0x5A0D0300,0xACAAAB5B,0x500C0500,0xAB9D9D58,0x4E0B0600,0xAA5B5850
.word 0x4A0A0300,0xAA585057,0x0A000100,0xAA585857,0x0A010100,0x9C575021,0x06080100,0x584E4E20
.word 0xB6B2AFAA,0x9CACB0B9,0xB4AB9DAB,0xAAACAFB6,0xACAA9DAC,0xACAFAFB0,0xAFAFAFAC,0xAFAFAFAF
.word 0xB0B0B0AF,0xB0ACACAF,0xB0B0B0AF,0xB0ABABAF,0xB0B0B0AB,0xB2AFABAA,0xB0AFAB9D,0xB0AAAAAF
.word 0xB9B6AB5B,0xB4B5B6B9,0xB2AA8059,0xB5B5B5B6,0xAA9B809D,0xB5B5B3B4,0x9D809CAB,0xB5B5ACAF
.word 0xB0AFABB0,0xB4B3B3AF,0xB2B0B2B2,0xB3B0B0B0,0xB0B0B2B2,0xB2B0AFB0,0xACACB0B0,0xB0B0AFAF
.word 0xA1AEAFB4,0x00000000,0xA1AEB0B4,0x00000000,0x9DAEB0B4,0x00000A03,0xA1ABB0B4,0x00000B1E
.word 0xB4AFB0B4,0x00001A5B,0xB6B0B0B4,0x0000009C,0xB6AFAFB4,0x0000009D,0xB5B0AFB2,0x0000005B
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x02000000,0x00000000,0x4D000000,0x00000000,0x59020000,0x00000000,0x59590200
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x024D4D4D,0x00000000,0x4DAAACAA,0x00000000,0x4DAAB0AC,0x00000000,0x02ACB0B0,0x00000000
.word 0x776C2F16,0x51330D7B,0x9E6D3C1A,0x525C4F52,0x4D611E1F,0x4C5A4F4C,0x22363F34,0x1D504C4C
.word 0x33733443,0x3E1C1C1A,0x263B4B58,0x656D6541,0x4D575C4C,0x27646E3F,0x5A4B1F1B,0x1B2F6D82
.word 0x17344F52,0x4C4C1F19,0x4A19204E,0x4B514C20,0x0D1A514F,0x224B4C0B,0x1B3E1F1D,0x2221221A
.word 0x192C3E3E,0x1B514C4B,0x3463343E,0x174C4F1F,0x6E6B0D19,0x3C50212F,0x662F1D0B,0x332C343F
.word 0x1F201F21,0x524A4734,0x214B1F20,0x514E7534,0x2243271A,0x224C441B,0x513E3C1D,0x4A4E4E4F
.word 0x191E3F0D,0x5752514B,0x4A2F1C1E,0x4A514C20,0x431C4B1E,0x6D4D4B4C,0x64544C4C,0x6A947165
.word 0x361F4C51,0x1B1B4C42,0x19214C22,0x2121210B,0x1D4B343E,0x204F4B1C,0x1D4E6171,0x36363C41
.word 0x1B3E403F,0x444C4327,0x273F6636,0x4F511D3C,0x34172763,0x21224C20,0x633E4B2C,0x1D225221
.word 0x01030101,0x574E1E0A,0x050A3305,0x504D0A01,0x019DAB11,0x4D0D0B01,0x59B9B64A,0x0A080A01
.word 0xB2B9B605,0x03010800,0x59B55900,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0xABAA9C58,0xAAACAFAC,0x9B585757,0x9DAAAA9D,0x504E4E4E,0x58575757,0x4E4E4E1E,0x504E4E4E
.word 0x4E4A0D0A,0x20214E4E,0x1B0B0501,0x05111A58,0xB6010300,0x0157B0B2,0xB2580000,0x000000B2
.word 0xAF9D9D9D,0xB4B3B2B0,0xACAA9C9C,0xB3B5B0AF,0xAB5B5858,0xB2ADAFAF,0xA19B5857,0x575A9DA1
.word 0x5656504E,0x1E1D4E56,0x0A0C0B0A,0x0001050A,0x00000000,0x00000000,0x00000000,0x00000000
.word 0xB4B4B2AF,0x00000001,0x00B55BAF,0x00000000,0x03055758,0x00000000,0x0A0D031A,0x0000580A
.word 0xAB9C0B00,0x000000AF,0xB6AB1101,0x000000B3,0xAF504A03,0x00000059,0x00010500,0x00000000
.word 0x00000000,0xB0594D00,0x00000000,0xAAB0AC02,0x02000000,0xADB0B0AD,0xAA020000,0xAAB0B0AC
.word 0xAA4D0000,0xAAB0B0B0,0xAC4D0000,0xAAAAB0AC,0x4D020000,0x4D594DAA,0x00000000,0x00024D02
.word 0x59ACB0B0,0x00000002,0x59AAADB0,0x0000004D,0xAA59AA59,0x0000004D,0xAA59AAAA,0x0000004D
.word 0x59595959,0x0000004D,0x5959AAAA,0x00000002,0x024D4D4D,0x00000000,0x00000000,0x00000000
.word 0x22201D1B,0x1E66844E,0x334A4B22,0x657E5543,0x4B21214B,0x75444D20,0x4E4C4C22,0x984D2021
.word 0x1B204C4C,0x9E4D331D,0x20214F1B,0x4D1F3333,0x214C4C1A,0x0B19431D,0x52512133,0x194C224F
.word 0x171D1D0B,0x4F646340,0x1E1D0B0D,0x75751164,0x111A4C21,0x7575464D,0x225D5256,0x33739855
.word 0x171F4379,0x4C227898,0x73197085,0x3E4E4E98,0x730B773C,0x334B2053,0x471A6B0C,0x0D19204D
.word 0x334F4F5C,0x1E668F8C,0x4B515250,0x4C514A1E,0x20514E47,0x4C1B1B4C,0x331D4B44,0x221B1A4D
.word 0x363F431F,0x20190B3E,0x666E3627,0x441B0C19,0x65603343,0x780D4B57,0x42271D21,0x771B5A5D
.word 0x601C2143,0x1B4F511B,0x3C0C2222,0x1F524E4D,0x36171D4B,0x214C4F4C,0x3E663619,0x22212020
.word 0x54536C3B,0x210C0B1A,0x0B0B6DA4,0x0B0D1D0B,0x1B224A77,0x0A1A2120,0x4C5C5D53,0x0C347B53
.word 0x51222042,0x1B4C4F4C,0x561B2020,0x4F4F525C,0x3F0D1A19,0x4C51524E,0x3350430B,0x0C214B34
.word 0x5C583C50,0x1B0D0A1E,0x4A0B5487,0x713F6643,0x515C5D6D,0x8F8D584F,0x21192C76,0x20334C4C
.word 0x534C3E0C,0x0C1A2152,0x57200B0C,0x22404052,0x190A0D4C,0x568C7B51,0x11160A0D,0x6B6C4D0B
.word 0x4E4A6D34,0x11431D20,0x0D197794,0x191D1A0D,0x5A4C4D72,0x52524B4C,0x514B4C22,0x4F4F4F52
.word 0x4C191A4A,0x110D1D4C,0x2020191F,0x0B01505C,0x1C1C2051,0x0B1B5C4F,0x503E1734,0x0B525121
.word 0x5D4E773C,0x0D523416,0x4D1E7617,0x1D17363E,0x2C2C3F4D,0x54363E42,0x632C1E4F,0x706B3453
.word 0x515C5121,0x27653421,0x5122202F,0x0C1B0B34,0x201A1917,0x0B194C81,0x0C4F5034,0x191D5666
.word 0x4F4F4B0C,0x212C6F6B,0x4B1F1B0B,0x433F6353,0x27161C1A,0x6336170C,0x6E6E633F,0x0B63170A
.word 0x1A191179,0x0B0A0B0C,0x1D0A0C55,0x1D3E7A4E,0x114A5A5A,0x5C666416,0x7D817D21,0x4C346D66
.word 0x431C3321,0x214F3E66,0x190B4A5A,0x21211640,0x0D205D22,0x21200D33,0x641C4B20,0x32A4A499
.word 0x0D190C0B,0x0D1A4C1B,0x3C270B0C,0x4B111D16,0x3E201D4C,0x0C2B2763,0x1B519C5C,0x3B797634
.word 0x0C22984C,0x73797744,0x180D774B,0x1A0B6479,0x98611120,0x22204095,0x38772120,0x4C4C5453
.word 0x1143201A,0x772C4E5C,0x4C5D5251,0x6B1D4C4B,0x51212121,0x2F1D1B21,0x4B0D201A,0x4B1D2219
.word 0x4B33342B,0x191D4F22,0x1B3C271B,0x430C2121,0x1B341921,0x44172020,0x1B201F4C,0x1B3C1B20
.word 0x40656C95,0x47544E0C,0x5B51448E,0xA5834C4F,0x4C202234,0x98994A22,0x211F204C,0x4398794B
.word 0x201F4B5A,0x22507F22,0x4A753453,0x4C4F4D22,0x45793C27,0x214C2122,0x78314E22,0x21222133
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x1B000000,0x4C4C4C1A,0x191D504C
.word 0x2222200C,0x19204C21,0x1F22210C,0x2119191A,0x21221919,0x5A1A0D1B,0x0B0C2121,0x20211A0B
.word 0x0D191B51,0x1A1B0B0B,0x191A0C21,0x01190D0D,0x191B0B0D,0x6401201B,0x36363624,0x71716C61
.word 0x8E71716E,0x948E8E8E,0x95958E71,0x958E718E,0x8E71716E,0x716E718E,0x6C6B6B6B,0x716C6E71
.word 0x6E6E6E6E,0x958E8E8E,0x958E716E,0x94949495,0x99949571,0x94999497,0x99979495,0x6B719494
.word 0x95989794,0x64646B6B,0x64656677,0x6B646464,0x64646466,0x6C6B6464,0x64646B64,0x6E6C6B6B
.word 0x6B64646C,0x8E6E6E6C,0x6C6B6B6C,0x8E6E6E6E,0x6C6C6C6E,0x6C6E6E6E,0x6E60606E,0x6E6C636E
.word 0x07070707,0x0F070707,0x07070700,0x07070707,0x03070000,0x0E090707,0x03000000,0x09070703
.word 0x00000000,0x07070003,0x00000000,0x00000000,0x00000000,0x03000000,0x00000000,0x03000000
.word 0x1409070F,0x6A35070E,0x07070F14,0x1311090E,0x0713350E,0x13070707,0x0F2A1313,0x070E0E07
.word 0x07070707,0x28350F07,0x06070A00,0x14130706,0x07000000,0x140E0707,0x00000000,0x09070707
.word 0x00000000,0x00000000,0x0000007E,0x00000000,0x00009873,0x00000000,0x0098730F,0x00000000
.word 0x00980907,0x00000000,0x7978072B,0x00000000,0x45782B14,0x00000000,0x4573140E,0x00739809
.word 0x63242F3E,0x6D662124,0x0C1D2158,0x4121201B,0x200C0C1B,0x3F1B204B,0x22200D0D,0x3F191B22
.word 0x20221D1B,0x3F201D1B,0x2050574C,0x191D1B19,0x1A4F511B,0x0000211D,0x21204C4B,0x00000000
.word 0x00000300,0x09090700,0x00030300,0x09070707,0x00030000,0x0F130707,0x00000000,0x28280F07
.word 0x00000000,0x28130707,0x00000000,0x280F0700,0x00000000,0x130F0000,0x00000000,0x0F000000
.word 0x2E141409,0x0098072B,0x24070707,0x98450709,0x07070707,0x98070707,0x07070713,0x07070707
.word 0x07071328,0x14070707,0x07132828,0x0E090707,0x07131313,0x2A0E0707,0x0E140F0F,0x14141007
.word 0x00000000,0x00000000,0x00000045,0x00000000,0x000000A4,0x00000000,0x00000845,0x00000000
.word 0x00060804,0x00000000,0x75987828,0x00000000,0x4545040F,0x00000099,0x0E070714,0x00000045
.word 0x0E141410,0x2A140707,0x07141010,0x382B1407,0x07071000,0x2B2B0907,0x00070000,0x2B140707
.word 0x00000000,0x14070700,0x00000000,0x07070000,0x00000000,0x07000000,0x00000000,0x00000000
.word 0x2A07070E,0x00000773,0x14070728,0x7312072A,0x45090707,0x4578413A,0x25070714,0x073B2B30
.word 0x15070707,0x3B383010,0x07070707,0x3838302B,0x07070703,0x0E2A0907,0x07030000,0x07090707
.word 0x00000000,0x00000000,0xA5A50000,0x00000000,0x3B387E6A,0x006573A7,0x28282835,0x75292829
.word 0x28281335,0x0F282828,0x13111107,0x0709070F,0x07090707,0x07070707,0x0707090E,0x0F070707
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x78784573,0x980E7579,0x13999878
.word 0x9807323A,0x130F0707,0x28730707,0x1207072A,0x35380F07,0x0707132B,0x2A382B14,0x07070914
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x01070098,0x98A74806,0x10769935,0x3D75730E
.word 0x79352A28,0x07070773,0x7307090A,0x07070707,0x1107070A,0x0E0A0706,0x28140707,0x0E070707
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000073,0x972A0000,0x00007398,0x45732A28
.word 0x13070707,0x0F071412,0x07070707,0x09070709,0x0F0F0E13,0x17142814,0x2B2A2A2A,0x283B3B38
.word 0x07000000,0x07070707,0x07000000,0x07070F09,0x00000000,0x07070709,0x00000000,0x07070709
.word 0x00000000,0x07070700,0x00000000,0x07070300,0x00000000,0x07030300,0x00000000,0x07030000
.word 0x07070E14,0x2B2A280E,0x07070709,0x142B350E,0x07070707,0x14130F07,0x0F130F0F,0x0E070707
.word 0x2A35140F,0x07060707,0x130E0707,0x00070707,0x09090707,0x00000A07,0x07070707,0x00000007
.word 0x14142A2B,0x07070714,0x14141414,0x07070707,0x10140E14,0x07070707,0x07090909,0x07070707
.word 0x0E090907,0x07070707,0x0F070707,0x13130F13,0x13070700,0x13282828,0x0F070000,0x0F132813
.word 0x2A0E0707,0x0707070F,0x2A0E0907,0x07070714,0x140E0707,0x07070E28,0x14100707,0x0707282A
.word 0x14100707,0x07072A38,0x14070707,0x07142B2B,0x09070E14,0x07141410,0x07071414,0x03070707
.word 0x14142A14,0x1438382A,0x1414140E,0x0E14382B,0x10100E09,0x070E2A2A,0x09090907,0x07070909
.word 0x07070707,0x07070F07,0x07070707,0x07070F07,0x07070307,0x07070709,0x00000000,0x07070709
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x9B000000,0x000000B5,0xBDB45B00,0x00000000,0x00BBB357,0x00000000,0x00B5BF5B,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0xB5000000,0x0000009B,0x00000000,0x005B9CBD,0x00000000,0x57B3BB00,0x00000000,0x5BBFB500
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x86000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0xAA000000,0x00000000,0xAF000000
.word 0x00BB0000,0x00000000,0xAFAF0000,0x00000000,0xAFBBA09E,0x00000000,0xBB9E9F9E,0x000000AF
.word 0xBB9E9EBB,0x0000AF00,0x004700BB,0x000000AF,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x009DAF00
.word 0x00000000,0x00AFAF00,0xAF000000,0x9FA000BB,0xBE000000,0x9F9F4700,0xAF000000,0xBB9E9E00
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x0000009E,0x00000000,0x00000047,0x00000000,0x00000000,0x00000000,0x000000AF,0x00000000
.word 0x00BBBF5B,0x00000000,0x00BBBD9C,0x00000000,0x00BDBF5A,0x00000000,0x59B5C05B,0x00000000
.word 0xB5BBBD5B,0x001E4343,0x4A4AB25B,0x1E595D5A,0x9D574A00,0x9B5DB9B5,0xB5B35000,0x9BB6BBBD
.word 0x00000000,0x5BBFBB00,0x00000000,0x9CBDBB00,0x00000000,0x50BFBD00,0x00000000,0x5BC0B559
.word 0x4E1A1E1A,0x5BB0BBBF,0x4AAA9B33,0x5BB2B59D,0xB5B5AC5D,0x004A9D4E,0xB9BDBD5D,0x004E50B5
.word 0x00000000,0x00AF0000,0x00000000,0x00BBAF00,0x00000000,0x0000B000,0x00000000,0x0000AFB0
.word 0x58000000,0x000000BF,0xBB000000,0x000000BE,0x00000000,0x0000BEBC,0x00000000,0x00AFAF00
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x9D9D0000,0x00000000,0xB9AB9B00,0x00000000,0xBDB8AE00,0x00000000,0xBE9BBD00
.word 0x00000000,0xAF008686,0x00000000,0x00000047,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x000000AB,0x00000000,0x0000ACBD,0x00000000,0x0000BDBE,0x00000000,0x0000BD9C,0x00000000
.word 0x000000AF,0x00000000,0x000000AF,0x00000000,0x0000AF00,0x00000000,0x00AFAF00,0x00000000
.word 0x00AFAF00,0x00000000,0xAABB0000,0x00000000,0xAFAF0000,0x00000000,0x00AFAF00,0x00000000
.word 0x59B05700,0xB5BB5857,0x58AA4E00,0xB958334A,0xB35A0000,0xAA331A59,0xAC4A0000,0xAC59ACAC
.word 0xAA500000,0xB4B4B4B4,0x58000000,0x9CACB4AA,0x59000000,0x59B4ABAB,0x00000000,0x4AB4B057
.word 0x5759BDB6,0x0000B2AC,0x4A3358BB,0x00009D9D,0x591A33AB,0x0000AAB4,0xB5AF59AC,0x00009D9D
.word 0xBDB6B5B4,0x000000BD,0xBDBDB59B,0x00000059,0x5BB6B458,0x00000000,0x9CB6B357,0x00000000
.word 0x00000000,0x00AF0000,0x00000000,0xAFAF0000,0x00000000,0xBE000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0xBDBA9D00,0x00000000,0xB9B8A200,0x000000AF,0xB9A31400,0x0050BCAF,0xBD000000
.word 0x9DAABE00,0x9CBB9DAA,0xB0BE0000,0xBD9CBD9F,0xB7BE0000,0x5D000333,0xBC000000,0xB2BBACBF
.word 0x0000AFBE,0xAF000000,0x000000BE,0xAF000000,0x000000AC,0xAFAF0000,0x00000000,0xAF50AF00
.word 0x00009DAC,0x00AFBBAF,0xB9B69DAC,0x0000BBAF,0xABBE0A33,0x00000059,0xB900BEBF,0x0000009D
.word 0x000050BB,0x00000000,0x000050BB,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0xB3B9B559,0x00000000,0x4A4AAA57,0x00000000,0x6993675B,0x00000000,0x895E5E4E
.word 0x00000000,0x89605B00,0x00000000,0x5E600400,0x00000000,0x5E5F0400,0x00000000,0x37670400
.word 0x9CB9BFB6,0x00000000,0xAAAC4E4E,0x00000000,0x50928969,0x00000000,0x58929290,0x00000000
.word 0x005B9267,0x00000000,0x00048B69,0x00000000,0x00048869,0x00000000,0x0004695F,0x00000000
.word 0xBF000000,0xBEBD1A9D,0xB0000000,0x9C00BFBF,0x00000000,0xBDBE1A9D,0x00000000,0x9C00BEBD
.word 0x00000000,0xBFB94400,0x00000000,0x9C00BE00,0x00000000,0x4BB9BA00,0x00000000,0xBFB40000
.word 0x00B90ABD,0x000000B9,0xACBD3300,0x00000000,0x3333BDBD,0x00000000,0xACACBD00,0x00000000
.word 0x004B0BBE,0x00000000,0x00BE0000,0x00000000,0x004E33B9,0x00000000,0x0000BEBF,0x00000000
.word 0x00000000,0x37670400,0x00000000,0x5E670400,0x00000000,0x5E280400,0x00000000,0x5F670400
.word 0x00000000,0x5E880400,0x00000000,0x5E8B0400,0x00000000,0x5E880400,0x00000000,0x5E670000
.word 0x0004675F,0x00000000,0x0004675E,0x00000000,0x0004695E,0x00000000,0x00048B69,0x00000000
.word 0x00048B5E,0x00000000,0x00005F5E,0x00000000,0x00002869,0x00000000,0x00002888,0x00000000
.word 0x0A000000,0xACB9B7A3,0x1E000000,0xBBACBFBE,0xBB000000,0xB9030BBF,0xBE000000,0xB403BDB9
.word 0x00000000,0x0ABFACBB,0x00000000,0xACBEBFBB,0x00000000,0x58BFB000,0x00000000,0x00BCB09C
.word 0xAF14AC00,0x0000001E,0xBDB4ACBE,0x000000B9,0xBD0A0BBE,0x0000009D,0xB7BF00BF,0x000000B4
.word 0xB6BDB60B,0x00000000,0xBFBE58AC,0x00000500,0xBE00ABAB,0x000000BF,0x00000000,0x0000B9AF
.word 0x00000000,0x5E5F0000,0x00000000,0x5E5E0400,0x00000000,0x5E5F0400,0x00000000,0x5F670400
.word 0x00000000,0x88690400,0x00000000,0x898B0400,0x00000000,0x5E880400,0x00000000,0x6C280000
.word 0x0000288A,0x00000000,0x00002867,0x00000000,0x0004885E,0x00000000,0x0004885F,0x00000000
.word 0x00046967,0x00000000,0x00046767,0x00000000,0x00046767,0x00000000,0x00045F89,0x00000000
.word 0x00000000,0x000CBBAB,0x00000000,0x000CBEB6,0x00000000,0x0000BFB9,0x00000000,0x0000BFBB
.word 0x00000000,0x0000BBBC,0x0A000000,0x000000BB,0x0B000000,0x000000BF,0x1A000000,0x0000BBB9
.word 0x00000000,0x0019BBAF,0x00000000,0x1ABDAF00,0x00000000,0xBFAF0000,0x00000000,0xAF000000
.word 0x00000000,0x1A000000,0x00000000,0xB0000000,0x00000000,0xAA000000,0x00000000,0xBF9D0000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x0000000A,0x00000000,0x000000B9,0x00000000
.word 0x0000B6AA,0x00000000,0x000000B9,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x5E280000,0x00000000,0x5F280000,0x00000000,0x5E8B0400,0x00000000,0x5E920400
.word 0x00000000,0x5E8B0400,0x00000000,0x69910400,0x00000000,0x5F8A0400,0x00000000,0x5E900400
.word 0x00045F89,0x00000000,0x00046967,0x00000000,0x00008868,0x00000000,0x00000F6C,0x00000000
.word 0x00001369,0x00000000,0x00002888,0x00000000,0x00002888,0x00000000,0x00046789,0x00000000
.word 0x00000000,0x0000BBB9,0x00000000,0x00BBAF00,0x00000000,0x00BF0000,0x00000000,0xAFAF0000
.word 0x00000000,0xBEAF0000,0x00000000,0xBE000000,0x00000000,0xAF000000,0x00000000,0x00000000
.word 0x00000000,0xBBAF0000,0x00000000,0x00BF9C00,0x00000000,0x00BBB000,0x00000000,0x0000BE9B
.word 0x00000000,0x0000AFAA,0x00000000,0x0000AFBB,0x000000BB,0x0000009D,0xBB0000BF,0x00AABBBB
.word 0x00000000,0x5E880400,0x00000000,0x5E690400,0x00000000,0x5E690400,0x00000000,0x5F690400
.word 0x00000000,0x5E880400,0x00000000,0x5F880400,0x00000000,0x5E690400,0x00000000,0x5E880000
.word 0x00045F69,0x00000000,0x00048B69,0x00000000,0x00048B67,0x00000000,0x00048867,0x00000000
.word 0x00046767,0x00000000,0x00045F5E,0x00000000,0x00045F5E,0x00000000,0x0000676C,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x9C000000
.word 0x00000000,0xBB9C0000,0x00000000,0x00B60000,0x00000000,0x009C0000,0x00000000,0x00000000
.word 0x0000B9BB,0xBBBEAF00,0x0000AF00,0x00000000,0x0000BBAA,0x0A000000,0x000000BE,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x000000BB,0x00000000,0x000000AF,0x00000000,0x00000000,0x00000000
.word 0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000
@}}BLOCK(Multilayer)
|