blob: da09990fd2d6831bc2653db53810255854a37d10 (
plain)
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
|
#pragma once
#include "gfx.h"
#include "sf64object.h"
static const ALIGN_ASSET(2) char aTitleStarfoxLogoTex[] = "__OTR__ast_title/aTitleStarfoxLogoTex";
static const ALIGN_ASSET(2) char aTitleN64LogoTex[] = "__OTR__ast_title/aTitleN64LogoTex";
static const ALIGN_ASSET(2) char gTitleRadioStatic[] = "__OTR__ast_title/gTitleRadioStatic";
static const ALIGN_ASSET(2) char aTitleSunGlareTex[] = "__OTR__ast_title/aTitleSunGlareTex";
static const ALIGN_ASSET(2) char a1997NintendoTex[] = "__OTR__ast_title/a1997NintendoTex";
static const ALIGN_ASSET(2) char aTitlePressStartTex[] = "__OTR__ast_title/aTitlePressStartTex";
static const ALIGN_ASSET(2) char aTitleGreatFoxCardTex[] = "__OTR__ast_title/aTitleGreatFoxCardTex";
static const ALIGN_ASSET(2) char gTitleSlippyCard[] = "__OTR__ast_title/gTitleSlippyCard";
static const ALIGN_ASSET(2) char gTitlePeppyCard[] = "__OTR__ast_title/gTitlePeppyCard";
static const ALIGN_ASSET(2) char gTitleFalcoCard[] = "__OTR__ast_title/gTitleFalcoCard";
static const ALIGN_ASSET(2) char gTitleFoxCard[] = "__OTR__ast_title/gTitleFoxCard";
static const ALIGN_ASSET(2) char aTitleArwingCardTex[] = "__OTR__ast_title/aTitleArwingCardTex";
static const ALIGN_ASSET(2) char aTitleNoControllerTex[] = "__OTR__ast_title/aTitleNoControllerTex";
static const ALIGN_ASSET(2) char aTitleCopyrightTex[] = "__OTR__ast_title/aTitleCopyrightTex";
static const ALIGN_ASSET(2) char gTitleUnusedNintendoCopyright[] = "__OTR__ast_title/gTitleUnusedNintendoCopyright";
static const ALIGN_ASSET(2) char aIntroStarfoxLogoTex[] = "__OTR__ast_title/aIntroStarfoxLogoTex";
static const ALIGN_ASSET(2) char aIntroStarfoxLogoTLUT[] = "__OTR__ast_title/aIntroStarfoxLogoTLUT";
static const ALIGN_ASSET(2) char aIntroInTex[] = "__OTR__ast_title/aIntroInTex";
static const ALIGN_ASSET(2) char aIntroInTLUT[] = "__OTR__ast_title/aIntroInTLUT";
static const ALIGN_ASSET(2) char a64LogoDL[] = "__OTR__ast_title/a64LogoDL";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14C28[] = "__OTR__ast_title/ast_title_seg6_vtx_14C28";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14C68[] = "__OTR__ast_title/ast_title_seg6_vtx_14C68";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14CA8[] = "__OTR__ast_title/ast_title_seg6_vtx_14CA8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14CE8[] = "__OTR__ast_title/ast_title_seg6_vtx_14CE8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14D28[] = "__OTR__ast_title/ast_title_seg6_vtx_14D28";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14D68[] = "__OTR__ast_title/ast_title_seg6_vtx_14D68";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14DA8[] = "__OTR__ast_title/ast_title_seg6_vtx_14DA8";
static const ALIGN_ASSET(2) char a64Logo1Tex[] = "__OTR__ast_title/a64Logo1Tex";
static const ALIGN_ASSET(2) char a64Logo1TLUT[] = "__OTR__ast_title/a64Logo1TLUT";
static const ALIGN_ASSET(2) char a64Logo2Tex[] = "__OTR__ast_title/a64Logo2Tex";
static const ALIGN_ASSET(2) char a64Logo2TLUT[] = "__OTR__ast_title/a64Logo2TLUT";
static const ALIGN_ASSET(2) char a64Logo3Tex[] = "__OTR__ast_title/a64Logo3Tex";
static const ALIGN_ASSET(2) char a64Logo3TLUT[] = "__OTR__ast_title/a64Logo3TLUT";
static const ALIGN_ASSET(2) char a64Logo4Tex[] = "__OTR__ast_title/a64Logo4Tex";
static const ALIGN_ASSET(2) char a64Logo4TLUT[] = "__OTR__ast_title/a64Logo4TLUT";
static const ALIGN_ASSET(2) char a64Logo5Tex[] = "__OTR__ast_title/a64Logo5Tex";
static const ALIGN_ASSET(2) char a64Logo5TLUT[] = "__OTR__ast_title/a64Logo5TLUT";
static const ALIGN_ASSET(2) char a64Logo6Tex[] = "__OTR__ast_title/a64Logo6Tex";
static const ALIGN_ASSET(2) char a64Logo6TLUT[] = "__OTR__ast_title/a64Logo6TLUT";
static const ALIGN_ASSET(2) char a64Logo7Tex[] = "__OTR__ast_title/a64Logo7Tex";
static const ALIGN_ASSET(2) char a64Logo7TLUT[] = "__OTR__ast_title/a64Logo7TLUT";
static const ALIGN_ASSET(2) char aTitleGreatFoxDeckDL[] = "__OTR__ast_title/aTitleGreatFoxDeckDL";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19040[] = "__OTR__ast_title/ast_title_seg6_vtx_19040";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19080[] = "__OTR__ast_title/ast_title_seg6_vtx_19080";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_190C0[] = "__OTR__ast_title/ast_title_seg6_vtx_190C0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19100[] = "__OTR__ast_title/ast_title_seg6_vtx_19100";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19140[] = "__OTR__ast_title/ast_title_seg6_vtx_19140";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19340[] = "__OTR__ast_title/ast_title_seg6_vtx_19340";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19440[] = "__OTR__ast_title/ast_title_seg6_vtx_19440";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19480[] = "__OTR__ast_title/ast_title_seg6_vtx_19480";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_194C0[] = "__OTR__ast_title/ast_title_seg6_vtx_194C0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19500[] = "__OTR__ast_title/ast_title_seg6_vtx_19500";
static const ALIGN_ASSET(2) char D_TITLE_60195C0[] = "__OTR__ast_title/D_TITLE_60195C0";
static const ALIGN_ASSET(2) char D_TITLE_6019DC0[] = "__OTR__ast_title/D_TITLE_6019DC0";
static const ALIGN_ASSET(2) char D_TITLE_601A5C0[] = "__OTR__ast_title/D_TITLE_601A5C0";
static const ALIGN_ASSET(2) char D_TITLE_601B5C0[] = "__OTR__ast_title/D_TITLE_601B5C0";
static const ALIGN_ASSET(2) char D_TITLE_601B7C0[] = "__OTR__ast_title/D_TITLE_601B7C0";
static const ALIGN_ASSET(2) char aTitleCsPassageWayWallTex[] = "__OTR__ast_title/aTitleCsPassageWayWallTex";
static const ALIGN_ASSET(2) char aTitleGreatFoxDeckLauncherDL[] = "__OTR__ast_title/aTitleGreatFoxDeckLauncherDL";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1C950[] = "__OTR__ast_title/ast_title_seg6_vtx_1C950";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1C990[] = "__OTR__ast_title/ast_title_seg6_vtx_1C990";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1CB10[] = "__OTR__ast_title/ast_title_seg6_vtx_1CB10";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1CC90[] = "__OTR__ast_title/ast_title_seg6_vtx_1CC90";
static const ALIGN_ASSET(2) char D_TITLE_601CCD0[] = "__OTR__ast_title/D_TITLE_601CCD0";
static const ALIGN_ASSET(2) char D_TITLE_601CED0[] = "__OTR__ast_title/D_TITLE_601CED0";
static const ALIGN_ASSET(2) char D_TITLE_601CF50[] = "__OTR__ast_title/D_TITLE_601CF50";
static const ALIGN_ASSET(2) char aNoControllerBgTex[] = "__OTR__ast_title/aNoControllerBgTex";
static const ALIGN_ASSET(2) char aNoControllerBgTLUT[] = "__OTR__ast_title/aNoControllerBgTLUT";
static const ALIGN_ASSET(2) char D_TITLE_601E424[] = "__OTR__ast_title/D_TITLE_601E424";
static const ALIGN_ASSET(2) char D_TITLE_601E430[] = "__OTR__ast_title/D_TITLE_601E430";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E530[] = "__OTR__ast_title/ast_title_seg6_vtx_1E530";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E5B0[] = "__OTR__ast_title/ast_title_seg6_vtx_1E5B0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E650[] = "__OTR__ast_title/ast_title_seg6_vtx_1E650";
static const ALIGN_ASSET(2) char D_TITLE_601E720[] = "__OTR__ast_title/D_TITLE_601E720";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E820[] = "__OTR__ast_title/ast_title_seg6_vtx_1E820";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E900[] = "__OTR__ast_title/ast_title_seg6_vtx_1E900";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E9C0[] = "__OTR__ast_title/ast_title_seg6_vtx_1E9C0";
static const ALIGN_ASSET(2) char D_TITLE_601EA00[] = "__OTR__ast_title/D_TITLE_601EA00";
static const ALIGN_ASSET(2) char D_TITLE_601F200[] = "__OTR__ast_title/D_TITLE_601F200";
static const ALIGN_ASSET(2) char D_TITLE_601F400[] = "__OTR__ast_title/D_TITLE_601F400";
static const ALIGN_ASSET(2) char D_TITLE_601F8E0[] = "__OTR__ast_title/D_TITLE_601F8E0";
static const ALIGN_ASSET(2) char D_TITLE_6020058[] = "__OTR__ast_title/D_TITLE_6020058";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_20070[] = "__OTR__ast_title/ast_title_seg6_gfx_20070";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20528[] = "__OTR__ast_title/ast_title_seg6_vtx_20528";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20588[] = "__OTR__ast_title/ast_title_seg6_vtx_20588";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20728[] = "__OTR__ast_title/ast_title_seg6_vtx_20728";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20928[] = "__OTR__ast_title/ast_title_seg6_vtx_20928";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20AC8[] = "__OTR__ast_title/ast_title_seg6_vtx_20AC8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20C38[] = "__OTR__ast_title/ast_title_seg6_vtx_20C38";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20E38[] = "__OTR__ast_title/ast_title_seg6_vtx_20E38";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21018[] = "__OTR__ast_title/ast_title_seg6_vtx_21018";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_210B8[] = "__OTR__ast_title/ast_title_seg6_vtx_210B8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_212A8[] = "__OTR__ast_title/ast_title_seg6_vtx_212A8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21498[] = "__OTR__ast_title/ast_title_seg6_vtx_21498";
static const ALIGN_ASSET(2) char D_TITLE_60214F8[] = "__OTR__ast_title/D_TITLE_60214F8";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_21700[] = "__OTR__ast_title/ast_title_seg6_gfx_21700";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21940[] = "__OTR__ast_title/ast_title_seg6_vtx_21940";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21A00[] = "__OTR__ast_title/ast_title_seg6_vtx_21A00";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21A60[] = "__OTR__ast_title/ast_title_seg6_vtx_21A60";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21C50[] = "__OTR__ast_title/ast_title_seg6_vtx_21C50";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21CC0[] = "__OTR__ast_title/ast_title_seg6_vtx_21CC0";
static const ALIGN_ASSET(2) char D_TITLE_6021D10[] = "__OTR__ast_title/D_TITLE_6021D10";
static const ALIGN_ASSET(2) char D_TITLE_6021F10[] = "__OTR__ast_title/D_TITLE_6021F10";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_22110[] = "__OTR__ast_title/ast_title_seg6_gfx_22110";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22178[] = "__OTR__ast_title/ast_title_seg6_vtx_22178";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_222A0[] = "__OTR__ast_title/ast_title_seg6_gfx_222A0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22308[] = "__OTR__ast_title/ast_title_seg6_vtx_22308";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_22440[] = "__OTR__ast_title/ast_title_seg6_gfx_22440";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22600[] = "__OTR__ast_title/ast_title_seg6_vtx_22600";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22800[] = "__OTR__ast_title/ast_title_seg6_vtx_22800";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_229F0[] = "__OTR__ast_title/ast_title_seg6_vtx_229F0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22A70[] = "__OTR__ast_title/ast_title_seg6_vtx_22A70";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22AF0[] = "__OTR__ast_title/ast_title_seg6_vtx_22AF0";
static const ALIGN_ASSET(2) char D_TITLE_6022B40[] = "__OTR__ast_title/D_TITLE_6022B40";
static const ALIGN_ASSET(2) char D_TITLE_6023340[] = "__OTR__ast_title/D_TITLE_6023340";
static const ALIGN_ASSET(2) char D_TITLE_6023B40[] = "__OTR__ast_title/D_TITLE_6023B40";
static const ALIGN_ASSET(2) char D_TITLE_6024340[] = "__OTR__ast_title/D_TITLE_6024340";
static const ALIGN_ASSET(2) char D_TITLE_60246F8[] = "__OTR__ast_title/D_TITLE_60246F8";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_24710[] = "__OTR__ast_title/ast_title_seg6_gfx_24710";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_24B58[] = "__OTR__ast_title/ast_title_seg6_vtx_24B58";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_24C18[] = "__OTR__ast_title/ast_title_seg6_vtx_24C18";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_24D38[] = "__OTR__ast_title/ast_title_seg6_vtx_24D38";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_24F38[] = "__OTR__ast_title/ast_title_seg6_vtx_24F38";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_25078[] = "__OTR__ast_title/ast_title_seg6_vtx_25078";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_25268[] = "__OTR__ast_title/ast_title_seg6_vtx_25268";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_25458[] = "__OTR__ast_title/ast_title_seg6_vtx_25458";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_254F8[] = "__OTR__ast_title/ast_title_seg6_vtx_254F8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_255D8[] = "__OTR__ast_title/ast_title_seg6_vtx_255D8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_25658[] = "__OTR__ast_title/ast_title_seg6_vtx_25658";
static const ALIGN_ASSET(2) char D_TITLE_60257A8[] = "__OTR__ast_title/D_TITLE_60257A8";
static const ALIGN_ASSET(2) char D_TITLE_60259A8[] = "__OTR__ast_title/D_TITLE_60259A8";
static const ALIGN_ASSET(2) char D_TITLE_6025BA8[] = "__OTR__ast_title/D_TITLE_6025BA8";
static const ALIGN_ASSET(2) char D_TITLE_6025DA8[] = "__OTR__ast_title/D_TITLE_6025DA8";
static const ALIGN_ASSET(2) char D_TITLE_6025FA8[] = "__OTR__ast_title/D_TITLE_6025FA8";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_267B0[] = "__OTR__ast_title/ast_title_seg6_gfx_267B0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_26968[] = "__OTR__ast_title/ast_title_seg6_vtx_26968";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_26B68[] = "__OTR__ast_title/ast_title_seg6_vtx_26B68";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_26C58[] = "__OTR__ast_title/ast_title_seg6_vtx_26C58";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_26CC8[] = "__OTR__ast_title/ast_title_seg6_vtx_26CC8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_26CF8[] = "__OTR__ast_title/ast_title_seg6_vtx_26CF8";
static const ALIGN_ASSET(2) char D_TITLE_6026D28[] = "__OTR__ast_title/D_TITLE_6026D28";
static const ALIGN_ASSET(2) char D_TITLE_6026F28[] = "__OTR__ast_title/D_TITLE_6026F28";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_27130[] = "__OTR__ast_title/ast_title_seg6_gfx_27130";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_275E8[] = "__OTR__ast_title/ast_title_seg6_vtx_275E8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_277D8[] = "__OTR__ast_title/ast_title_seg6_vtx_277D8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_279D8[] = "__OTR__ast_title/ast_title_seg6_vtx_279D8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_27BD8[] = "__OTR__ast_title/ast_title_seg6_vtx_27BD8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_27C98[] = "__OTR__ast_title/ast_title_seg6_vtx_27C98";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_27CF8[] = "__OTR__ast_title/ast_title_seg6_vtx_27CF8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_27E88[] = "__OTR__ast_title/ast_title_seg6_vtx_27E88";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_27FD8[] = "__OTR__ast_title/ast_title_seg6_vtx_27FD8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_28018[] = "__OTR__ast_title/ast_title_seg6_vtx_28018";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_28218[] = "__OTR__ast_title/ast_title_seg6_vtx_28218";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_28418[] = "__OTR__ast_title/ast_title_seg6_vtx_28418";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_284A8[] = "__OTR__ast_title/ast_title_seg6_vtx_284A8";
static const ALIGN_ASSET(2) char D_TITLE_6028508[] = "__OTR__ast_title/D_TITLE_6028508";
static const ALIGN_ASSET(2) char D_TITLE_6028708[] = "__OTR__ast_title/D_TITLE_6028708";
static const ALIGN_ASSET(2) char D_TITLE_6028788[] = "__OTR__ast_title/D_TITLE_6028788";
static const ALIGN_ASSET(2) char D_TITLE_6028988[] = "__OTR__ast_title/D_TITLE_6028988";
static const ALIGN_ASSET(2) char D_TITLE_6028A08[] = "__OTR__ast_title/D_TITLE_6028A08";
static const ALIGN_ASSET(2) char D_TITLE_6028C08[] = "__OTR__ast_title/D_TITLE_6028C08";
static const ALIGN_ASSET(2) char D_TITLE_6029BE4[] = "__OTR__ast_title/D_TITLE_6029BE4";
static const ALIGN_ASSET(2) char D_TITLE_602A710[] = "__OTR__ast_title/D_TITLE_602A710";
static const ALIGN_ASSET(2) char aTitleGreatFoxDeckPlatformDL[] = "__OTR__ast_title/aTitleGreatFoxDeckPlatformDL";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2A800[] = "__OTR__ast_title/ast_title_seg6_vtx_2A800";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2A840[] = "__OTR__ast_title/ast_title_seg6_vtx_2A840";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2A880[] = "__OTR__ast_title/ast_title_seg6_vtx_2A880";
static const ALIGN_ASSET(2) char aTitleCsPassageWayCeilingTex[] = "__OTR__ast_title/aTitleCsPassageWayCeilingTex";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2B0C0[] = "__OTR__ast_title/ast_title_seg6_gfx_2B0C0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B1E0[] = "__OTR__ast_title/ast_title_seg6_vtx_2B1E0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B260[] = "__OTR__ast_title/ast_title_seg6_vtx_2B260";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2B420[] = "__OTR__ast_title/ast_title_seg6_gfx_2B420";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B5D8[] = "__OTR__ast_title/ast_title_seg6_vtx_2B5D8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B748[] = "__OTR__ast_title/ast_title_seg6_vtx_2B748";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B798[] = "__OTR__ast_title/ast_title_seg6_vtx_2B798";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B818[] = "__OTR__ast_title/ast_title_seg6_vtx_2B818";
static const ALIGN_ASSET(2) char D_TITLE_602B8C0[] = "__OTR__ast_title/D_TITLE_602B8C0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B9C0[] = "__OTR__ast_title/ast_title_seg6_vtx_2B9C0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2BA40[] = "__OTR__ast_title/ast_title_seg6_vtx_2BA40";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2BB60[] = "__OTR__ast_title/ast_title_seg6_vtx_2BB60";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2BBA0[] = "__OTR__ast_title/ast_title_seg6_gfx_2BBA0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2BC60[] = "__OTR__ast_title/ast_title_seg6_vtx_2BC60";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2BD60[] = "__OTR__ast_title/ast_title_seg6_gfx_2BD60";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2BE20[] = "__OTR__ast_title/ast_title_seg6_vtx_2BE20";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2BE80[] = "__OTR__ast_title/ast_title_seg6_vtx_2BE80";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2BF20[] = "__OTR__ast_title/ast_title_seg6_gfx_2BF20";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C008[] = "__OTR__ast_title/ast_title_seg6_vtx_2C008";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C068[] = "__OTR__ast_title/ast_title_seg6_vtx_2C068";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2C170[] = "__OTR__ast_title/ast_title_seg6_gfx_2C170";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C250[] = "__OTR__ast_title/ast_title_seg6_vtx_2C250";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C350[] = "__OTR__ast_title/ast_title_seg6_vtx_2C350";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2C390[] = "__OTR__ast_title/ast_title_seg6_gfx_2C390";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C420[] = "__OTR__ast_title/ast_title_seg6_vtx_2C420";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2C4B0[] = "__OTR__ast_title/ast_title_seg6_gfx_2C4B0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C9B0[] = "__OTR__ast_title/ast_title_seg6_vtx_2C9B0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2CA10[] = "__OTR__ast_title/ast_title_seg6_vtx_2CA10";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2CB30[] = "__OTR__ast_title/ast_title_seg6_vtx_2CB30";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2CCD0[] = "__OTR__ast_title/ast_title_seg6_vtx_2CCD0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2CEB0[] = "__OTR__ast_title/ast_title_seg6_vtx_2CEB0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D0B0[] = "__OTR__ast_title/ast_title_seg6_vtx_2D0B0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D1B0[] = "__OTR__ast_title/ast_title_seg6_vtx_2D1B0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D210[] = "__OTR__ast_title/ast_title_seg6_vtx_2D210";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D400[] = "__OTR__ast_title/ast_title_seg6_vtx_2D400";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D600[] = "__OTR__ast_title/ast_title_seg6_vtx_2D600";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D800[] = "__OTR__ast_title/ast_title_seg6_vtx_2D800";
static const ALIGN_ASSET(2) char D_TITLE_602D930[] = "__OTR__ast_title/D_TITLE_602D930";
static const ALIGN_ASSET(2) char D_TITLE_602DB30[] = "__OTR__ast_title/D_TITLE_602DB30";
static const ALIGN_ASSET(2) char D_TITLE_602DD30[] = "__OTR__ast_title/D_TITLE_602DD30";
static const ALIGN_ASSET(2) char D_TITLE_602DF30[] = "__OTR__ast_title/D_TITLE_602DF30";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2E130[] = "__OTR__ast_title/ast_title_seg6_gfx_2E130";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2E238[] = "__OTR__ast_title/ast_title_seg6_vtx_2E238";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2E2B8[] = "__OTR__ast_title/ast_title_seg6_vtx_2E2B8";
static const ALIGN_ASSET(2) char aTitleCsPassageWayDL[] = "__OTR__ast_title/aTitleCsPassageWayDL";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2E450[] = "__OTR__ast_title/ast_title_seg6_vtx_2E450";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2E490[] = "__OTR__ast_title/ast_title_seg6_vtx_2E490";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2E4D0[] = "__OTR__ast_title/ast_title_seg6_vtx_2E4D0";
static const ALIGN_ASSET(2) char aTitleCsPassageWayFloorTex[] = "__OTR__ast_title/aTitleCsPassageWayFloorTex";
static const ALIGN_ASSET(2) char aFoxRunningAnim[] = "__OTR__ast_title/aFoxRunningAnim";
static const ALIGN_ASSET(2) char aFoxSkel[] = "__OTR__ast_title/aFoxSkel";
static const ALIGN_ASSET(2) char aFalcoRunningAnim[] = "__OTR__ast_title/aFalcoRunningAnim";
static const ALIGN_ASSET(2) char aFalcoSkel[] = "__OTR__ast_title/aFalcoSkel";
static const ALIGN_ASSET(2) char aSlippyRunningAnim[] = "__OTR__ast_title/aSlippyRunningAnim";
static const ALIGN_ASSET(2) char aSlippySkel[] = "__OTR__ast_title/aSlippySkel";
static const ALIGN_ASSET(2) char aPeppyRunningAnim[] = "__OTR__ast_title/aPeppyRunningAnim";
static const ALIGN_ASSET(2) char aPeppySkel[] = "__OTR__ast_title/aPeppySkel";
static const ALIGN_ASSET(2) char aTitleArwingEngineGlowDL[] = "__OTR__ast_title/aTitleArwingEngineGlowDL";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_32138[] = "__OTR__ast_title/ast_title_seg6_vtx_32138";
static const ALIGN_ASSET(2) char aTitleArwingEngineGlowTex[] = "__OTR__ast_title/aTitleArwingEngineGlowTex";
static const ALIGN_ASSET(2) char aTitleArwingShadowDL[] = "__OTR__ast_title/aTitleArwingShadowDL";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_325D8[] = "__OTR__ast_title/ast_title_seg6_vtx_325D8";
static const ALIGN_ASSET(2) char aTitleArwingShadowTex[] = "__OTR__ast_title/aTitleArwingShadowTex";
static const ALIGN_ASSET(2) char aFalcoAnim[] = "__OTR__ast_title/aFalcoAnim";
static const ALIGN_ASSET(2) char aFoxAnim[] = "__OTR__ast_title/aFoxAnim";
static const ALIGN_ASSET(2) char aPeppyAnim[] = "__OTR__ast_title/aPeppyAnim";
static const ALIGN_ASSET(2) char aSlippyAnim[] = "__OTR__ast_title/aSlippyAnim";
static const ALIGN_ASSET(2) char D_TITLE_6036290[] = "__OTR__ast_title/D_TITLE_6036290";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_362E8[] = "__OTR__ast_title/ast_title_seg6_vtx_362E8";
static const ALIGN_ASSET(2) char D_TITLE_6036328[] = "__OTR__ast_title/D_TITLE_6036328";
static const ALIGN_ASSET(2) char D_TITLE_6036B30[] = "__OTR__ast_title/D_TITLE_6036B30";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_36B88[] = "__OTR__ast_title/ast_title_seg6_vtx_36B88";
static const ALIGN_ASSET(2) char D_TITLE_6036BC8[] = "__OTR__ast_title/D_TITLE_6036BC8";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_373D0[] = "__OTR__ast_title/ast_title_seg6_gfx_373D0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37458[] = "__OTR__ast_title/ast_title_seg6_vtx_37458";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_374F0[] = "__OTR__ast_title/ast_title_seg6_gfx_374F0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37548[] = "__OTR__ast_title/ast_title_seg6_vtx_37548";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_375B0[] = "__OTR__ast_title/ast_title_seg6_gfx_375B0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37670[] = "__OTR__ast_title/ast_title_seg6_vtx_37670";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_37770[] = "__OTR__ast_title/ast_title_seg6_gfx_37770";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_377E0[] = "__OTR__ast_title/ast_title_seg6_vtx_377E0";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_37840[] = "__OTR__ast_title/ast_title_seg6_gfx_37840";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_378D0[] = "__OTR__ast_title/ast_title_seg6_vtx_378D0";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_37970[] = "__OTR__ast_title/ast_title_seg6_gfx_37970";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37A00[] = "__OTR__ast_title/ast_title_seg6_vtx_37A00";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_37AA0[] = "__OTR__ast_title/ast_title_seg6_gfx_37AA0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37BA8[] = "__OTR__ast_title/ast_title_seg6_vtx_37BA8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37C28[] = "__OTR__ast_title/ast_title_seg6_vtx_37C28";
static const ALIGN_ASSET(2) char aPlanetCorneriaDL[] = "__OTR__ast_title/aPlanetCorneriaDL";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37ED0[] = "__OTR__ast_title/ast_title_seg6_vtx_37ED0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37F10[] = "__OTR__ast_title/ast_title_seg6_vtx_37F10";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37F50[] = "__OTR__ast_title/ast_title_seg6_vtx_37F50";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37F90[] = "__OTR__ast_title/ast_title_seg6_vtx_37F90";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37FD0[] = "__OTR__ast_title/ast_title_seg6_vtx_37FD0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_38010[] = "__OTR__ast_title/ast_title_seg6_vtx_38010";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_38050[] = "__OTR__ast_title/ast_title_seg6_vtx_38050";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_38090[] = "__OTR__ast_title/ast_title_seg6_vtx_38090";
static const ALIGN_ASSET(2) char D_TITLE_60380D0[] = "__OTR__ast_title/D_TITLE_60380D0";
static const ALIGN_ASSET(2) char D_TITLE_60390D0[] = "__OTR__ast_title/D_TITLE_60390D0";
static const ALIGN_ASSET(2) char D_TITLE_603A0D0[] = "__OTR__ast_title/D_TITLE_603A0D0";
static const ALIGN_ASSET(2) char D_TITLE_603B0D0[] = "__OTR__ast_title/D_TITLE_603B0D0";
static const ALIGN_ASSET(2) char D_TITLE_603C0D0[] = "__OTR__ast_title/D_TITLE_603C0D0";
static const ALIGN_ASSET(2) char D_TITLE_603D0D0[] = "__OTR__ast_title/D_TITLE_603D0D0";
static const ALIGN_ASSET(2) char D_TITLE_603E0D0[] = "__OTR__ast_title/D_TITLE_603E0D0";
static const ALIGN_ASSET(2) char D_TITLE_603F0D0[] = "__OTR__ast_title/D_TITLE_603F0D0";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_400D0[] = "__OTR__ast_title/ast_title_seg6_gfx_400D0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40158[] = "__OTR__ast_title/ast_title_seg6_vtx_40158";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_401E0[] = "__OTR__ast_title/ast_title_seg6_gfx_401E0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40250[] = "__OTR__ast_title/ast_title_seg6_vtx_40250";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_402B0[] = "__OTR__ast_title/ast_title_seg6_gfx_402B0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40380[] = "__OTR__ast_title/ast_title_seg6_vtx_40380";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_404D0[] = "__OTR__ast_title/ast_title_seg6_gfx_404D0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_405A8[] = "__OTR__ast_title/ast_title_seg6_vtx_405A8";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_406F0[] = "__OTR__ast_title/ast_title_seg6_gfx_406F0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40760[] = "__OTR__ast_title/ast_title_seg6_vtx_40760";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_407C0[] = "__OTR__ast_title/ast_title_seg6_gfx_407C0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40840[] = "__OTR__ast_title/ast_title_seg6_vtx_40840";
static const ALIGN_ASSET(2) char D_TITLE_60408C0[] = "__OTR__ast_title/D_TITLE_60408C0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_409C0[] = "__OTR__ast_title/ast_title_seg6_vtx_409C0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40A40[] = "__OTR__ast_title/ast_title_seg6_vtx_40A40";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40AC0[] = "__OTR__ast_title/ast_title_seg6_vtx_40AC0";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_40B90[] = "__OTR__ast_title/ast_title_seg6_gfx_40B90";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40C10[] = "__OTR__ast_title/ast_title_seg6_vtx_40C10";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_40CA0[] = "__OTR__ast_title/ast_title_seg6_gfx_40CA0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40D40[] = "__OTR__ast_title/ast_title_seg6_vtx_40D40";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_40E00[] = "__OTR__ast_title/ast_title_seg6_gfx_40E00";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40EA0[] = "__OTR__ast_title/ast_title_seg6_vtx_40EA0";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_40F60[] = "__OTR__ast_title/ast_title_seg6_gfx_40F60";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40FE0[] = "__OTR__ast_title/ast_title_seg6_vtx_40FE0";
static const ALIGN_ASSET(2) char aTeamShadowDL[] = "__OTR__ast_title/aTeamShadowDL";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_410C8[] = "__OTR__ast_title/ast_title_seg6_vtx_410C8";
static const ALIGN_ASSET(2) char D_TITLE_60410F8[] = "__OTR__ast_title/D_TITLE_60410F8";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_41900[] = "__OTR__ast_title/ast_title_seg6_gfx_41900";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_41990[] = "__OTR__ast_title/ast_title_seg6_vtx_41990";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_41A20[] = "__OTR__ast_title/ast_title_seg6_gfx_41A20";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_41A90[] = "__OTR__ast_title/ast_title_seg6_vtx_41A90";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_41AF0[] = "__OTR__ast_title/ast_title_seg6_gfx_41AF0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_41B70[] = "__OTR__ast_title/ast_title_seg6_vtx_41B70";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_41BF0[] = "__OTR__ast_title/ast_title_seg6_gfx_41BF0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_41C70[] = "__OTR__ast_title/ast_title_seg6_vtx_41C70";
static const ALIGN_ASSET(2) char D_TITLE_6041CF0[] = "__OTR__ast_title/D_TITLE_6041CF0";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_424F0[] = "__OTR__ast_title/ast_title_seg6_gfx_424F0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42560[] = "__OTR__ast_title/ast_title_seg6_vtx_42560";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_425C0[] = "__OTR__ast_title/ast_title_seg6_gfx_425C0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42650[] = "__OTR__ast_title/ast_title_seg6_vtx_42650";
static const ALIGN_ASSET(2) char D_TITLE_60426E0[] = "__OTR__ast_title/D_TITLE_60426E0";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_428E0[] = "__OTR__ast_title/ast_title_seg6_gfx_428E0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42A78[] = "__OTR__ast_title/ast_title_seg6_vtx_42A78";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42AD8[] = "__OTR__ast_title/ast_title_seg6_vtx_42AD8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42B28[] = "__OTR__ast_title/ast_title_seg6_vtx_42B28";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42B98[] = "__OTR__ast_title/ast_title_seg6_vtx_42B98";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_42D70[] = "__OTR__ast_title/ast_title_seg6_gfx_42D70";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42DF8[] = "__OTR__ast_title/ast_title_seg6_vtx_42DF8";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_42EA0[] = "__OTR__ast_title/ast_title_seg6_gfx_42EA0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42F88[] = "__OTR__ast_title/ast_title_seg6_vtx_42F88";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43078[] = "__OTR__ast_title/ast_title_seg6_vtx_43078";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_430F0[] = "__OTR__ast_title/ast_title_seg6_gfx_430F0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_431D8[] = "__OTR__ast_title/ast_title_seg6_vtx_431D8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_432C8[] = "__OTR__ast_title/ast_title_seg6_vtx_432C8";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43340[] = "__OTR__ast_title/ast_title_seg6_gfx_43340";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_433C0[] = "__OTR__ast_title/ast_title_seg6_vtx_433C0";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43460[] = "__OTR__ast_title/ast_title_seg6_gfx_43460";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43568[] = "__OTR__ast_title/ast_title_seg6_vtx_43568";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_435C8[] = "__OTR__ast_title/ast_title_seg6_vtx_435C8";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43720[] = "__OTR__ast_title/ast_title_seg6_gfx_43720";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_437F0[] = "__OTR__ast_title/ast_title_seg6_vtx_437F0";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43900[] = "__OTR__ast_title/ast_title_seg6_gfx_43900";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43980[] = "__OTR__ast_title/ast_title_seg6_vtx_43980";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43A10[] = "__OTR__ast_title/ast_title_seg6_gfx_43A10";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43A90[] = "__OTR__ast_title/ast_title_seg6_vtx_43A90";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43B20[] = "__OTR__ast_title/ast_title_seg6_gfx_43B20";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43BE8[] = "__OTR__ast_title/ast_title_seg6_vtx_43BE8";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43D00[] = "__OTR__ast_title/ast_title_seg6_gfx_43D00";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43DF8[] = "__OTR__ast_title/ast_title_seg6_vtx_43DF8";
static const ALIGN_ASSET(2) char D_TITLE_6043F68[] = "__OTR__ast_title/D_TITLE_6043F68";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_44770[] = "__OTR__ast_title/ast_title_seg6_gfx_44770";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44A58[] = "__OTR__ast_title/ast_title_seg6_vtx_44A58";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44A98[] = "__OTR__ast_title/ast_title_seg6_vtx_44A98";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44AD8[] = "__OTR__ast_title/ast_title_seg6_vtx_44AD8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44C88[] = "__OTR__ast_title/ast_title_seg6_vtx_44C88";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44CE8[] = "__OTR__ast_title/ast_title_seg6_vtx_44CE8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44D88[] = "__OTR__ast_title/ast_title_seg6_vtx_44D88";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44DE8[] = "__OTR__ast_title/ast_title_seg6_vtx_44DE8";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_44E40[] = "__OTR__ast_title/ast_title_seg6_gfx_44E40";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44EC0[] = "__OTR__ast_title/ast_title_seg6_vtx_44EC0";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_44F40[] = "__OTR__ast_title/ast_title_seg6_gfx_44F40";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44FF8[] = "__OTR__ast_title/ast_title_seg6_vtx_44FF8";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_45100[] = "__OTR__ast_title/ast_title_seg6_gfx_45100";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_451A0[] = "__OTR__ast_title/ast_title_seg6_vtx_451A0";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_45280[] = "__OTR__ast_title/ast_title_seg6_gfx_45280";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_45320[] = "__OTR__ast_title/ast_title_seg6_vtx_45320";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_45400[] = "__OTR__ast_title/ast_title_seg6_gfx_45400";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_454B8[] = "__OTR__ast_title/ast_title_seg6_vtx_454B8";
static const ALIGN_ASSET(2) char ast_title_seg6_gfx_455C0[] = "__OTR__ast_title/ast_title_seg6_gfx_455C0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_45640[] = "__OTR__ast_title/ast_title_seg6_vtx_45640";
static const ALIGN_ASSET(2) char D_TITLE_60456C0[] = "__OTR__ast_title/D_TITLE_60456C0";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_45868[] = "__OTR__ast_title/ast_title_seg6_vtx_45868";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_458A8[] = "__OTR__ast_title/ast_title_seg6_vtx_458A8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_458E8[] = "__OTR__ast_title/ast_title_seg6_vtx_458E8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_45928[] = "__OTR__ast_title/ast_title_seg6_vtx_45928";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_45968[] = "__OTR__ast_title/ast_title_seg6_vtx_45968";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_459A8[] = "__OTR__ast_title/ast_title_seg6_vtx_459A8";
static const ALIGN_ASSET(2) char ast_title_seg6_vtx_459E8[] = "__OTR__ast_title/ast_title_seg6_vtx_459E8";
static const ALIGN_ASSET(2) char D_TITLE_6045A28[] = "__OTR__ast_title/D_TITLE_6045A28";
static const ALIGN_ASSET(2) char D_TITLE_6046A28[] = "__OTR__ast_title/D_TITLE_6046A28";
static const ALIGN_ASSET(2) char D_TITLE_6047A28[] = "__OTR__ast_title/D_TITLE_6047A28";
static const ALIGN_ASSET(2) char D_TITLE_6048A28[] = "__OTR__ast_title/D_TITLE_6048A28";
static const ALIGN_ASSET(2) char D_TITLE_6049A28[] = "__OTR__ast_title/D_TITLE_6049A28";
static const ALIGN_ASSET(2) char D_TITLE_604AA28[] = "__OTR__ast_title/D_TITLE_604AA28";
static const ALIGN_ASSET(2) char D_TITLE_604BA28[] = "__OTR__ast_title/D_TITLE_604BA28";
|