-
Notifications
You must be signed in to change notification settings - Fork 72
/
assets.json
1068 lines (1028 loc) · 113 KB
/
assets.json
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
{
"@comment": "This file was generated by n64split.",
"textures/raw/ipl3_font_00.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000B70","0x0"]}},
"textures/raw/ipl3_font_01.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000B87","0x0"]}},
"textures/raw/ipl3_font_02.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000B9E","0x0"]}},
"textures/raw/ipl3_font_03.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000BB5","0x0"]}},
"textures/raw/ipl3_font_04.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000BCC","0x0"]}},
"textures/raw/ipl3_font_05.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000BE3","0x0"]}},
"textures/raw/ipl3_font_06.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000BFA","0x0"]}},
"textures/raw/ipl3_font_07.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C11","0x0"]}},
"textures/raw/ipl3_font_08.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C28","0x0"]}},
"textures/raw/ipl3_font_09.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C3F","0x0"]}},
"textures/raw/ipl3_font_10.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C56","0x0"]}},
"textures/raw/ipl3_font_11.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C6D","0x0"]}},
"textures/raw/ipl3_font_12.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C84","0x0"]}},
"textures/raw/ipl3_font_13.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000C9B","0x0"]}},
"textures/raw/ipl3_font_14.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000CB2","0x0"]}},
"textures/raw/ipl3_font_15.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000CC9","0x0"]}},
"textures/raw/ipl3_font_16.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000CE0","0x0"]}},
"textures/raw/ipl3_font_17.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000CF7","0x0"]}},
"textures/raw/ipl3_font_18.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D0E","0x0"]}},
"textures/raw/ipl3_font_19.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D25","0x0"]}},
"textures/raw/ipl3_font_20.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D3C","0x0"]}},
"textures/raw/ipl3_font_21.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D53","0x0"]}},
"textures/raw/ipl3_font_22.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D6A","0x0"]}},
"textures/raw/ipl3_font_23.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D81","0x0"]}},
"textures/raw/ipl3_font_24.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000D98","0x0"]}},
"textures/raw/ipl3_font_25.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000DAF","0x0"]}},
"textures/raw/ipl3_font_26.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000DC6","0x0"]}},
"textures/raw/ipl3_font_27.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000DDD","0x0"]}},
"textures/raw/ipl3_font_28.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000DF4","0x0"]}},
"textures/raw/ipl3_font_29.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E0B","0x0"]}},
"textures/raw/ipl3_font_30.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E22","0x0"]}},
"textures/raw/ipl3_font_31.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E39","0x0"]}},
"textures/raw/ipl3_font_32.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E50","0x0"]}},
"textures/raw/ipl3_font_33.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E67","0x0"]}},
"textures/raw/ipl3_font_34.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E7E","0x0"]}},
"textures/raw/ipl3_font_35.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000E95","0x0"]}},
"textures/raw/ipl3_font_36.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000EAC","0x0"]}},
"textures/raw/ipl3_font_37.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000EC3","0x0"]}},
"textures/raw/ipl3_font_38.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000EDA","0x0"]}},
"textures/raw/ipl3_font_39.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000EF1","0x0"]}},
"textures/raw/ipl3_font_40.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F08","0x0"]}},
"textures/raw/ipl3_font_41.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F1F","0x0"]}},
"textures/raw/ipl3_font_42.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F36","0x0"]}},
"textures/raw/ipl3_font_43.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F4D","0x0"]}},
"textures/raw/ipl3_font_44.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F64","0x0"]}},
"textures/raw/ipl3_font_45.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F7B","0x0"]}},
"textures/raw/ipl3_font_46.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000F92","0x0"]}},
"textures/raw/ipl3_font_47.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000FA9","0x0"]}},
"textures/raw/ipl3_font_48.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000FC0","0x0"]}},
"textures/raw/ipl3_font_49.ia1.png": {"meta":{"dims":[13,14]}, "offsets":{"us":["0x000FD7","0x0"]}},
"textures/crash_screen/crash_screen_font.ia1.png": {"meta":{"dims":[8,136]}, "offsets":{"us":["0x0DD274","0x0"]}},
"bin/lib/PR/boot/F3D_boot.bin": {"meta":{"size": "0xD0"}, "offsets": {"us":["0x0D9B70", "0x0"]}},
"bin/lib/PR/f3d/F3DEX.bin": {"meta":{"size": "0x13E0"}, "offsets": {"us":["0x0D9C40", "0x0"]}},
"bin/lib/PR/f3d/F3DLX.bin": {"meta":{"size": "0x1410"}, "offsets": {"us":["0x0DB020", "0x0"]}},
"bin/lib/PR/audio/aspMain.bin": {"meta":{"size": "0xC70"}, "offsets": {"us":["0x0DC430", "0x0"]}},
"bin/lib/PR/f3d/F3DEX_data.bin": {"meta":{"size": "0x800"}, "offsets": {"us":["0x0F4900", "0x0"]}},
"bin/lib/PR/f3d/F3DLX_data.bin": {"meta":{"size": "0x800"}, "offsets": {"us":["0x0F5100", "0x0"]}},
"bin/lib/PR/audio/aspMain_data.bin": {"meta":{"size": "0x300"}, "offsets": {"us":["0x0F5900", "0x0"]}},
"bin/audiobanks.us.bin": {"meta":{"size": "0x13840"}, "offsets":{"us":["0x966260","0x0"],"eu-final":["0x966380","0x0"]}},
"bin/audiobanks.eu.bin": {"meta":{"size": "0x13840"}, "offsets":{"eu-1.0":["0x966460","0x0"]}},
"bin/audiotables.bin": {"meta":{"size": "0x24C4C0"}, "offsets":{"us":["0x979AA0","0x0"]}},
"music/00_seq_00.m64": {"meta":{"size":"0x2830"}, "offsets": {"us":["0xBC6060", "0x0"]}},
"music/01_title_screen.m64": {"meta":{"size":"0x1B30"}, "offsets": {"us":["0xBC8890", "0x0"]}},
"music/02_main_menu.m64": {"meta":{"size":"0x0D60"}, "offsets": {"us":["0xBCA3C0", "0x0"]}},
"music/03_racways_wario_stadium.m64": {"meta":{"size":"0x1A10"}, "offsets": {"us":["0xBCB120", "0x0"]}},
"music/04_moo_moo_fame_yoshi_valley.m64": {"meta":{"size":"0x1CA0"}, "offsets": {"us":["0xBCCB30", "0x0"]}},
"music/05_choco_mountain.m64": {"meta":{"size":"0x1F70"}, "offsets": {"us":["0xBCE7D0", "0x0"]}},
"music/06_koopa_troopa_beach.m64": {"meta":{"size":"0x1EE0"}, "offsets": {"us":["0xBD0740", "0x0"]}},
"music/07_banshee_boardwalk.m64": {"meta":{"size":"0x16D0"}, "offsets": {"us":["0xBD2620", "0x0"]}},
"music/08_seq_08.m64": {"meta":{"size":"0x23D0"}, "offsets": {"us":["0xBD3CF0", "0x0"]}},
"music/09_seq_09.m64": {"meta":{"size":"0x1800"}, "offsets": {"us":["0xBD60C0", "0x0"]}},
"music/10_kalimari_desert.m64": {"meta":{"size":"0x1AE0"}, "offsets": {"us":["0xBD78C0", "0x0"]}},
"music/11_start_grid_gp_vs.m64": {"meta":{"size":"0x05F0"}, "offsets": {"us":["0xBD93A0", "0x0"]}},
"music/12_final_lap_fanfare.m64": {"meta":{"size":"0x03D0"}, "offsets": {"us":["0xBD9990", "0x0"]}},
"music/13_finish_1st_place.m64": {"meta":{"size":"0x0360"}, "offsets": {"us":["0xBD9D60", "0x0"]}},
"music/14_finish_2nd_4th_place.m64": {"meta":{"size":"0x02E0"}, "offsets": {"us":["0xBDA0C0", "0x0"]}},
"music/15_finish_5th_8th_place.m64": {"meta":{"size":"0x04C0"}, "offsets": {"us":["0xBDA3A0", "0x0"]}},
"music/16_seq_10.m64": {"meta":{"size":"0x1410"}, "offsets": {"us":["0xBDA860", "0x0"]}},
"music/17_star_jingle.m64": {"meta":{"size":"0x06E0"}, "offsets": {"us":["0xBDBC70", "0x0"]}},
"music/18_rainbow_road.m64": {"meta":{"size":"0x32F0"}, "offsets": {"us":["0xBDC350", "0x0"]}},
"music/19_maybe_boo_item.m64": {"meta":{"size":"0x06C0"}, "offsets": {"us":["0xBDF640", "0x0"]}},
"music/20_game_over.m64": {"meta":{"size":"0x04B0"}, "offsets": {"us":["0xBDFD00", "0x0"]}},
"music/21_toads_turnpike.m64": {"meta":{"size":"0x1160"}, "offsets": {"us":["0xBE01B0", "0x0"]}},
"music/22_start_gird_time_attack.m64": {"meta":{"size":"0x0310"}, "offsets": {"us":["0xBE1310", "0x0"]}},
"music/23_vs_battle_results.m64": {"meta":{"size":"0x12B0"}, "offsets": {"us":["0xBE1620", "0x0"]}},
"music/24_losing_results.m64": {"meta":{"size":"0x0600"}, "offsets": {"us":["0xBE28D0", "0x0"]}},
"music/25_battle_arenas.m64": {"meta":{"size":"0x16E0"}, "offsets": {"us":["0xBE2ED0", "0x0"]}},
"music/26_award_ceremony_buildup.m64": {"meta":{"size":"0x0AD0"}, "offsets": {"us":["0xBE45B0", "0x0"]}},
"music/27_award_ceremony_1st_3rd.m64": {"meta":{"size":"0x0C80"}, "offsets": {"us":["0xBE5080", "0x0"]}},
"music/28_staff_roll.m64": {"meta":{"size":"0x2750"}, "offsets": {"us":["0xBE5D00", "0x0"]}},
"music/29_award_ceremony_4th_8th.m64": {"meta":{"size":"0x0C80"}, "offsets": {"us":["0xBE8450", "0x0"]}},
"music/eu/00_seq_00.m64": {"meta":{"size":"0x2910"}, "offsets": {"eu-1.0":["0xBC6260", "0x0"],"eu-final":["0xBC6180", "0x0"]}},
"music/eu/01_title_screen.m64": {"meta":{"size":"0x1B30"}, "offsets": {"eu-1.0":["0xBC8B70", "0x0"],"eu-final":["0xBC8A90", "0x0"]}},
"music/eu/02_main_menu.m64": {"meta":{"size":"0x0D60"}, "offsets": {"eu-1.0":["0xBCA6A0", "0x0"],"eu-final":["0xBCA5C0", "0x0"]}},
"music/eu/03_racways_wario_stadium.m64": {"meta":{"size":"0x1A10"}, "offsets": {"eu-1.0":["0xBCB400", "0x0"],"eu-final":["0xBCB320", "0x0"]}},
"music/eu/04_moo_moo_fame_yoshi_valley.m64": {"meta":{"size":"0x1CA0"}, "offsets": {"eu-1.0":["0xBCCE10", "0x0"],"eu-final":["0xBCCC30", "0x0"]}},
"music/eu/05_choco_mountain.m64": {"meta":{"size":"0x1F70"}, "offsets": {"eu-1.0":["0xBCEAB0", "0x0"],"eu-final":["0xBCE9D0", "0x0"]}},
"music/eu/06_koopa_troopa_beach.m64": {"meta":{"size":"0x1EE0"}, "offsets": {"eu-1.0":["0xBD0A20", "0x0"],"eu-final":["0xBD0920", "0x0"]}},
"music/eu/07_banshee_boardwalk.m64": {"meta":{"size":"0x16D0"}, "offsets": {"eu-1.0":["0xBD2900", "0x0"],"eu-final":["0xBD2800", "0x0"]}},
"music/eu/08_seq_08.m64": {"meta":{"size":"0x23D0"}, "offsets": {"eu-1.0":["0xBD3FD0", "0x0"],"eu-final":["0xBD3E50", "0x0"]}},
"music/eu/09_seq_09.m64": {"meta":{"size":"0x1800"}, "offsets": {"eu-1.0":["0xBD63A0", "0x0"],"eu-final":["0xBD6230", "0x0"]}},
"music/eu/10_kalimari_desert.m64": {"meta":{"size":"0x1AE0"}, "offsets": {"eu-1.0":["0xBD7BA0", "0x0"],"eu-final":["0xBD7A20", "0x0"]}},
"music/eu/11_start_grid_gp_vs.m64": {"meta":{"size":"0x05F0"}, "offsets": {"eu-1.0":["0xBD9680", "0x0"],"eu-final":["0xBD9500", "0x0"]}},
"music/eu/12_final_lap_fanfare.m64": {"meta":{"size":"0x03D0"}, "offsets": {"eu-1.0":["0xBD9C70", "0x0"],"eu-final":["0xBD9AF0", "0x0"]}},
"music/eu/13_finish_1st_place.m64": {"meta":{"size":"0x0360"}, "offsets": {"eu-1.0":["0xBDA040", "0x0"],"eu-final":["0xBD9DC0", "0x0"]}},
"music/eu/14_finish_2nd_4th_place.m64": {"meta":{"size":"0x02E0"}, "offsets": {"eu-1.0":["0xBDA3A0", "0x0"],"eu-final":["0xBDA140", "0x0"]}},
"music/eu/15_finish_5th_8th_place.m64": {"meta":{"size":"0x04C0"}, "offsets": {"eu-1.0":["0xBDA680", "0x0"],"eu-final":["0xBDA400", "0x0"]}},
"music/eu/16_seq_10.m64": {"meta":{"size":"0x1410"}, "offsets": {"eu-1.0":["0xBDAB40", "0x0"],"eu-final":["0xBDAA60", "0x0"]}},
"music/eu/17_star_jingle.m64": {"meta":{"size":"0x06E0"}, "offsets": {"eu-1.0":["0xBDBF50", "0x0"],"eu-final":["0xBDBE70", "0x0"]}},
"music/eu/18_rainbow_road.m64": {"meta":{"size":"0x32F0"}, "offsets": {"eu-1.0":["0xBDC630", "0x0"],"eu-final":["0xBDC4D0", "0x0"]}},
"music/eu/19_maybe_boo_item.m64": {"meta":{"size":"0x06C0"}, "offsets": {"eu-1.0":["0xBDF920", "0x0"],"eu-final":["0xBDF840", "0x0"]}},
"music/eu/20_game_over.m64": {"meta":{"size":"0x04B0"}, "offsets": {"eu-1.0":["0xBDFFE0", "0x0"],"eu-final":["0xBDFF00", "0x0"]}},
"music/eu/21_toads_turnpike.m64": {"meta":{"size":"0x1160"}, "offsets": {"eu-1.0":["0xBE0490", "0x0"],"eu-final":["0xBE0380", "0x0"]}},
"music/eu/22_start_gird_time_attack.m64": {"meta":{"size":"0x0310"}, "offsets": {"eu-1.0":["0xBE15F0", "0x0"],"eu-final":["0xBE1500", "0x0"]}},
"music/eu/23_vs_battle_results.m64": {"meta":{"size":"0x12B0"}, "offsets": {"eu-1.0":["0xBE1900", "0x0"],"eu-final":["0xBE17D0", "0x0"]}},
"music/eu/24_losing_results.m64": {"meta":{"size":"0x0600"}, "offsets": {"eu-1.0":["0xBE2BB0", "0x0"],"eu-final":["0xBE2A90", "0x0"]}},
"music/eu/25_battle_arenas.m64": {"meta":{"size":"0x16E0"}, "offsets": {"eu-1.0":["0xBE31B0", "0x0"],"eu-final":["0xBE30B0", "0x0"]}},
"music/eu/26_award_ceremony_buildup.m64": {"meta":{"size":"0x0AD0"}, "offsets": {"eu-1.0":["0xBE4890", "0x0"],"eu-final":["0xBE4780", "0x0"]}},
"music/eu/27_award_ceremony_1st_3rd.m64": {"meta":{"size":"0x0C80"}, "offsets": {"eu-1.0":["0xBE5360", "0x0"],"eu-final":["0xBE5260", "0x0"]}},
"music/eu/28_staff_roll.m64": {"meta":{"size":"0x2750"}, "offsets": {"eu-1.0":["0xBE5FE0", "0x0"],"eu-final":["0xBE5EA0", "0x0"]}},
"music/eu/29_award_ceremony_4th_8th.m64": {"meta":{"size":"0x0C80"}, "offsets": {"eu-1.0":["0xBE8730", "0x0"],"eu-final":["0xBE8680", "0x0"]}},
"bin/gTexturePlayerSelect.rgba16.tkmk00": {"meta":{"size":"0xC00"}, "offsets": {"us":["0x7FA3C0", "0x0"]}},
"bin/gTextureOption.rgba16.tkmk00": {"meta":{"size":"0x900"}, "offsets": {"us":["0x7FAFC0", "0x0"]}},
"bin/gTextureNameDK.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x7FB8C0", "0x0"]}},
"bin/gTextureNameToad.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x7FBAC0", "0x0"]}},
"bin/gTextureNameBowser.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x7FBCC0", "0x0"]}},
"bin/gTextureNameLuigi.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x7FBEC0", "0x0"]}},
"bin/gTextureNameMario.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x7FC0C0", "0x0"]}},
"bin/gTextureNamePeach.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x7FC2C0", "0x0"]}},
"bin/gTextureNameWario.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x7FC4C0", "0x0"]}},
"bin/gTextureNameYoshi.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x7FC6C0", "0x0"]}},
"bin/gTextureTitleMarioRaceway.rgba16.tkmk00": {"meta":{"size":"0x500"}, "offsets": {"us":["0x7FC8C0", "0x0"]}},
"bin/gTextureTitleChocoMountain.rgba16.tkmk00": {"meta":{"size":"0x500"}, "offsets": {"us":["0x7FCDC0", "0x0"]}},
"bin/gTextureTitleBowsersCastle.rgba16.tkmk00": {"meta":{"size":"0x500"}, "offsets": {"us":["0x7FD2C0", "0x0"]}},
"bin/gTextureTitleBansheeBoardwalk.rgba16.tkmk00": {"meta":{"size":"0x600"}, "offsets": {"us":["0x7FD7C0", "0x0"]}},
"bin/gTextureTitleYoshiValley.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x7FDDC0", "0x0"]}},
"bin/gTextureTitleFrappeSnowland.rgba16.tkmk00": {"meta":{"size":"0x500"}, "offsets": {"us":["0x7FE1C0", "0x0"]}},
"bin/gTextureTitleKoopaTroopaBeach.rgba16.tkmk00": {"meta":{"size":"0x500"}, "offsets": {"us":["0x7FE6C0", "0x0"]}},
"bin/gTextureTitleRoyalRaceway.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x7FEBC0", "0x0"]}},
"bin/gTextureTitleLuigiRaceway.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x7FEFC0", "0x0"]}},
"bin/gTextureTitleMooMooFarm.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x7FF3C0", "0x0"]}},
"bin/gTextureTitleToadsTurnpike.rgba16.tkmk00": {"meta":{"size":"0x500"}, "offsets": {"us":["0x7FF7C0", "0x0"]}},
"bin/gTextureTitleKalimariDesert.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x7FFCC0", "0x0"]}},
"bin/gTextureTitleSherbetLand.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x8000C0", "0x0"]}},
"bin/gTextureTitleRainbowRoad.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x8004C0", "0x0"]}},
"bin/gTextureTitleWarioStadium.rgba16.tkmk00": {"meta":{"size":"0x500"}, "offsets": {"us":["0x8008C0", "0x0"]}},
"bin/gTextureTitleBlockFort.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets": {"us":["0x800DC0", "0x0"]}},
"bin/gTextureTitleSkyscraper.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x8010C0", "0x0"]}},
"bin/gTextureTitleDoubleDeck.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x8014C0", "0x0"]}},
"bin/gTextureTitleDKsJungleParkway.rgba16.tkmk00": {"meta":{"size":"0x600"}, "offsets": {"us":["0x8018C0", "0x0"]}},
"bin/gTextureTitleBigDonut.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets": {"us":["0x801EC0", "0x0"]}},
"bin/gTextureMapSelect.rgba16.tkmk00": {"meta":{"size":"0xC00"}, "offsets": {"us":["0x8021C0", "0x0"]}},
"bin/gTextureMenuFlowerCup.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x802DC0", "0x0"]}},
"bin/gTextureMenuMushroomCup.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x8031C0", "0x0"]}},
"bin/gTextureMenuStarCup.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x8035C0", "0x0"]}},
"bin/gTextureMenuSpecialCup.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x8039C0", "0x0"]}},
"bin/gTextureGameSelect.rgba16.tkmk00": {"meta":{"size":"0xC00"}, "offsets": {"us":["0x803DC0", "0x0"]}},
"bin/gTextureMenu1PGame.rgba16.tkmk00": {"meta":{"size":"0x500"}, "offsets": {"us":["0x8049C0", "0x0"]}},
"bin/gTextureMenu2PGame.rgba16.tkmk00": {"meta":{"size":"0x700"}, "offsets": {"us":["0x804EC0", "0x0"]}},
"bin/gTextureMenu3PGame.rgba16.tkmk00": {"meta":{"size":"0xA00"}, "offsets": {"us":["0x8055C0", "0x0"]}},
"bin/gTextureMenu4PGame.rgba16.tkmk00": {"meta":{"size":"0xB00"}, "offsets": {"us":["0x805FC0", "0x0"]}},
"bin/gTextureMenuModeBattle.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets": {"us":["0x806AC0", "0x0"]}},
"bin/gTextureMenuModeTimeTrials.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x806DC0", "0x0"]}},
"bin/gTextureMenuModeMarioGP.rgba16.tkmk00": {"meta":{"size":"0x400"}, "offsets": {"us":["0x8071C0", "0x0"]}},
"bin/gTextureMenuModeVS.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets": {"us":["0x8075C0", "0x0"]}},
"bin/gTextureMenuLOption.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets": {"us":["0x8078C0", "0x0"]}},
"bin/gTextureMenuRData.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets": {"us":["0x807BC0", "0x0"]}},
"bin/gTextureMenu50cc.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x807EC0", "0x0"]}},
"bin/gTextureMenu100cc.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x8080C0", "0x0"]}},
"bin/gTextureMenu150cc.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x8082C0", "0x0"]}},
"bin/gTextureMenuExtra.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x8084C0", "0x0"]}},
"bin/gTextureMenuWithoutItem.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets": {"us":["0x8086C0", "0x0"]}},
"bin/gTextureMenuWithItem.rgba16.tkmk00": {"meta":{"size":"0x300"}, "offsets": {"us":["0x8089C0", "0x0"]}},
"bin/gTextureMenuBegin.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x808CC0", "0x0"]}},
"bin/gTextureMenuGhost.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x808EC0", "0x0"]}},
"bin/gTextureMenuData.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x8090C0", "0x0"]}},
"bin/gTextureMenuOK.rgba16.tkmk00": {"meta":{"size":"0x200"}, "offsets": {"us":["0x8092C0", "0x0"]}},
"bin/gTextureBackgroundBlueSky.rgba16.tkmk00": {"meta":{"size":"0xCE00"}, "offsets": {"us":["0x8094C0", "0x0"]}},
"bin/gTextureBackgroundSunset.rgba16.tkmk00": {"meta":{"size":"0x9400"}, "offsets": {"us":["0x8162C0", "0x0"]}},
"bin/gTextureGreenGoldStripe.rgba16.tkmk00": {"meta":{"size":"0xC00"}, "offsets": {"us":["0x81F6C0", "0x0"]}},
"bin/gTextureGoldStripe.rgba16.tkmk00": {"meta":{"size":"0x700"}, "offsets": {"us":["0x8202C0", "0x0"]}},
"bin/gTextureWhiteStripe.rgba16.tkmk00": {"meta":{"size":"0x100"}, "offsets": {"us":["0x8209C0", "0x0"]}},
"bin/gTexturePinkBar.rgba16.tkmk00": {"meta":{"size":"0x500"}, "offsets": {"us":["0x820AC0", "0x0"]}},
"bin/gTextureGoldBar.rgba16.tkmk00": {"meta":{"size":"0xD50"}, "offsets": {"us":["0x820FC0", "0x0"]}},
"textures/common/common_texture_particle_fire.rgba16.png": {"meta":{"dims":[32,64]}, "offsets":{"us":["0x132B50","0x200"]}},
"textures/common/common_texture_item_box_question_mark.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x132B50", "0x01EE8"]}},
"textures/common/common_texture_banana.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x03348"]}},
"textures/common/common_texture_flat_banana.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x132B50", "0x03B48"]}},
"textures/common/132B50_06A58.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x132B50", "0x06A58"]}},
"textures/common/132B50_06AD8.ia8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x06AD8"]}},
"textures/common/common_texture_speedometer.i4.png": {"meta":{"dims":[64,96]}, "offsets": {"us":["0x132B50", "0x09958"]}},
"textures/common/common_texture_speedometer_needle.i4.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x132B50", "0x0A558"]}},
"textures/common/common_texture_hud_lap.rgba16.png": {"meta":{"dims":[32,8]}, "offsets": {"us":["0x132B50", "0x0A958"]}},
"textures/common/common_texture_hud_123.rgba16.png": {"meta":{"dims":[32,8]}, "offsets": {"us":["0x132B50", "0x0AB58"]}},
"textures/common/common_texture_hud_lap_time.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0AD58"]}},
"textures/common/common_texture_hud_lap_1_on_3.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0B158"]}},
"textures/common/common_texture_hud_lap_2_on_3.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0B558"]}},
"textures/common/common_texture_hud_lap_3_on_3.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0B958"]}},
"textures/common/common_texture_hud_total_time.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0BD58"]}},
"textures/common/common_texture_hud_time.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x0C158"]}},
"textures/common/common_texture_hud_normal_digit.rgba16.png": {"meta":{"dims":[104,16]}, "offsets": {"us":["0x132B50", "0x0C558"]}},
"textures/common/common_texture_hud_1st.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x0D258"]}},
"textures/common/common_texture_hud_2nd.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x0E258"]}},
"textures/common/common_texture_hud_3rd.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x0F258"]}},
"textures/common/common_texture_hud_4th.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x10258"]}},
"textures/common/common_texture_hud_5th.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x11258"]}},
"textures/common/common_texture_hud_6th.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x12258"]}},
"textures/common/common_texture_hud_7th.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x13258"]}},
"textures/common/common_texture_hud_8th.i4.png": {"meta":{"dims":[128,64]}, "offsets": {"us":["0x132B50", "0x14258"]}},
"textures/common/132B50_15258.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x132B50", "0x15258"]}},
"textures/common/132B50_15A58.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x132B50", "0x15A58"]}},
"textures/common/132B50_16258.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x132B50", "0x16258"]}},
"textures/common/132B50_16A58.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x132B50", "0x16A58"]}},
"textures/common/common_texture_particle_leaf.rgba16.png": {"meta":{"dims":[32,16]}, "offsets": {"us":["0x132B50", "0x28DD8"]}},
"textures/common/common_texture_unused_particle_leaf.rgba16.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x132B50", "0x291D8"]}},
"textures/common/132B50_293D8.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x132B50", "0x293D8"]}},
"textures/common/132B50_29458.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x29458"]}},
"textures/common/132B50_2AA58.rgba16.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x132B50", "0x2AA58"]}},
"textures/common/common_texture_particle_spark_1.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2AC58"]}},
"textures/common/common_texture_particle_spark_2.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2B058"]}},
"textures/common/common_texture_particle_spark_3.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2B458"]}},
"textures/common/common_texture_particle_spark_4.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2B858"]}},
"textures/common/common_texture_particle_smoke_1.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2BC58"]}},
"textures/common/common_texture_particle_smoke_2.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2C058"]}},
"textures/common/common_texture_particle_smoke_3.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2C458"]}},
"textures/common/common_texture_particle_smoke_4.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x132B50", "0x2C858"]}},
"textures/standalone/sign_shell_shot_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x641F70", "0x00000"]}},
"textures/standalone/sign_shell_shot_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6422FC", "0x00000"]}},
"textures/standalone/gray_checkerboard.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x642544", "0x00000"]}},
"textures/standalone/gray_cobblestone.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x642650", "0x00000"]}},
"textures/standalone/texture_64275C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64275C", "0x00000"]}},
"textures/standalone/texture_64286C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64286C", "0x00000"]}},
"textures/standalone/texture_642978.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x642978", "0x00000"]}},
"textures/standalone/sign_blue_64.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x642A88", "0x00000"]}},
"textures/standalone/checkerboard_yellow_pink.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x642FF0", "0x00000"]}},
"textures/standalone/texture_64313C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64313C", "0x00000"]}},
"textures/standalone/checkerbord_yellow_blue.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6432F4", "0x00000"]}},
"textures/standalone/texture_643430.ia16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x643430", "0x00000"]}},
"textures/standalone/texture_643A34.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x643A34", "0x00000"]}},
"textures/standalone/texture_643B3C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x643B3C", "0x00000"]}},
"textures/standalone/texture_6442D4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6442D4", "0x00000"]}},
"textures/standalone/texture_64440C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x64440C", "0x00000"]}},
"textures/standalone/texture_6446AC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6446AC", "0x00000"]}},
"textures/standalone/texture_6447C4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6447C4", "0x00000"]}},
"textures/standalone/checkerboard_black_white.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6448CC", "0x00000"]}},
"textures/standalone/texture_6449D4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6449D4", "0x00000"]}},
"textures/standalone/texture_645134.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x645134", "0x00000"]}},
"textures/standalone/texture_645660.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x645660", "0x00000"]}},
"textures/standalone/texture_6457D8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6457D8", "0x00000"]}},
"textures/standalone/checkerboard_blue_green.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x645938", "0x00000"]}},
"textures/standalone/number_yellow_blue_1.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x645A74", "0x00000"]}},
"textures/standalone/number_yellow_blue_2.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x645C24", "0x00000"]}},
"textures/standalone/number_yellow_blue_3.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x645DEC", "0x00000"]}},
"textures/standalone/number_yellow_blue_4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x645FB8", "0x00000"]}},
"textures/standalone/texture_64619C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64619C", "0x00000"]}},
"textures/standalone/texture_6462C0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6462C0", "0x00000"]}},
"textures/standalone/texture_64647C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x64647C", "0x00000"]}},
"textures/standalone/texture_646CA8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x646CA8", "0x00000"]}},
"textures/standalone/texture_6473E4.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6473E4", "0x00000"]}},
"textures/standalone/texture_647994.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x647994", "0x00000"]}},
"textures/standalone/texture_647F4C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x647F4C", "0x00000"]}},
"textures/standalone/texture_648508.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x648508", "0x00000"]}},
"textures/standalone/grass_1.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x648708", "0x00000"]}},
"textures/standalone/wood_door_0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x648830", "0x00000"]}},
"textures/standalone/wood_door_1.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x648AC4", "0x00000"]}},
"textures/standalone/grass_2.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6493C8", "0x00000"]}},
"textures/standalone/texture_64ACAC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64ACAC", "0x00000"]}},
"textures/standalone/texture_64AF50.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64AF50", "0x00000"]}},
"textures/standalone/texture_64B090.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64B090", "0x00000"]}},
"textures/standalone/texture_64B3F8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64B3F8", "0x00000"]}},
"textures/standalone/texture_64B54C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64B54C", "0x00000"]}},
"textures/standalone/texture_64B8D8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64B8D8", "0x00000"]}},
"textures/standalone/texture_64BA50.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64BA50", "0x00000"]}},
"textures/standalone/texture_64BB60.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64BB60", "0x00000"]}},
"textures/standalone/texture_64BCCC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64BCCC", "0x00000"]}},
"textures/standalone/texture_64C11C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64C11C", "0x00000"]}},
"textures/standalone/texture_64C7B4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64C7B4", "0x00000"]}},
"textures/standalone/texture_64CC20.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x64CC20", "0x00000"]}},
"textures/standalone/sign_merging_lanes.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64DAE4", "0x00000"]}},
"textures/standalone/grass_3.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64DBFC", "0x00000"]}},
"textures/standalone/grass_4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64DF70", "0x00000"]}},
"textures/standalone/grass_5.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64E534", "0x00000"]}},
"textures/standalone/grass_6.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64E774", "0x00000"]}},
"textures/standalone/sign_nintendo_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x64E9B0", "0x00000"]}},
"textures/standalone/sign_nintendo_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x64EEF4", "0x00000"]}},
"textures/standalone/grass_7.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64F408", "0x00000"]}},
"textures/standalone/texture_64F9E8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x64F9E8", "0x00000"]}},
"textures/standalone/texture_64FBF4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x64FBF4", "0x00000"]}},
"textures/standalone/texture_64FE68.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x64FE68", "0x00000"]}},
"textures/standalone/wood_bridge_slats.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6500C0", "0x00000"]}},
"textures/standalone/flag_red.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x650E6C", "0x00000"]}},
"textures/standalone/texture_65100C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x65100C", "0x00000"]}},
"textures/standalone/texture_65112C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x65112C", "0x00000"]}},
"textures/standalone/texture_65127C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x65127C", "0x00000"]}},
"textures/standalone/texture_651428.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x651428", "0x00000"]}},
"textures/standalone/texture_651984.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x651984", "0x00000"]}},
"textures/standalone/texture_651B20.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x651B20", "0x00000"]}},
"textures/standalone/texture_651F40.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x651F40", "0x00000"]}},
"textures/standalone/texture_6522E0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6522E0", "0x00000"]}},
"textures/standalone/texture_6528DC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6528DC", "0x00000"]}},
"textures/standalone/texture_652B54.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x652B54", "0x00000"]}},
"textures/standalone/texture_65315C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x65315C", "0x00000"]}},
"textures/standalone/texture_653608.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x653608", "0x00000"]}},
"textures/standalone/texture_653DB0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x653DB0", "0x00000"]}},
"textures/standalone/texture_654460.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x654460", "0x00000"]}},
"textures/standalone/texture_654F74.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x654F74", "0x00000"]}},
"textures/standalone/texture_655998.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x655998", "0x00000"]}},
"textures/standalone/texture_655F38.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x655F38", "0x00000"]}},
"textures/standalone/texture_656AF4.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x656AF4", "0x00000"]}},
"textures/standalone/texture_6575C8.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x6575C8", "0x00000"]}},
"textures/standalone/texture_658370.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x658370", "0x00000"]}},
"textures/standalone/texture_65912C.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x65912C", "0x00000"]}},
"textures/standalone/texture_659EE8.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x659EE8", "0x00000"]}},
"textures/standalone/texture_65ADE0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x65ADE0", "0x00000"]}},
"textures/standalone/texture_65BB3C.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x65BB3C", "0x00000"]}},
"textures/standalone/texture_65C8DC.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x65C8DC", "0x00000"]}},
"textures/standalone/texture_65D5D4.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x65D5D4", "0x00000"]}},
"textures/standalone/texture_65E2EC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x65E2EC", "0x00000"]}},
"textures/standalone/texture_65E59C.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x65E59C", "0x00000"]}},
"textures/standalone/texture_65EAEC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x65EAEC", "0x00000"]}},
"textures/standalone/texture_65EE38.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x65EE38", "0x00000"]}},
"textures/standalone/texture_65FB18.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x65FB18", "0x00000"]}},
"textures/standalone/sign_pink_arrow.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x65FF08", "0x00000"]}},
"textures/standalone/crown_jewel_blue.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6600A0", "0x00000"]}},
"textures/standalone/crown.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6603A4", "0x00000"]}},
"textures/standalone/crown_jewel_pink.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6604AC", "0x00000"]}},
"textures/standalone/texture_6607C0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6607C0", "0x00000"]}},
"textures/standalone/texture_6608C8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6608C8", "0x00000"]}},
"textures/standalone/texture_6609D0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x6609D0", "0x00000"]}},
"textures/standalone/texture_660D8C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x660D8C", "0x00000"]}},
"textures/standalone/roof_tile.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x660EB4", "0x00000"]}},
"textures/standalone/castle_bricks.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x660FE0", "0x00000"]}},
"textures/standalone/castle_bridge.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x661B14", "0x00000"]}},
"textures/standalone/grass_8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x661F3C", "0x00000"]}},
"textures/standalone/grass_9.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x662208", "0x00000"]}},
"textures/standalone/texture_66262C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66262C", "0x00000"]}},
"textures/standalone/texture_662924.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x662924", "0x00000"]}},
"textures/standalone/texture_662A34.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x662A34", "0x00000"]}},
"textures/standalone/sign_toad_yellow.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x662B3C", "0x00000"]}},
"textures/standalone/sign_toad_green.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x663260", "0x00000"]}},
"textures/standalone/sign_toad_red.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x663980", "0x00000"]}},
"textures/standalone/texture_663F90.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x663F90", "0x00000"]}},
"textures/standalone/texture_6640B4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6640B4", "0x00000"]}},
"textures/standalone/texture_6642A4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6642A4", "0x00000"]}},
"textures/standalone/texture_664408.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x664408", "0x00000"]}},
"textures/standalone/texture_6646B8.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x6646B8", "0x00000"]}},
"textures/standalone/sign_koopa_air_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x664950", "0x00000"]}},
"textures/standalone/sign_koopa_air_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x664CB0", "0x00000"]}},
"textures/standalone/bricks_red.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x664FB4", "0x00000"]}},
"textures/standalone/texture_665C0C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x665C0C", "0x00000"]}},
"textures/standalone/texture_6661AC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6661AC", "0x00000"]}},
"textures/standalone/texture_6663A4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6663A4", "0x00000"]}},
"textures/standalone/sign_bowser_0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x66699C", "0x00000"]}},
"textures/standalone/sign_bowser_1.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x66716C", "0x00000"]}},
"textures/standalone/grass_10.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6677BC", "0x00000"]}},
"textures/standalone/grass_11.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6679B4", "0x00000"]}},
"textures/standalone/texture_667BAC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x667BAC", "0x00000"]}},
"textures/standalone/texture_668228.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x668228", "0x00000"]}},
"textures/standalone/texture_668358.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x668358", "0x00000"]}},
"textures/standalone/texture_6684F8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6684F8", "0x00000"]}},
"textures/standalone/texture_668608.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x668608", "0x00000"]}},
"textures/standalone/texture_668728.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x668728", "0x00000"]}},
"textures/standalone/texture_668920.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x668920", "0x00000"]}},
"textures/standalone/grass_12.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x668CFC", "0x00000"]}},
"textures/standalone/texture_669570.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x669570", "0x00000"]}},
"textures/standalone/texture_66A3DC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66A3DC", "0x00000"]}},
"textures/standalone/texture_66ABA4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66ABA4", "0x00000"]}},
"textures/standalone/texture_66AEB8.ia16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66AEB8", "0x00000"]}},
"textures/standalone/sign_luigi_face_0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x66B0BC", "0x00000"]}},
"textures/standalone/sign_luigi_face_1.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x66B688", "0x00000"]}},
"textures/standalone/sign_luigis_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x66BCE8", "0x00000"]}},
"textures/standalone/sign_luigis_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x66BF70", "0x00000"]}},
"textures/standalone/sign_mario_star_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x66C220", "0x00000"]}},
"textures/standalone/sign_mario_star_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x66C4F4", "0x00000"]}},
"textures/standalone/texture_66C7A8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66C7A8", "0x00000"]}},
"textures/standalone/texture_66C8F4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66C8F4", "0x00000"]}},
"textures/standalone/texture_66CA98.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66CA98", "0x00000"]}},
"textures/standalone/texture_66CD64.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66CD64", "0x00000"]}},
"textures/standalone/texture_66D024.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66D024", "0x00000"]}},
"textures/standalone/flag_red_2.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66D510", "0x00000"]}},
"textures/standalone/texture_66D698.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66D698", "0x00000"]}},
"textures/standalone/checkerboard_pink.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66DA08", "0x00000"]}},
"textures/standalone/texture_66DB60.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66DB60", "0x00000"]}},
"textures/standalone/texture_66DD38.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x66DD38", "0x00000"]}},
"textures/standalone/sign_nintendo_red_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x66E068", "0x00000"]}},
"textures/standalone/sign_nintendo_red_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x66E310", "0x00000"]}},
"textures/standalone/texture_66E608.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66E608", "0x00000"]}},
"textures/standalone/texture_66EBF0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66EBF0", "0x00000"]}},
"textures/standalone/texture_66ED38.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x66ED38", "0x00000"]}},
"textures/standalone/stainglass_peach_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x66EE48", "0x00000"]}},
"textures/standalone/stainglass_peach_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x66FD1C", "0x00000"]}},
"textures/standalone/texture_670AC8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x670AC8", "0x00000"]}},
"textures/standalone/texture_671A88.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x671A88", "0x00000"]}},
"textures/standalone/railroad_track.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x671BB8", "0x00000"]}},
"textures/standalone/railroad_crossing_track.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x672714", "0x00000"]}},
"textures/standalone/texture_67291C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67291C", "0x00000"]}},
"textures/standalone/rainbow.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x672EB8", "0x00000"]}},
"textures/standalone/texture_673118.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x673118", "0x00000"]}},
"textures/standalone/texture_6733CC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6733CC", "0x00000"]}},
"textures/standalone/texture_6735DC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6735DC", "0x00000"]}},
"textures/standalone/texture_673990.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x673990", "0x00000"]}},
"textures/standalone/texture_673C68.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x673C68", "0x00000"]}},
"textures/standalone/texture_673FF8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x673FF8", "0x00000"]}},
"textures/standalone/texture_674354.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x674354", "0x00000"]}},
"textures/standalone/texture_6747C4.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6747C4", "0x00000"]}},
"textures/standalone/texture_67490C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67490C", "0x00000"]}},
"textures/standalone/texture_674B28.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x674B28", "0x00000"]}},
"textures/standalone/texture_674D58.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x674D58", "0x00000"]}},
"textures/standalone/texture_675064.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x675064", "0x00000"]}},
"textures/standalone/texture_675220.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x675220", "0x00000"]}},
"textures/standalone/texture_675434.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x675434", "0x00000"]}},
"textures/standalone/road_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x67567C", "0x00000"]}},
"textures/standalone/road_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x67597C", "0x00000"]}},
"textures/standalone/road_2.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x675C50", "0x00000"]}},
"textures/standalone/road_3.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x675F00", "0x00000"]}},
"textures/standalone/road_4.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x676188", "0x00000"]}},
"textures/standalone/road_5.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x67640C", "0x00000"]}},
"textures/standalone/road_finish_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6766C8", "0x00000"]}},
"textures/standalone/road_finish_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x676A00", "0x00000"]}},
"textures/standalone/texture_676C6C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x676C6C", "0x00000"]}},
"textures/standalone/texture_676D7C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x676D7C", "0x00000"]}},
"textures/standalone/texture_676EA8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x676EA8", "0x00000"]}},
"textures/standalone/texture_676FB0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x676FB0", "0x00000"]}},
"textures/standalone/texture_6774D8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6774D8", "0x00000"]}},
"textures/standalone/texture_6775EC.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6775EC", "0x00000"]}},
"textures/standalone/fence_barbed_wire.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x677820", "0x00000"]}},
"textures/standalone/texture_677A40.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x677A40", "0x00000"]}},
"textures/standalone/sign_falling_rocks.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x677CB8", "0x00000"]}},
"textures/standalone/sign_backside.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x677DE4", "0x00000"]}},
"textures/standalone/texture_677F04.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x677F04", "0x00000"]}},
"textures/standalone/texture_678118.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x678118", "0x00000"]}},
"textures/standalone/texture_67842C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67842C", "0x00000"]}},
"textures/standalone/texture_67893C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67893C", "0x00000"]}},
"textures/standalone/texture_678CC8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x678CC8", "0x00000"]}},
"textures/standalone/texture_679258.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x679258", "0x00000"]}},
"textures/standalone/texture_67973C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x67973C", "0x00000"]}},
"textures/standalone/texture_679C04.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x679C04", "0x00000"]}},
"textures/standalone/texture_679D34.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x679D34", "0x00000"]}},
"textures/standalone/star_outline.ia16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x679E3C", "0x00000"]}},
"textures/standalone/texture_67A1B8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67A1B8", "0x00000"]}},
"textures/standalone/texture_67A370.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67A370", "0x00000"]}},
"textures/standalone/texture_67A91C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67A91C", "0x00000"]}},
"textures/standalone/texture_67ADF0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67ADF0", "0x00000"]}},
"textures/standalone/texture_67B388.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67B388", "0x00000"]}},
"textures/standalone/texture_67B75C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67B75C", "0x00000"]}},
"textures/standalone/texture_67B864.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67B864", "0x00000"]}},
"textures/standalone/texture_67B9B0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67B9B0", "0x00000"]}},
"textures/standalone/texture_67BBD8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67BBD8", "0x00000"]}},
"textures/standalone/texture_67BEE8.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67BEE8", "0x00000"]}},
"textures/standalone/sand_finish.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67C1B8", "0x00000"]}},
"textures/standalone/waves_0.ia16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67C3E8", "0x00000"]}},
"textures/standalone/waves_1.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67C8B8", "0x00000"]}},
"textures/standalone/waves_2.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67CE7C", "0x00000"]}},
"textures/standalone/texture_67D304.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x67D304", "0x00000"]}},
"textures/standalone/texture_67DC20.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67DC20", "0x00000"]}},
"textures/standalone/texture_67E010.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67E010", "0x00000"]}},
"textures/standalone/texture_67E428.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x67E428", "0x00000"]}},
"textures/standalone/texture_67EEAC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67EEAC", "0x00000"]}},
"textures/standalone/texture_67EFEC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67EFEC", "0x00000"]}},
"textures/standalone/texture_67F15C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67F15C", "0x00000"]}},
"textures/standalone/texture_67F450.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67F450", "0x00000"]}},
"textures/standalone/sign_wario_face.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x67F5E4", "0x00000"]}},
"textures/standalone/texture_67FE0C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x67FE0C", "0x00000"]}},
"textures/standalone/sign_welcome_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6800EC", "0x00000"]}},
"textures/standalone/sign_welcome_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x680B1C", "0x00000"]}},
"textures/standalone/sign_wooden_back_0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x681528", "0x00000"]}},
"textures/standalone/sign_wooden_back_1.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x681C18", "0x00000"]}},
"textures/standalone/wheel_steam_engine.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6822EC", "0x00000"]}},
"textures/standalone/wheel_steam_engine_real.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x6824FC", "0x00000"]}},
"textures/standalone/texture_68272C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68272C", "0x00000"]}},
"textures/standalone/texture_682928.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x682928", "0x00000"]}},
"textures/standalone/texture_682B24.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x682B24", "0x00000"]}},
"textures/standalone/texture_682D20.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x682D20", "0x00000"]}},
"textures/standalone/texture_682F1C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x682F1C", "0x00000"]}},
"textures/standalone/texture_683118.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x683118", "0x00000"]}},
"textures/standalone/texture_683314.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x683314", "0x00000"]}},
"textures/standalone/texture_6835F0.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x6835F0", "0x00000"]}},
"textures/standalone/texture_683844.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x683844", "0x00000"]}},
"textures/standalone/fence_post_wooden.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x683E9C", "0x00000"]}},
"textures/standalone/texture_6846DC.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6846DC", "0x00000"]}},
"textures/standalone/fence_rope.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x684BC8", "0x00000"]}},
"textures/standalone/texture_685108.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x685108", "0x00000"]}},
"textures/standalone/sign_wood_red_arrow.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6855DC", "0x00000"]}},
"textures/standalone/texture_685AC0.ia16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x685AC0", "0x00000"]}},
"textures/standalone/sign_green_arrow.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68628C", "0x00000"]}},
"textures/standalone/texture_6864E8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6864E8", "0x00000"]}},
"textures/standalone/texture_686CF0.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x686CF0", "0x00000"]}},
"textures/standalone/texture_6875A8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x6875A8", "0x00000"]}},
"textures/standalone/texture_687EE8.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x687EE8", "0x00000"]}},
"textures/standalone/texture_68876C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68876C", "0x00000"]}},
"textures/standalone/texture_689230.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x689230", "0x00000"]}},
"textures/standalone/texture_689C00.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x689C00", "0x00000"]}},
"textures/standalone/texture_68A484.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68A484", "0x00000"]}},
"textures/standalone/texture_68AC5C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68AC5C", "0x00000"]}},
"textures/standalone/texture_68B6A4.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68B6A4", "0x00000"]}},
"textures/standalone/texture_68BE6C.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68BE6C", "0x00000"]}},
"textures/standalone/texture_68C310.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68C310", "0x00000"]}},
"textures/standalone/texture_68C620.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68C620", "0x00000"]}},
"textures/standalone/texture_68C79C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68C79C", "0x00000"]}},
"textures/standalone/texture_68C944.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68C944", "0x00000"]}},
"textures/standalone/texture_68CA94.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68CA94", "0x00000"]}},
"textures/standalone/texture_68CC0C.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68CC0C", "0x00000"]}},
"textures/standalone/texture_68CDA0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68CDA0", "0x00000"]}},
"textures/standalone/sign_yoshi.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68CEB0", "0x00000"]}},
"textures/standalone/checkerboard_blue_gray.rgba16.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x68D390", "0x00000"]}},
"textures/standalone/texture_68D834.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68D834", "0x00000"]}},
"textures/standalone/texture_68D940.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68D940", "0x00000"]}},
"textures/standalone/texture_68DEC0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68DEC0", "0x00000"]}},
"textures/standalone/texture_68E2D0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x68E2D0", "0x00000"]}},
"textures/standalone/question_mark_yellow.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x691030", "0x00000"]}},
"textures/standalone/shrub.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x692F3C", "0x00000"]}},
"textures/standalone/texture_6997E0.rgba16.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x6997E0", "0x00000"]}},
"textures/standalone/kart_shadow.i8.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69A830", "0x00000"]}},
"textures/standalone/texture_69B03C.i8.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x69B03C", "0x00000"]}},
"textures/standalone/texture_69B140.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x69B140", "0x00000"]}},
"textures/standalone/texture_69B378.rgba16.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x69B378", "0x00000"]}},
"textures/standalone/texture_69B960.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x69B960", "0x00000"]}},
"textures/standalone/texture_69BA28.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x69BA28", "0x00000"]}},
"textures/standalone/boing_exclamation.ia8.png": {"meta":{"dims":[64,32]}, "offsets": {"us":["0x69BB18", "0x00000"]}},
"textures/standalone/texture_69BE6C.ia16.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x69BE6C", "0x00000"]}},
"textures/standalone/texture_69BF54.ia16.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x69BF54", "0x00000"]}},
"textures/standalone/texture_69C090.ia16.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x69C090", "0x00000"]}},
"textures/standalone/texture_69C1E8.ia16.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x69C1E8", "0x00000"]}},
"textures/standalone/texture_69C354.ia8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x69C354", "0x00000"]}},
"textures/standalone/texture_69C4E4.i8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x69C4E4", "0x00000"]}},
"textures/standalone/texture_69C80C.ia8.png": {"meta":{"dims":[32,32]}, "offsets": {"us":["0x69C80C", "0x00000"]}},
"textures/standalone/texture_69C9C4.ia16.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x69C9C4", "0x00000"]}},
"textures/standalone/texture_69CB84.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69CB84", "0x00000"]}},
"textures/standalone/texture_69CCEC.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69CCEC", "0x00000"]}},
"textures/standalone/texture_69CEB8.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69CEB8", "0x00000"]}},
"textures/standalone/texture_69D148.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69D148", "0x00000"]}},
"textures/standalone/texture_69D4E0.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69D4E0", "0x00000"]}},
"textures/standalone/texture_69D8FC.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69D8FC", "0x00000"]}},
"textures/standalone/texture_69DCB4.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69DCB4", "0x00000"]}},
"textures/standalone/texture_69DFA0.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69DFA0", "0x00000"]}},
"textures/standalone/texture_69E25C.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69E25C", "0x00000"]}},
"textures/standalone/texture_69E518.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69E518", "0x00000"]}},
"textures/standalone/texture_69E7A8.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69E7A8", "0x00000"]}},
"textures/standalone/texture_69EA18.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69EA18", "0x00000"]}},
"textures/standalone/texture_69EC54.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69EC54", "0x00000"]}},
"textures/standalone/texture_69EE38.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69EE38", "0x00000"]}},
"textures/standalone/texture_69EFE0.i4.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x69EFE0", "0x00000"]}},
"textures/standalone/lightning_zap_0.ia8.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x6A04E4", "0x00000"]}},
"textures/standalone/lightning_zap_1.ia8.png": {"meta":{"dims":[32,64]}, "offsets": {"us":["0x6A0798", "0x00000"]}},
"textures/standalone/exhaust_0.ia8.png": {"meta":{"dims":[32,96]}, "offsets": {"us":["0x717A84", "0x00000"]}},
"textures/standalone/exhaust_1.ia8.png": {"meta":{"dims":[32,96]}, "offsets": {"us":["0x717F00", "0x00000"]}},
"textures/standalone/exhaust_2.ia8.png": {"meta":{"dims":[32,96]}, "offsets": {"us":["0x718388", "0x00000"]}},
"textures/standalone/exhaust_3.ia8.png": {"meta":{"dims":[32,128]}, "offsets": {"us":["0x71887C", "0x00000"]}},
"textures/standalone/exhaust_4.ia8.png": {"meta":{"dims":[32,128]}, "offsets": {"us":["0x718C44", "0x00000"]}},
"textures/standalone/exhaust_5.ia8.png": {"meta":{"dims":[32,128]}, "offsets": {"us":["0x71903C", "0x00000"]}},
"textures/standalone/logo_mario_kart_64.rgba32.png": {"meta":{"dims":[256,128]}, "offsets": {"us":["0x719480", "0x00000"]}},
"textures/standalone/trophy_gold.rgba16.png": {"meta":{"dims":[45,45]}, "offsets": {"us":["0x7D83E8", "0x00000"]}},
"textures/standalone/trophy_silver.rgba16.png": {"meta":{"dims":[45,45]}, "offsets": {"us":["0x7D8A1C", "0x00000"]}},
"textures/standalone/trophy_bronze.rgba16.png": {"meta":{"dims":[45,45]}, "offsets": {"us":["0x7D9044", "0x00000"]}},
"textures/standalone/cup_gold.rgba16.png": {"meta":{"dims":[45,45]}, "offsets": {"us":["0x7D9630", "0x00000"]}},
"textures/standalone/cup_silver.rgba16.png": {"meta":{"dims":[45,45]}, "offsets": {"us":["0x7D9FBC", "0x00000"]}},
"textures/standalone/cup_bronze.rgba16.png": {"meta":{"dims":[45,45]}, "offsets": {"us":["0x7DA940", "0x00000"]}},
"textures/raw/push_start_button.rgba16.png": {"meta":{"dims":[159,16]}, "offsets": {"us":["0x7DB1E4", "0x0"]}},
"textures/raw/copyright_1996.rgba16.png": {"meta":{"dims":[124,17]}, "offsets": {"us":["0x7DC5C4", "0x0"]}},
"textures/raw/p1_border_blue.rgba16.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x7DD63C", "0x0"]}},
"textures/raw/p2_border_red.rgba16.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x7DF63C", "0x0"]}},
"textures/raw/p3_border_orange.rgba16.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x7E163C", "0x0"]}},
"textures/raw/p4_border_green.rgba16.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x7E363C", "0x0"]}},
"textures/raw/small_green_triangle.rgba16.png": {"meta":{"dims":[12,7]}, "offsets": {"us":["0x7E563C", "0x0"]}},
"textures/standalone/texture_7E56E4.ia16.png": {"meta":{"dims":[64,64]}, "offsets": {"us":["0x7E56E4", "0x00000"]}},
"textures/standalone/small_letter_0.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E6850", "0x00000"]}},
"textures/standalone/small_letter_1.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E68E0", "0x00000"]}},
"textures/standalone/small_letter_2.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E6938", "0x00000"]}},
"textures/standalone/small_letter_3.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E69D0", "0x00000"]}},
"textures/standalone/small_letter_4.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E6A64", "0x00000"]}},
"textures/standalone/small_letter_5.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E6AEC", "0x00000"]}},
"textures/standalone/small_letter_6.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E6B84", "0x00000"]}},
"textures/standalone/small_letter_7.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E6C20", "0x00000"]}},
"textures/standalone/small_letter_8.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E6C90", "0x00000"]}},
"textures/standalone/small_letter_9.ia16.png": {"meta":{"dims":[8,9]}, "offsets": {"us":["0x7E6D20", "0x00000"]}},
"textures/standalone/n64_controller_pak_data_select.ia16.png": {"meta":{"dims":[180,32]}, "offsets": {"us":["0x7E6DC0", "0x00000"]}},
"textures/standalone/erase_data_record_confirmation.ia16.png": {"meta":{"dims":[180,32]}, "offsets": {"us":["0x7E7EE8", "0x00000"]}},
"textures/standalone/record_not_erased.ia16.png": {"meta":{"dims":[180,32]}, "offsets": {"us":["0x7E8EDC", "0x00000"]}},
"textures/standalone/place_n64_controller_pak_into_controller_1.ia16.png": {"meta":{"dims":[180,32]}, "offsets": {"us":["0x7E97AC", "0x00000"]}},
"textures/standalone/please_reinsert_original_n64_controller_pak.ia16.png": {"meta":{"dims":[180,32]}, "offsets": {"us":["0x7EA3F8", "0x00000"]}},
"textures/standalone/erasing_selected_record.ia16.png": {"meta":{"dims":[180,32]}, "offsets": {"us":["0x7EB0D0", "0x00000"]}},
"textures/standalone/select_record.ia16.png": {"meta":{"dims":[68,10]}, "offsets": {"us":["0x7EBCD4", "0x00000"]}},
"textures/standalone/text_end.ia16.png": {"meta":{"dims":[20,10]}, "offsets": {"us":["0x7EC04C", "0x00000"]}},
"textures/standalone/table_of_contents.ia16.png": {"meta":{"dims":[88,10]}, "offsets": {"us":["0x7EC17C", "0x00000"]}},
"textures/standalone/text_hash.ia16.png": {"meta":{"dims":[8,10]}, "offsets": {"us":["0x7EC5A8", "0x00000"]}},
"textures/standalone/text_game_data.ia16.png": {"meta":{"dims":[56,10]}, "offsets": {"us":["0x7EC628", "0x00000"]}},
"textures/standalone/text_pages.ia16.png": {"meta":{"dims":[32,10]}, "offsets": {"us":["0x7EC8EC", "0x00000"]}},
"textures/standalone/text_pages_free.ia16.png": {"meta":{"dims":[56,10]}, "offsets": {"us":["0x7ECAAC", "0x00000"]}},
"textures/standalone/text_erase.ia16.png": {"meta":{"dims":[28,10]}, "offsets": {"us":["0x7ECD70", "0x00000"]}},
"textures/standalone/text_quit.ia16.png": {"meta":{"dims":[24,10]}, "offsets": {"us":["0x7ECF10", "0x00000"]}},
"textures/standalone/texture_7ED058.ia16.png": {"meta":{"dims":[32,66]}, "offsets": {"us":["0x7ED058", "0x00000"]}},
"textures/standalone/texture_7ED290.ia16.png": {"meta":{"dims":[248,10]}, "offsets": {"us":["0x7ED290", "0x00000"]}},
"textures/standalone/texture_7ED50C.ia16.png": {"meta":{"dims":[128,10]}, "offsets": {"us":["0x7ED50C", "0x00000"]}},
"textures/standalone/texture_7ED6A4.ia16.png": {"meta":{"dims":[68,51]}, "offsets": {"us":["0x7ED6A4", "0x00000"]}},
"textures/standalone/tiny_font_0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDA34", "0x00000"]}},
"textures/standalone/tiny_font_1.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDAA8", "0x00000"]}},
"textures/standalone/tiny_font_2.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDAF0", "0x00000"]}},
"textures/standalone/tiny_font_3.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDB64", "0x00000"]}},
"textures/standalone/tiny_font_4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDBD4", "0x00000"]}},
"textures/standalone/tiny_font_5.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDC30", "0x00000"]}},
"textures/standalone/tiny_font_6.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDCA4", "0x00000"]}},
"textures/standalone/tiny_font_7.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDD18", "0x00000"]}},
"textures/standalone/tiny_font_8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDD78", "0x00000"]}},
"textures/standalone/tiny_font_9.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDDF0", "0x00000"]}},
"textures/standalone/tiny_font_A.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDE64", "0x00000"]}},
"textures/standalone/tiny_font_B.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDED0", "0x00000"]}},
"textures/standalone/tiny_font_C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDF4C", "0x00000"]}},
"textures/standalone/tiny_font_D.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EDFC0", "0x00000"]}},
"textures/standalone/tiny_font_E.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE030", "0x00000"]}},
"textures/standalone/tiny_font_F.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE0A4", "0x00000"]}},
"textures/standalone/tiny_font_G.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE108", "0x00000"]}},
"textures/standalone/tiny_font_H.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE17C", "0x00000"]}},
"textures/standalone/tiny_font_I.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE1F4", "0x00000"]}},
"textures/standalone/tiny_font_J.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE23C", "0x00000"]}},
"textures/standalone/tiny_font_K.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE290", "0x00000"]}},
"textures/standalone/tiny_font_L.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE300", "0x00000"]}},
"textures/standalone/tiny_font_M.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE34C", "0x00000"]}},
"textures/standalone/tiny_font_N.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE3C8", "0x00000"]}},
"textures/standalone/tiny_font_O.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE444", "0x00000"]}},
"textures/standalone/tiny_font_P.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE4BC", "0x00000"]}},
"textures/standalone/tiny_font_Q.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE528", "0x00000"]}},
"textures/standalone/tiny_font_R.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE5A0", "0x00000"]}},
"textures/standalone/tiny_font_S.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE614", "0x00000"]}},
"textures/standalone/tiny_font_T.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE684", "0x00000"]}},
"textures/standalone/tiny_font_U.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE6D8", "0x00000"]}},
"textures/standalone/tiny_font_V.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE73C", "0x00000"]}},
"textures/standalone/tiny_font_W.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE79C", "0x00000"]}},
"textures/standalone/tiny_font_X.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE818", "0x00000"]}},
"textures/standalone/tiny_font_Y.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE884", "0x00000"]}},
"textures/standalone/tiny_font_Z.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE8D4", "0x00000"]}},
"textures/standalone/tiny_font_exclamation_mark.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE93C", "0x00000"]}},
"textures/standalone/tiny_font_double_quote.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE984", "0x00000"]}},
"textures/standalone/tiny_font_hash.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EE9BC", "0x00000"]}},
"textures/standalone/tiny_font_single_quote.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEA2C", "0x00000"]}},
"textures/standalone/tiny_font_asterisk.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEA5C", "0x00000"]}},
"textures/standalone/tiny_font_plus.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEAC8", "0x00000"]}},
"textures/standalone/texture_7EEB18.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEB18", "0x00000"]}},
"textures/standalone/tiny_font_minus.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEB48", "0x00000"]}},
"textures/standalone/tiny_font_comma.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEB7C", "0x00000"]}},
"textures/standalone/tiny_font_forward_slash.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEBAC", "0x00000"]}},
"textures/standalone/tiny_font_colon.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEBFC", "0x00000"]}},
"textures/standalone/texture_7EEC34.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEC34", "0x00000"]}},
"textures/standalone/tiny_font_question.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEC84", "0x00000"]}},
"textures/standalone/texture_7EECE4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EECE4", "0x00000"]}},
"textures/standalone/texture_7EED74.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EED74", "0x00000"]}},
"textures/standalone/texture_7EEDB0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEDB0", "0x00000"]}},
"textures/standalone/texture_7EEDE8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEDE8", "0x00000"]}},
"textures/standalone/texture_7EEE20.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEE20", "0x00000"]}},
"textures/standalone/texture_7EEE7C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEE7C", "0x00000"]}},
"textures/standalone/texture_7EEED0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEED0", "0x00000"]}},
"textures/standalone/texture_7EEF3C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEF3C", "0x00000"]}},
"textures/standalone/texture_7EEF90.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEF90", "0x00000"]}},
"textures/standalone/texture_7EEFF4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EEFF4", "0x00000"]}},
"textures/standalone/texture_7EF058.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF058", "0x00000"]}},
"textures/standalone/texture_7EF0B4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF0B4", "0x00000"]}},
"textures/standalone/texture_7EF110.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF110", "0x00000"]}},
"textures/standalone/texture_7EF17C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF17C", "0x00000"]}},
"textures/standalone/texture_7EF1F0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF1F0", "0x00000"]}},
"textures/standalone/texture_7EF250.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF250", "0x00000"]}},
"textures/standalone/texture_7EF2B8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF2B8", "0x00000"]}},
"textures/standalone/texture_7EF314.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF314", "0x00000"]}},
"textures/standalone/texture_7EF388.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF388", "0x00000"]}},
"textures/standalone/texture_7EF3F8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF3F8", "0x00000"]}},
"textures/standalone/texture_7EF470.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF470", "0x00000"]}},
"textures/standalone/texture_7EF4E4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF4E4", "0x00000"]}},
"textures/standalone/texture_7EF554.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF554", "0x00000"]}},
"textures/standalone/texture_7EF5C0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF5C0", "0x00000"]}},
"textures/standalone/texture_7EF620.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF620", "0x00000"]}},
"textures/standalone/texture_7EF694.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF694", "0x00000"]}},
"textures/standalone/texture_7EF708.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF708", "0x00000"]}},
"textures/standalone/texture_7EF77C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF77C", "0x00000"]}},
"textures/standalone/texture_7EF7E8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF7E8", "0x00000"]}},
"textures/standalone/texture_7EF85C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF85C", "0x00000"]}},
"textures/standalone/texture_7EF8C8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF8C8", "0x00000"]}},
"textures/standalone/texture_7EF93C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF93C", "0x00000"]}},
"textures/standalone/texture_7EF9B4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EF9B4", "0x00000"]}},
"textures/standalone/texture_7EFA2C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFA2C", "0x00000"]}},
"textures/standalone/texture_7EFAA8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFAA8", "0x00000"]}},
"textures/standalone/texture_7EFB00.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFB00", "0x00000"]}},
"textures/standalone/texture_7EFB64.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFB64", "0x00000"]}},
"textures/standalone/texture_7EFBBC.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFBBC", "0x00000"]}},
"textures/standalone/texture_7EFC30.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFC30", "0x00000"]}},
"textures/standalone/texture_7EFCAC.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFCAC", "0x00000"]}},
"textures/standalone/texture_7EFD00.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFD00", "0x00000"]}},
"textures/standalone/texture_7EFD60.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFD60", "0x00000"]}},
"textures/standalone/texture_7EFDD4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFDD4", "0x00000"]}},
"textures/standalone/texture_7EFE48.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFE48", "0x00000"]}},
"textures/standalone/texture_7EFEA0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFEA0", "0x00000"]}},
"textures/standalone/texture_7EFF2C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFF2C", "0x00000"]}},
"textures/standalone/texture_7EFF90.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7EFF90", "0x00000"]}},
"textures/standalone/texture_7F0000.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0000", "0x00000"]}},
"textures/standalone/texture_7F006C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F006C", "0x00000"]}},
"textures/standalone/texture_7F00D8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F00D8", "0x00000"]}},
"textures/standalone/texture_7F0158.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0158", "0x00000"]}},
"textures/standalone/texture_7F01D0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F01D0", "0x00000"]}},
"textures/standalone/texture_7F023C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F023C", "0x00000"]}},
"textures/standalone/texture_7F02B4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F02B4", "0x00000"]}},
"textures/standalone/texture_7F032C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F032C", "0x00000"]}},
"textures/standalone/texture_7F0390.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0390", "0x00000"]}},
"textures/standalone/texture_7F0404.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0404", "0x00000"]}},
"textures/standalone/texture_7F0470.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0470", "0x00000"]}},
"textures/standalone/texture_7F04EC.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F04EC", "0x00000"]}},
"textures/standalone/texture_7F055C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F055C", "0x00000"]}},
"textures/standalone/texture_7F05F0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F05F0", "0x00000"]}},
"textures/standalone/texture_7F0670.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0670", "0x00000"]}},
"textures/standalone/texture_7F06EC.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F06EC", "0x00000"]}},
"textures/standalone/texture_7F0768.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0768", "0x00000"]}},
"textures/standalone/texture_7F07E0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F07E0", "0x00000"]}},
"textures/standalone/texture_7F0858.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0858", "0x00000"]}},
"textures/standalone/texture_7F08D8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F08D8", "0x00000"]}},
"textures/standalone/texture_7F0948.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0948", "0x00000"]}},
"textures/standalone/texture_7F09D0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F09D0", "0x00000"]}},
"textures/standalone/texture_7F0A3C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0A3C", "0x00000"]}},
"textures/standalone/texture_7F0ABC.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0ABC", "0x00000"]}},
"textures/standalone/texture_7F0B34.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0B34", "0x00000"]}},
"textures/standalone/texture_7F0BB0.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0BB0", "0x00000"]}},
"textures/standalone/texture_7F0C24.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0C24", "0x00000"]}},
"textures/standalone/texture_7F0C94.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0C94", "0x00000"]}},
"textures/standalone/texture_7F0D0C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0D0C", "0x00000"]}},
"textures/standalone/texture_7F0D8C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0D8C", "0x00000"]}},
"textures/standalone/texture_7F0DEC.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0DEC", "0x00000"]}},
"textures/standalone/texture_7F0E5C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0E5C", "0x00000"]}},
"textures/standalone/texture_7F0EE4.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0EE4", "0x00000"]}},
"textures/standalone/texture_7F0F5C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0F5C", "0x00000"]}},
"textures/standalone/texture_7F0FD8.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F0FD8", "0x00000"]}},
"textures/standalone/texture_7F1038.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F1038", "0x00000"]}},
"textures/standalone/texture_7F109C.ia16.png": {"meta":{"dims":[8,8]}, "offsets": {"us":["0x7F109C", "0x00000"]}},
"textures/raw/7F1124.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1124", "0x0"]}},
"textures/raw/7F11F4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F11F4", "0x0"]}},
"textures/raw/7F12C4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F12C4", "0x0"]}},
"textures/raw/7F1394.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1394", "0x0"]}},
"textures/raw/7F1464.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1464", "0x0"]}},
"textures/raw/7F1534.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1534", "0x0"]}},
"textures/raw/7F1604.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1604", "0x0"]}},
"textures/raw/7F16D4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F16D4", "0x0"]}},
"textures/raw/7F17A4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F17A4", "0x0"]}},
"textures/raw/7F1874.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1874", "0x0"]}},
"textures/raw/7F1944.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1944", "0x0"]}},
"textures/raw/7F1A14.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1A14", "0x0"]}},
"textures/raw/7F1AE4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1AE4", "0x0"]}},
"textures/raw/7F1BB4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1BB4", "0x0"]}},
"textures/raw/7F1C84.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1C84", "0x0"]}},
"textures/raw/7F1D54.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1D54", "0x0"]}},
"textures/raw/7F1E24.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1E24", "0x0"]}},
"textures/raw/7F1EF4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1EF4", "0x0"]}},
"textures/raw/7F1FC4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F1FC4", "0x0"]}},
"textures/raw/7F2094.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2094", "0x0"]}},
"textures/raw/7F2164.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2164", "0x0"]}},
"textures/raw/7F2234.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2234", "0x0"]}},
"textures/raw/7F2304.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2304", "0x0"]}},
"textures/raw/7F23D4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F23D4", "0x0"]}},
"textures/raw/7F24A4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F24A4", "0x0"]}},
"textures/raw/7F2574.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2574", "0x0"]}},
"textures/raw/7F2644.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2644", "0x0"]}},
"textures/raw/7F2714.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2714", "0x0"]}},
"textures/raw/7F27E4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F27E4", "0x0"]}},
"textures/raw/7F28B4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F28B4", "0x0"]}},
"textures/raw/7F2984.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2984", "0x0"]}},
"textures/raw/7F2A54.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2A54", "0x0"]}},
"textures/raw/7F2B24.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2B24", "0x0"]}},
"textures/raw/7F2BF4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2BF4", "0x0"]}},
"textures/raw/7F2CC4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2CC4", "0x0"]}},
"textures/raw/7F2D94.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2D94", "0x0"]}},
"textures/raw/7F2E64.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2E64", "0x0"]}},
"textures/raw/7F2F34.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F2F34", "0x0"]}},
"textures/raw/7F3004.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F3004", "0x0"]}},
"textures/raw/7F30D4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F30D4", "0x0"]}},
"textures/raw/7F31A4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F31A4", "0x0"]}},
"textures/raw/7F3274.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F3274", "0x0"]}},
"textures/raw/7F3344.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F3344", "0x0"]}},
"textures/raw/7F3414.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F3414", "0x0"]}},
"textures/raw/7F34E4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F34E4", "0x0"]}},
"textures/raw/7F35B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F35B4", "0x0"]}},
"textures/raw/7F3634.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3634", "0x0"]}},
"textures/raw/7F36B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F36B4", "0x0"]}},
"textures/raw/7F3734.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3734", "0x0"]}},
"textures/raw/7F37B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F37B4", "0x0"]}},
"textures/raw/7F3834.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3834", "0x0"]}},
"textures/raw/7F38B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F38B4", "0x0"]}},
"textures/raw/7F3934.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3934", "0x0"]}},
"textures/raw/7F39B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F39B4", "0x0"]}},
"textures/raw/7F3A34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3A34", "0x0"]}},
"textures/raw/7F3AB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3AB4", "0x0"]}},
"textures/raw/7F3B34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3B34", "0x0"]}},
"textures/raw/7F3BB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3BB4", "0x0"]}},
"textures/raw/7F3C34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3C34", "0x0"]}},
"textures/raw/7F3CB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3CB4", "0x0"]}},
"textures/raw/7F3D34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3D34", "0x0"]}},
"textures/raw/7F3DB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3DB4", "0x0"]}},
"textures/raw/7F3E34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3E34", "0x0"]}},
"textures/raw/7F3EB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3EB4", "0x0"]}},
"textures/raw/7F3F34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3F34", "0x0"]}},
"textures/raw/7F3FB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F3FB4", "0x0"]}},
"textures/raw/7F4034.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4034", "0x0"]}},
"textures/raw/7F40B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F40B4", "0x0"]}},
"textures/raw/7F4134.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4134", "0x0"]}},
"textures/raw/7F41B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F41B4", "0x0"]}},
"textures/raw/7F4234.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4234", "0x0"]}},
"textures/raw/7F42B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F42B4", "0x0"]}},
"textures/raw/7F4334.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4334", "0x0"]}},
"textures/raw/7F43B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F43B4", "0x0"]}},
"textures/raw/7F4434.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4434", "0x0"]}},
"textures/raw/7F44B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F44B4", "0x0"]}},
"textures/raw/7F4534.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4534", "0x0"]}},
"textures/raw/7F45B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F45B4", "0x0"]}},
"textures/raw/7F4634.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4634", "0x0"]}},
"textures/raw/7F46B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F46B4", "0x0"]}},
"textures/raw/7F4734.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4734", "0x0"]}},
"textures/raw/7F47B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F47B4", "0x0"]}},
"textures/raw/7F4834.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4834", "0x0"]}},
"textures/raw/7F48B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F48B4", "0x0"]}},
"textures/raw/7F4934.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4934", "0x0"]}},
"textures/raw/7F49B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F49B4", "0x0"]}},
"textures/raw/7F4A34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4A34", "0x0"]}},
"textures/raw/7F4AB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4AB4", "0x0"]}},
"textures/raw/7F4B34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4B34", "0x0"]}},
"textures/raw/7F4BB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4BB4", "0x0"]}},
"textures/raw/7F4C34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4C34", "0x0"]}},
"textures/raw/7F4CB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4CB4", "0x0"]}},
"textures/raw/7F4D34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4D34", "0x0"]}},
"textures/raw/7F4DB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4DB4", "0x0"]}},
"textures/raw/7F4E34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4E34", "0x0"]}},
"textures/raw/7F4EB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4EB4", "0x0"]}},
"textures/raw/7F4F34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4F34", "0x0"]}},
"textures/raw/7F4FB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F4FB4", "0x0"]}},
"textures/raw/7F5034.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5034", "0x0"]}},
"textures/raw/7F50B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F50B4", "0x0"]}},
"textures/raw/7F5134.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5134", "0x0"]}},
"textures/raw/7F51B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F51B4", "0x0"]}},
"textures/raw/7F5234.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5234", "0x0"]}},
"textures/raw/7F52B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F52B4", "0x0"]}},
"textures/raw/7F5334.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5334", "0x0"]}},
"textures/raw/7F53B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F53B4", "0x0"]}},
"textures/raw/7F5434.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5434", "0x0"]}},
"textures/raw/7F54B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F54B4", "0x0"]}},
"textures/raw/7F5534.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5534", "0x0"]}},
"textures/raw/7F55B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F55B4", "0x0"]}},
"textures/raw/7F5634.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5634", "0x0"]}},
"textures/raw/7F56B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F56B4", "0x0"]}},
"textures/raw/7F5734.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5734", "0x0"]}},
"textures/raw/7F57B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F57B4", "0x0"]}},
"textures/raw/7F5834.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5834", "0x0"]}},
"textures/raw/7F58B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F58B4", "0x0"]}},
"textures/raw/7F5934.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5934", "0x0"]}},
"textures/raw/7F59B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F59B4", "0x0"]}},
"textures/raw/7F5A34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5A34", "0x0"]}},
"textures/raw/7F5AB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5AB4", "0x0"]}},
"textures/raw/7F5B34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5B34", "0x0"]}},
"textures/raw/7F5BB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5BB4", "0x0"]}},
"textures/raw/7F5C34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5C34", "0x0"]}},
"textures/raw/7F5CB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5CB4", "0x0"]}},
"textures/raw/7F5D34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5D34", "0x0"]}},
"textures/raw/7F5DB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5DB4", "0x0"]}},
"textures/raw/7F5E34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5E34", "0x0"]}},
"textures/raw/7F5EB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5EB4", "0x0"]}},
"textures/raw/7F5F34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5F34", "0x0"]}},
"textures/raw/7F5FB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F5FB4", "0x0"]}},
"textures/raw/7F6034.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6034", "0x0"]}},
"textures/raw/7F60B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F60B4", "0x0"]}},
"textures/raw/7F6134.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6134", "0x0"]}},
"textures/raw/7F61B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F61B4", "0x0"]}},
"textures/raw/7F6234.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6234", "0x0"]}},
"textures/raw/7F62B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F62B4", "0x0"]}},
"textures/raw/7F6334.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6334", "0x0"]}},
"textures/raw/7F63B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F63B4", "0x0"]}},
"textures/raw/7F6434.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6434", "0x0"]}},
"textures/raw/7F64B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F64B4", "0x0"]}},
"textures/raw/7F6534.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6534", "0x0"]}},
"textures/raw/7F65B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F65B4", "0x0"]}},
"textures/raw/7F6634.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6634", "0x0"]}},
"textures/raw/7F66B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F66B4", "0x0"]}},
"textures/raw/7F6734.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6734", "0x0"]}},
"textures/raw/7F67B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F67B4", "0x0"]}},
"textures/raw/7F6834.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6834", "0x0"]}},
"textures/raw/7F68B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F68B4", "0x0"]}},
"textures/raw/7F6934.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6934", "0x0"]}},
"textures/raw/7F69B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F69B4", "0x0"]}},
"textures/raw/7F6A34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6A34", "0x0"]}},
"textures/raw/7F6AB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6AB4", "0x0"]}},
"textures/raw/7F6B34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6B34", "0x0"]}},
"textures/raw/7F6BB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6BB4", "0x0"]}},
"textures/raw/7F6C34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6C34", "0x0"]}},
"textures/raw/7F6CB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6CB4", "0x0"]}},
"textures/raw/7F6D34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6D34", "0x0"]}},
"textures/raw/7F6DB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6DB4", "0x0"]}},
"textures/raw/7F6E34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6E34", "0x0"]}},
"textures/raw/7F6EB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6EB4", "0x0"]}},
"textures/raw/7F6F34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6F34", "0x0"]}},
"textures/raw/7F6FB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F6FB4", "0x0"]}},
"textures/raw/7F7034.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7034", "0x0"]}},
"textures/raw/7F70B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F70B4", "0x0"]}},
"textures/raw/7F7134.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7134", "0x0"]}},
"textures/raw/7F71B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F71B4", "0x0"]}},
"textures/raw/7F7234.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7234", "0x0"]}},
"textures/raw/7F72B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F72B4", "0x0"]}},
"textures/raw/7F7334.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7334", "0x0"]}},
"textures/raw/7F73B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F73B4", "0x0"]}},
"textures/raw/7F7434.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7434", "0x0"]}},
"textures/raw/7F74B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F74B4", "0x0"]}},
"textures/raw/7F7534.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7534", "0x0"]}},
"textures/raw/7F75B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F75B4", "0x0"]}},
"textures/raw/7F7634.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7634", "0x0"]}},
"textures/raw/7F76B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F76B4", "0x0"]}},
"textures/raw/7F7734.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7734", "0x0"]}},
"textures/raw/7F77B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F77B4", "0x0"]}},
"textures/raw/7F7834.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7834", "0x0"]}},
"textures/raw/7F78B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F78B4", "0x0"]}},
"textures/raw/7F7934.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7934", "0x0"]}},
"textures/raw/7F79B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F79B4", "0x0"]}},
"textures/raw/7F7A34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7A34", "0x0"]}},
"textures/raw/7F7AB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7AB4", "0x0"]}},
"textures/raw/7F7B34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7B34", "0x0"]}},
"textures/raw/7F7BB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7BB4", "0x0"]}},
"textures/raw/7F7C34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7C34", "0x0"]}},
"textures/raw/7F7CB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7CB4", "0x0"]}},
"textures/raw/7F7D34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7D34", "0x0"]}},
"textures/raw/7F7DB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7DB4", "0x0"]}},
"textures/raw/7F7E34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7E34", "0x0"]}},
"textures/raw/7F7EB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7EB4", "0x0"]}},
"textures/raw/7F7F34.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7F34", "0x0"]}},
"textures/raw/7F7FB4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F7FB4", "0x0"]}},
"textures/raw/7F8034.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F8034", "0x0"]}},
"textures/raw/7F80B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F80B4", "0x0"]}},
"textures/raw/7F8134.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F8134", "0x0"]}},
"textures/raw/7F81B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F81B4", "0x0"]}},
"textures/raw/7F8234.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F8234", "0x0"]}},
"textures/raw/7F82B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F82B4", "0x0"]}},
"textures/raw/7F8334.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F8334", "0x0"]}},
"textures/raw/7F83B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F83B4", "0x0"]}},
"textures/raw/7F8434.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F8434", "0x0"]}},
"textures/raw/7F84B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F84B4", "0x0"]}},
"textures/raw/7F8534.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F8534", "0x0"]}},
"textures/raw/7F85B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F85B4", "0x0"]}},
"textures/raw/7F8634.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F8634", "0x0"]}},
"textures/raw/7F86B4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F86B4", "0x0"]}},
"textures/raw/7F8734.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F8734", "0x0"]}},
"textures/raw/7F8914.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F8914", "0x0"]}},
"textures/raw/7F8AF4.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F8AF4", "0x0"]}},
"textures/raw/7F8CD4.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F8CD4", "0x0"]}},
"textures/raw/7F8EB4.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F8EB4", "0x0"]}},
"textures/raw/7F9094.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F9094", "0x0"]}},
"textures/raw/7F9274.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F9274", "0x0"]}},
"textures/raw/7F9454.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F9454", "0x0"]}},
"textures/raw/7F9634.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F9634", "0x0"]}},
"textures/raw/7F9814.i4.png": {"meta":{"dims":[30,32]}, "offsets": {"us":["0x7F9814", "0x0"]}},
"textures/raw/7F99F4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F99F4", "0x0"]}},
"textures/raw/7F9A74.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9A74", "0x0"]}},
"textures/raw/7F9AF4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9AF4", "0x0"]}},
"textures/raw/7F9B74.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9B74", "0x0"]}},
"textures/raw/7F9BF4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9BF4", "0x0"]}},
"textures/raw/7F9C74.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9C74", "0x0"]}},
"textures/raw/7F9CF4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7F9CF4", "0x0"]}},
"textures/raw/7F9DC4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9DC4", "0x0"]}},
"textures/raw/7F9E44.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9E44", "0x0"]}},
"textures/raw/7F9EC4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9EC4", "0x0"]}},
"textures/raw/7F9F44.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9F44", "0x0"]}},
"textures/raw/7F9FC4.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7F9FC4", "0x0"]}},
"textures/raw/7FA044.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7FA044", "0x0"]}},
"textures/raw/7FA0C4.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7FA0C4", "0x0"]}},
"textures/raw/7FA194.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7FA194", "0x0"]}},
"textures/raw/7FA264.i4.png": {"meta":{"dims":[26,16]}, "offsets": {"us":["0x7FA264", "0x0"]}},
"textures/raw/7FA334.i4.png": {"meta":{"dims":[16,16]}, "offsets": {"us":["0x7FA334", "0x0"]}},
"textures/gTexturePlayerSelect.rgba16.png": {"meta":{"dims":[220,32], "alpha":"0x01"}, "offsets": {"us":["0x7FA3C0", "0x0"]}},
"textures/gTextureOption.rgba16.png": {"meta":{"dims":[130,32], "alpha":"0x01"}, "offsets": {"us":["0x7FAFC0", "0x0"]}},
"textures/gTextureNameDK.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FB8C0", "0x0"]}},
"textures/gTextureNameToad.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FBAC0", "0x0"]}},
"textures/gTextureNameBowser.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FBCC0", "0x0"]}},
"textures/gTextureNameLuigi.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FBEC0", "0x0"]}},
"textures/gTextureNameMario.rgba16.png": {"meta":{"dims":[64,12], "alpha":"0x01"}, "offsets": {"us":["0x7FC0C0", "0x0"]}},