blob: e7a82e579b6905aca86158b89a651d25d168877e (
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
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
|
dialogs/dialog_00:
type: SM64:DIALOG
offset: 1083968
mio0: 65480
dialogs/dialog_01:
type: SM64:DIALOG
offset: 1083968
mio0: 65496
dialogs/dialog_02:
type: SM64:DIALOG
offset: 1083968
mio0: 65512
dialogs/dialog_03:
type: SM64:DIALOG
offset: 1083968
mio0: 65528
dialogs/dialog_04:
type: SM64:DIALOG
offset: 1083968
mio0: 65544
dialogs/dialog_05:
type: SM64:DIALOG
offset: 1083968
mio0: 65560
dialogs/dialog_06:
type: SM64:DIALOG
offset: 1083968
mio0: 65576
dialogs/dialog_07:
type: SM64:DIALOG
offset: 1083968
mio0: 65592
dialogs/dialog_08:
type: SM64:DIALOG
offset: 1083968
mio0: 65608
dialogs/dialog_09:
type: SM64:DIALOG
offset: 1083968
mio0: 65624
dialogs/dialog_0A:
type: SM64:DIALOG
offset: 1083968
mio0: 65640
dialogs/dialog_0B:
type: SM64:DIALOG
offset: 1083968
mio0: 65656
dialogs/dialog_0C:
type: SM64:DIALOG
offset: 1083968
mio0: 65672
dialogs/dialog_0D:
type: SM64:DIALOG
offset: 1083968
mio0: 65688
dialogs/dialog_0E:
type: SM64:DIALOG
offset: 1083968
mio0: 65704
dialogs/dialog_0F:
type: SM64:DIALOG
offset: 1083968
mio0: 65720
dialogs/dialog_10:
type: SM64:DIALOG
offset: 1083968
mio0: 65736
dialogs/dialog_11:
type: SM64:DIALOG
offset: 1083968
mio0: 65752
dialogs/dialog_12:
type: SM64:DIALOG
offset: 1083968
mio0: 65768
dialogs/dialog_13:
type: SM64:DIALOG
offset: 1083968
mio0: 65784
dialogs/dialog_14:
type: SM64:DIALOG
offset: 1083968
mio0: 65800
dialogs/dialog_15:
type: SM64:DIALOG
offset: 1083968
mio0: 65816
dialogs/dialog_16:
type: SM64:DIALOG
offset: 1083968
mio0: 65832
dialogs/dialog_17:
type: SM64:DIALOG
offset: 1083968
mio0: 65848
dialogs/dialog_18:
type: SM64:DIALOG
offset: 1083968
mio0: 65864
dialogs/dialog_19:
type: SM64:DIALOG
offset: 1083968
mio0: 65880
dialogs/dialog_1A:
type: SM64:DIALOG
offset: 1083968
mio0: 65896
dialogs/dialog_1B:
type: SM64:DIALOG
offset: 1083968
mio0: 65912
dialogs/dialog_1C:
type: SM64:DIALOG
offset: 1083968
mio0: 65928
dialogs/dialog_1D:
type: SM64:DIALOG
offset: 1083968
mio0: 65944
dialogs/dialog_1E:
type: SM64:DIALOG
offset: 1083968
mio0: 65960
dialogs/dialog_1F:
type: SM64:DIALOG
offset: 1083968
mio0: 65976
dialogs/dialog_20:
type: SM64:DIALOG
offset: 1083968
mio0: 65992
dialogs/dialog_21:
type: SM64:DIALOG
offset: 1083968
mio0: 66008
dialogs/dialog_22:
type: SM64:DIALOG
offset: 1083968
mio0: 66024
dialogs/dialog_23:
type: SM64:DIALOG
offset: 1083968
mio0: 66040
dialogs/dialog_24:
type: SM64:DIALOG
offset: 1083968
mio0: 66056
dialogs/dialog_25:
type: SM64:DIALOG
offset: 1083968
mio0: 66072
dialogs/dialog_26:
type: SM64:DIALOG
offset: 1083968
mio0: 66088
dialogs/dialog_27:
type: SM64:DIALOG
offset: 1083968
mio0: 66104
dialogs/dialog_28:
type: SM64:DIALOG
offset: 1083968
mio0: 66120
dialogs/dialog_29:
type: SM64:DIALOG
offset: 1083968
mio0: 66136
dialogs/dialog_2A:
type: SM64:DIALOG
offset: 1083968
mio0: 66152
dialogs/dialog_2B:
type: SM64:DIALOG
offset: 1083968
mio0: 66168
dialogs/dialog_2C:
type: SM64:DIALOG
offset: 1083968
mio0: 66184
dialogs/dialog_2D:
type: SM64:DIALOG
offset: 1083968
mio0: 66200
dialogs/dialog_2E:
type: SM64:DIALOG
offset: 1083968
mio0: 66216
dialogs/dialog_2F:
type: SM64:DIALOG
offset: 1083968
mio0: 66232
dialogs/dialog_30:
type: SM64:DIALOG
offset: 1083968
mio0: 66248
dialogs/dialog_31:
type: SM64:DIALOG
offset: 1083968
mio0: 66264
dialogs/dialog_32:
type: SM64:DIALOG
offset: 1083968
mio0: 66280
dialogs/dialog_33:
type: SM64:DIALOG
offset: 1083968
mio0: 66296
dialogs/dialog_34:
type: SM64:DIALOG
offset: 1083968
mio0: 66312
dialogs/dialog_35:
type: SM64:DIALOG
offset: 1083968
mio0: 66328
dialogs/dialog_36:
type: SM64:DIALOG
offset: 1083968
mio0: 66344
dialogs/dialog_37:
type: SM64:DIALOG
offset: 1083968
mio0: 66360
dialogs/dialog_38:
type: SM64:DIALOG
offset: 1083968
mio0: 66376
dialogs/dialog_39:
type: SM64:DIALOG
offset: 1083968
mio0: 66392
dialogs/dialog_3A:
type: SM64:DIALOG
offset: 1083968
mio0: 66408
dialogs/dialog_3B:
type: SM64:DIALOG
offset: 1083968
mio0: 66424
dialogs/dialog_3C:
type: SM64:DIALOG
offset: 1083968
mio0: 66440
dialogs/dialog_3D:
type: SM64:DIALOG
offset: 1083968
mio0: 66456
dialogs/dialog_3E:
type: SM64:DIALOG
offset: 1083968
mio0: 66472
dialogs/dialog_3F:
type: SM64:DIALOG
offset: 1083968
mio0: 66488
dialogs/dialog_40:
type: SM64:DIALOG
offset: 1083968
mio0: 66504
dialogs/dialog_41:
type: SM64:DIALOG
offset: 1083968
mio0: 66520
dialogs/dialog_42:
type: SM64:DIALOG
offset: 1083968
mio0: 66536
dialogs/dialog_43:
type: SM64:DIALOG
offset: 1083968
mio0: 66552
dialogs/dialog_44:
type: SM64:DIALOG
offset: 1083968
mio0: 66568
dialogs/dialog_45:
type: SM64:DIALOG
offset: 1083968
mio0: 66584
dialogs/dialog_46:
type: SM64:DIALOG
offset: 1083968
mio0: 66600
dialogs/dialog_47:
type: SM64:DIALOG
offset: 1083968
mio0: 66616
dialogs/dialog_48:
type: SM64:DIALOG
offset: 1083968
mio0: 66632
dialogs/dialog_49:
type: SM64:DIALOG
offset: 1083968
mio0: 66648
dialogs/dialog_4A:
type: SM64:DIALOG
offset: 1083968
mio0: 66664
dialogs/dialog_4B:
type: SM64:DIALOG
offset: 1083968
mio0: 66680
dialogs/dialog_4C:
type: SM64:DIALOG
offset: 1083968
mio0: 66696
dialogs/dialog_4D:
type: SM64:DIALOG
offset: 1083968
mio0: 66712
dialogs/dialog_4E:
type: SM64:DIALOG
offset: 1083968
mio0: 66728
dialogs/dialog_4F:
type: SM64:DIALOG
offset: 1083968
mio0: 66744
dialogs/dialog_50:
type: SM64:DIALOG
offset: 1083968
mio0: 66760
dialogs/dialog_51:
type: SM64:DIALOG
offset: 1083968
mio0: 66776
dialogs/dialog_52:
type: SM64:DIALOG
offset: 1083968
mio0: 66792
dialogs/dialog_53:
type: SM64:DIALOG
offset: 1083968
mio0: 66808
dialogs/dialog_54:
type: SM64:DIALOG
offset: 1083968
mio0: 66824
dialogs/dialog_55:
type: SM64:DIALOG
offset: 1083968
mio0: 66840
dialogs/dialog_56:
type: SM64:DIALOG
offset: 1083968
mio0: 66856
dialogs/dialog_57:
type: SM64:DIALOG
offset: 1083968
mio0: 66872
dialogs/dialog_58:
type: SM64:DIALOG
offset: 1083968
mio0: 66888
dialogs/dialog_59:
type: SM64:DIALOG
offset: 1083968
mio0: 66904
dialogs/dialog_5A:
type: SM64:DIALOG
offset: 1083968
mio0: 66920
dialogs/dialog_5B:
type: SM64:DIALOG
offset: 1083968
mio0: 66936
dialogs/dialog_5C:
type: SM64:DIALOG
offset: 1083968
mio0: 66952
dialogs/dialog_5D:
type: SM64:DIALOG
offset: 1083968
mio0: 66968
dialogs/dialog_5E:
type: SM64:DIALOG
offset: 1083968
mio0: 66984
dialogs/dialog_5F:
type: SM64:DIALOG
offset: 1083968
mio0: 67000
dialogs/dialog_60:
type: SM64:DIALOG
offset: 1083968
mio0: 67016
dialogs/dialog_61:
type: SM64:DIALOG
offset: 1083968
mio0: 67032
dialogs/dialog_62:
type: SM64:DIALOG
offset: 1083968
mio0: 67048
dialogs/dialog_63:
type: SM64:DIALOG
offset: 1083968
mio0: 67064
dialogs/dialog_64:
type: SM64:DIALOG
offset: 1083968
mio0: 67080
dialogs/dialog_65:
type: SM64:DIALOG
offset: 1083968
mio0: 67096
dialogs/dialog_66:
type: SM64:DIALOG
offset: 1083968
mio0: 67112
dialogs/dialog_67:
type: SM64:DIALOG
offset: 1083968
mio0: 67128
dialogs/dialog_68:
type: SM64:DIALOG
offset: 1083968
mio0: 67144
dialogs/dialog_69:
type: SM64:DIALOG
offset: 1083968
mio0: 67160
dialogs/dialog_6A:
type: SM64:DIALOG
offset: 1083968
mio0: 67176
dialogs/dialog_6B:
type: SM64:DIALOG
offset: 1083968
mio0: 67192
dialogs/dialog_6C:
type: SM64:DIALOG
offset: 1083968
mio0: 67208
dialogs/dialog_6D:
type: SM64:DIALOG
offset: 1083968
mio0: 67224
dialogs/dialog_6E:
type: SM64:DIALOG
offset: 1083968
mio0: 67240
dialogs/dialog_6F:
type: SM64:DIALOG
offset: 1083968
mio0: 67256
dialogs/dialog_70:
type: SM64:DIALOG
offset: 1083968
mio0: 67272
dialogs/dialog_71:
type: SM64:DIALOG
offset: 1083968
mio0: 67288
dialogs/dialog_72:
type: SM64:DIALOG
offset: 1083968
mio0: 67304
dialogs/dialog_73:
type: SM64:DIALOG
offset: 1083968
mio0: 67320
dialogs/dialog_74:
type: SM64:DIALOG
offset: 1083968
mio0: 67336
dialogs/dialog_75:
type: SM64:DIALOG
offset: 1083968
mio0: 67352
dialogs/dialog_76:
type: SM64:DIALOG
offset: 1083968
mio0: 67368
dialogs/dialog_77:
type: SM64:DIALOG
offset: 1083968
mio0: 67384
dialogs/dialog_78:
type: SM64:DIALOG
offset: 1083968
mio0: 67400
dialogs/dialog_79:
type: SM64:DIALOG
offset: 1083968
mio0: 67416
dialogs/dialog_7A:
type: SM64:DIALOG
offset: 1083968
mio0: 67432
dialogs/dialog_7B:
type: SM64:DIALOG
offset: 1083968
mio0: 67448
dialogs/dialog_7C:
type: SM64:DIALOG
offset: 1083968
mio0: 67464
dialogs/dialog_7D:
type: SM64:DIALOG
offset: 1083968
mio0: 67480
dialogs/dialog_7E:
type: SM64:DIALOG
offset: 1083968
mio0: 67496
dialogs/dialog_7F:
type: SM64:DIALOG
offset: 1083968
mio0: 67512
dialogs/dialog_80:
type: SM64:DIALOG
offset: 1083968
mio0: 67528
dialogs/dialog_81:
type: SM64:DIALOG
offset: 1083968
mio0: 67544
dialogs/dialog_82:
type: SM64:DIALOG
offset: 1083968
mio0: 67560
dialogs/dialog_83:
type: SM64:DIALOG
offset: 1083968
mio0: 67576
dialogs/dialog_84:
type: SM64:DIALOG
offset: 1083968
mio0: 67592
dialogs/dialog_85:
type: SM64:DIALOG
offset: 1083968
mio0: 67608
dialogs/dialog_86:
type: SM64:DIALOG
offset: 1083968
mio0: 67624
dialogs/dialog_87:
type: SM64:DIALOG
offset: 1083968
mio0: 67640
dialogs/dialog_88:
type: SM64:DIALOG
offset: 1083968
mio0: 67656
dialogs/dialog_89:
type: SM64:DIALOG
offset: 1083968
mio0: 67672
dialogs/dialog_8A:
type: SM64:DIALOG
offset: 1083968
mio0: 67688
dialogs/dialog_8B:
type: SM64:DIALOG
offset: 1083968
mio0: 67704
dialogs/dialog_8C:
type: SM64:DIALOG
offset: 1083968
mio0: 67720
dialogs/dialog_8D:
type: SM64:DIALOG
offset: 1083968
mio0: 67736
dialogs/dialog_8E:
type: SM64:DIALOG
offset: 1083968
mio0: 67752
dialogs/dialog_8F:
type: SM64:DIALOG
offset: 1083968
mio0: 67768
dialogs/dialog_90:
type: SM64:DIALOG
offset: 1083968
mio0: 67784
dialogs/dialog_91:
type: SM64:DIALOG
offset: 1083968
mio0: 67800
dialogs/dialog_92:
type: SM64:DIALOG
offset: 1083968
mio0: 67816
dialogs/dialog_93:
type: SM64:DIALOG
offset: 1083968
mio0: 67832
dialogs/dialog_94:
type: SM64:DIALOG
offset: 1083968
mio0: 67848
dialogs/dialog_95:
type: SM64:DIALOG
offset: 1083968
mio0: 67864
dialogs/dialog_96:
type: SM64:DIALOG
offset: 1083968
mio0: 67880
dialogs/dialog_97:
type: SM64:DIALOG
offset: 1083968
mio0: 67896
dialogs/dialog_98:
type: SM64:DIALOG
offset: 1083968
mio0: 67912
dialogs/dialog_99:
type: SM64:DIALOG
offset: 1083968
mio0: 67928
dialogs/dialog_9A:
type: SM64:DIALOG
offset: 1083968
mio0: 67944
dialogs/dialog_9B:
type: SM64:DIALOG
offset: 1083968
mio0: 67960
dialogs/dialog_9C:
type: SM64:DIALOG
offset: 1083968
mio0: 67976
dialogs/dialog_9D:
type: SM64:DIALOG
offset: 1083968
mio0: 67992
dialogs/dialog_9E:
type: SM64:DIALOG
offset: 1083968
mio0: 68008
dialogs/dialog_9F:
type: SM64:DIALOG
offset: 1083968
mio0: 68024
dialogs/dialog_A0:
type: SM64:DIALOG
offset: 1083968
mio0: 68040
dialogs/dialog_A1:
type: SM64:DIALOG
offset: 1083968
mio0: 68056
dialogs/dialog_A2:
type: SM64:DIALOG
offset: 1083968
mio0: 68072
dialogs/dialog_A3:
type: SM64:DIALOG
offset: 1083968
mio0: 68088
dialogs/dialog_A4:
type: SM64:DIALOG
offset: 1083968
mio0: 68104
dialogs/dialog_A5:
type: SM64:DIALOG
offset: 1083968
mio0: 68120
dialogs/dialog_A6:
type: SM64:DIALOG
offset: 1083968
mio0: 68136
dialogs/dialog_A7:
type: SM64:DIALOG
offset: 1083968
mio0: 68152
dialogs/dialog_A8:
type: SM64:DIALOG
offset: 1083968
mio0: 68168
dialogs/dialog_A9:
type: SM64:DIALOG
offset: 1083968
mio0: 68184
courses/course_00:
type: SM64:TEXT
offset: 1083968
mio0: 68884
courses/course_01:
type: SM64:TEXT
offset: 1083968
mio0: 68908
courses/course_02:
type: SM64:TEXT
offset: 1083968
mio0: 68928
courses/course_03:
type: SM64:TEXT
offset: 1083968
mio0: 68948
courses/course_04:
type: SM64:TEXT
offset: 1083968
mio0: 68972
courses/course_05:
type: SM64:TEXT
offset: 1083968
mio0: 68992
courses/course_06:
type: SM64:TEXT
offset: 1083968
mio0: 69012
courses/course_07:
type: SM64:TEXT
offset: 1083968
mio0: 69032
courses/course_08:
type: SM64:TEXT
offset: 1083968
mio0: 69056
courses/course_09:
type: SM64:TEXT
offset: 1083968
mio0: 69076
courses/course_0A:
type: SM64:TEXT
offset: 1083968
mio0: 69096
courses/course_0B:
type: SM64:TEXT
offset: 1083968
mio0: 69116
courses/course_0C:
type: SM64:TEXT
offset: 1083968
mio0: 69140
courses/course_0D:
type: SM64:TEXT
offset: 1083968
mio0: 69160
courses/course_0E:
type: SM64:TEXT
offset: 1083968
mio0: 69180
courses/course_0F:
type: SM64:TEXT
offset: 1083968
mio0: 69196
courses/course_10:
type: SM64:TEXT
offset: 1083968
mio0: 69224
courses/course_11:
type: SM64:TEXT
offset: 1083968
mio0: 69252
courses/course_12:
type: SM64:TEXT
offset: 1083968
mio0: 69276
courses/course_13:
type: SM64:TEXT
offset: 1083968
mio0: 69308
courses/course_14:
type: SM64:TEXT
offset: 1083968
mio0: 69336
courses/course_15:
type: SM64:TEXT
offset: 1083968
mio0: 69364
courses/course_16:
type: SM64:TEXT
offset: 1083968
mio0: 69396
courses/course_17:
type: SM64:TEXT
offset: 1083968
mio0: 69428
courses/course_18:
type: SM64:TEXT
offset: 1083968
mio0: 69452
courses/course_19:
type: SM64:TEXT
offset: 1083968
mio0: 69456
acts/act_00:
type: SM64:TEXT
offset: 1083968
mio0: 69588
acts/act_01:
type: SM64:TEXT
offset: 1083968
mio0: 69616
acts/act_02:
type: SM64:TEXT
offset: 1083968
mio0: 69648
acts/act_03:
type: SM64:TEXT
offset: 1083968
mio0: 69680
acts/act_04:
type: SM64:TEXT
offset: 1083968
mio0: 69704
acts/act_05:
type: SM64:TEXT
offset: 1083968
mio0: 69728
acts/act_06:
type: SM64:TEXT
offset: 1083968
mio0: 69756
acts/act_07:
type: SM64:TEXT
offset: 1083968
mio0: 69780
acts/act_08:
type: SM64:TEXT
offset: 1083968
mio0: 69808
acts/act_09:
type: SM64:TEXT
offset: 1083968
mio0: 69836
acts/act_0A:
type: SM64:TEXT
offset: 1083968
mio0: 69868
acts/act_0B:
type: SM64:TEXT
offset: 1083968
mio0: 69896
acts/act_0C:
type: SM64:TEXT
offset: 1083968
mio0: 69916
acts/act_0D:
type: SM64:TEXT
offset: 1083968
mio0: 69944
acts/act_0E:
type: SM64:TEXT
offset: 1083968
mio0: 69976
acts/act_0F:
type: SM64:TEXT
offset: 1083968
mio0: 70004
acts/act_10:
type: SM64:TEXT
offset: 1083968
mio0: 70036
acts/act_11:
type: SM64:TEXT
offset: 1083968
mio0: 70064
acts/act_12:
type: SM64:TEXT
offset: 1083968
mio0: 70088
acts/act_13:
type: SM64:TEXT
offset: 1083968
mio0: 70108
acts/act_14:
type: SM64:TEXT
offset: 1083968
mio0: 70128
acts/act_15:
type: SM64:TEXT
offset: 1083968
mio0: 70148
acts/act_16:
type: SM64:TEXT
offset: 1083968
mio0: 70180
acts/act_17:
type: SM64:TEXT
offset: 1083968
mio0: 70204
acts/act_18:
type: SM64:TEXT
offset: 1083968
mio0: 70228
acts/act_19:
type: SM64:TEXT
offset: 1083968
mio0: 70248
acts/act_1A:
type: SM64:TEXT
offset: 1083968
mio0: 70280
acts/act_1B:
type: SM64:TEXT
offset: 1083968
mio0: 70308
acts/act_1C:
type: SM64:TEXT
offset: 1083968
mio0: 70332
acts/act_1D:
type: SM64:TEXT
offset: 1083968
mio0: 70352
acts/act_1E:
type: SM64:TEXT
offset: 1083968
mio0: 70384
acts/act_1F:
type: SM64:TEXT
offset: 1083968
mio0: 70416
acts/act_20:
type: SM64:TEXT
offset: 1083968
mio0: 70440
acts/act_21:
type: SM64:TEXT
offset: 1083968
mio0: 70468
acts/act_22:
type: SM64:TEXT
offset: 1083968
mio0: 70496
acts/act_23:
type: SM64:TEXT
offset: 1083968
mio0: 70524
acts/act_24:
type: SM64:TEXT
offset: 1083968
mio0: 70548
acts/act_25:
type: SM64:TEXT
offset: 1083968
mio0: 70568
acts/act_26:
type: SM64:TEXT
offset: 1083968
mio0: 70588
acts/act_27:
type: SM64:TEXT
offset: 1083968
mio0: 70620
acts/act_28:
type: SM64:TEXT
offset: 1083968
mio0: 70640
acts/act_29:
type: SM64:TEXT
offset: 1083968
mio0: 70672
acts/act_2A:
type: SM64:TEXT
offset: 1083968
mio0: 70704
acts/act_2B:
type: SM64:TEXT
offset: 1083968
mio0: 70736
acts/act_2C:
type: SM64:TEXT
offset: 1083968
mio0: 70764
acts/act_2D:
type: SM64:TEXT
offset: 1083968
mio0: 70792
acts/act_2E:
type: SM64:TEXT
offset: 1083968
mio0: 70824
acts/act_2F:
type: SM64:TEXT
offset: 1083968
mio0: 70852
acts/act_30:
type: SM64:TEXT
offset: 1083968
mio0: 70868
acts/act_31:
type: SM64:TEXT
offset: 1083968
mio0: 70888
acts/act_32:
type: SM64:TEXT
offset: 1083968
mio0: 70912
acts/act_33:
type: SM64:TEXT
offset: 1083968
mio0: 70940
acts/act_34:
type: SM64:TEXT
offset: 1083968
mio0: 70964
acts/act_35:
type: SM64:TEXT
offset: 1083968
mio0: 70988
acts/act_36:
type: SM64:TEXT
offset: 1083968
mio0: 71008
acts/act_37:
type: SM64:TEXT
offset: 1083968
mio0: 71028
acts/act_38:
type: SM64:TEXT
offset: 1083968
mio0: 71052
acts/act_39:
type: SM64:TEXT
offset: 1083968
mio0: 71072
acts/act_3A:
type: SM64:TEXT
offset: 1083968
mio0: 71104
acts/act_3B:
type: SM64:TEXT
offset: 1083968
mio0: 71136
acts/act_3C:
type: SM64:TEXT
offset: 1083968
mio0: 71152
acts/act_3D:
type: SM64:TEXT
offset: 1083968
mio0: 71176
acts/act_3E:
type: SM64:TEXT
offset: 1083968
mio0: 71192
acts/act_3F:
type: SM64:TEXT
offset: 1083968
mio0: 71224
acts/act_40:
type: SM64:TEXT
offset: 1083968
mio0: 71252
acts/act_41:
type: SM64:TEXT
offset: 1083968
mio0: 71280
acts/act_42:
type: SM64:TEXT
offset: 1083968
mio0: 71312
acts/act_43:
type: SM64:TEXT
offset: 1083968
mio0: 71332
acts/act_44:
type: SM64:TEXT
offset: 1083968
mio0: 71360
acts/act_45:
type: SM64:TEXT
offset: 1083968
mio0: 71388
acts/act_46:
type: SM64:TEXT
offset: 1083968
mio0: 71412
acts/act_47:
type: SM64:TEXT
offset: 1083968
mio0: 71444
acts/act_48:
type: SM64:TEXT
offset: 1083968
mio0: 71476
acts/act_49:
type: SM64:TEXT
offset: 1083968
mio0: 71504
acts/act_4A:
type: SM64:TEXT
offset: 1083968
mio0: 71536
acts/act_4B:
type: SM64:TEXT
offset: 1083968
mio0: 71568
acts/act_4C:
type: SM64:TEXT
offset: 1083968
mio0: 71592
acts/act_4D:
type: SM64:TEXT
offset: 1083968
mio0: 71612
acts/act_4E:
type: SM64:TEXT
offset: 1083968
mio0: 71632
acts/act_4F:
type: SM64:TEXT
offset: 1083968
mio0: 71652
acts/act_50:
type: SM64:TEXT
offset: 1083968
mio0: 71680
acts/act_51:
type: SM64:TEXT
offset: 1083968
mio0: 71692
acts/act_52:
type: SM64:TEXT
offset: 1083968
mio0: 71712
acts/act_53:
type: SM64:TEXT
offset: 1083968
mio0: 71740
acts/act_54:
type: SM64:TEXT
offset: 1083968
mio0: 71764
acts/act_55:
type: SM64:TEXT
offset: 1083968
mio0: 71796
acts/act_56:
type: SM64:TEXT
offset: 1083968
mio0: 71824
acts/act_57:
type: SM64:TEXT
offset: 1083968
mio0: 71848
acts/act_58:
type: SM64:TEXT
offset: 1083968
mio0: 71872
acts/act_59:
type: SM64:TEXT
offset: 1083968
mio0: 71892
acts/act_5A:
type: SM64:TEXT
offset: 1083968
mio0: 71920
acts/act_5B:
type: SM64:TEXT
offset: 1083968
mio0: 71956
acts/act_5C:
type: SM64:TEXT
offset: 1083968
mio0: 71960
acts/act_5D:
type: SM64:TEXT
offset: 1083968
mio0: 71964
acts/act_5E:
type: SM64:TEXT
offset: 1083968
mio0: 71968
acts/act_5F:
type: SM64:TEXT
offset: 1083968
mio0: 71972
acts/act_60:
type: SM64:TEXT
offset: 1083968
mio0: 71976
strings/global:
type: SM64:DICTIONARY
keys:
TEXT_ZERO: 8177343
TEXT_COIN: 8155500
TEXT_STAR: 8142922
TEXT_COIN_X: 5057623
TEXT_STAR_X: 5324116
TEXT_VARIABLE_X: 8085611
TEXT_UNFILLED_STAR: 8145264
TEXT_NEW: 2458232
TEXT_4DASHES: 2458548
TEXT_MARIO: 2458588
TEXT_SELECT_FILE: 2458244
TEXT_CHECK_FILE: 2458280
TEXT_COPY_FILE: 2458316
TEXT_ERASE_FILE: 2458436
TEXT_SOUND_SELECT: 2458520
TEXT_FILE_MARIO_A: 2458200
TEXT_FILE_MARIO_B: 2458208
TEXT_FILE_MARIO_C: 2458216
TEXT_FILE_MARIO_D: 2458224
TEXT_SCORE: 2459246
TEXT_COPY: 2458264
TEXT_ERASE: 2458272
TEXT_STEREO: 2458176
TEXT_MONO: 2458184
TEXT_HEADSET: 2458192
TEXT_SAVED_DATA_EXISTS: 2458500
TEXT_NO_SAVED_DATA_EXISTS: 2458456
TEXT_RETURN: 2458132
TEXT_CHECK_SCORE: 2458140
TEXT_COPY_FILE_BUTTON: 2458316
TEXT_ERASE_FILE_BUTTON: 2458436
TEXT_HI_SCORE: 2458596
TEXT_MY_SCORE: 2458608
TEXT_SCORE_MARIO_A: 2458556
TEXT_SCORE_MARIO_B: 2458564
TEXT_SCORE_MARIO_C: 2458572
TEXT_SCORE_MARIO_D: 2458580
TEXT_COPY_IT_TO_WHERE: 2458328
TEXT_COPYING_COMPLETED: 2458372
TEXT_NO_FILE_TO_COPY_FROM: 2458412
TEXT_SURE: 2458448
TEXT_YES: 2458428
TEXT_NO: 4539719
TEXT_FILE_MARIO_A_JUST_ERASED: 2458480
TEXT_COURSE: 968444
TEXT_MYSCORE: 2459244
TEXT_CONTINUE: 968479
TEXT_EXIT_COURSE: 968336
TEXT_CAMERA_ANGLE_R: 968348
TEXT_LAKITU_MARIO: 968256
TEXT_LAKITU_STOP: 968272
TEXT_NORMAL_UPCLOSE: 968288
TEXT_NORMAL_FIXED: 968308
TEXT_CATCH: 968452
TEXT_CLEAR: 968460
TEXT_HUD_HI_SCORE: 2458596
TEXT_SAVE_AND_CONTINUE: 968472
TEXT_SAVE_AND_QUIT: 968488
TEXT_CONTINUE_WITHOUT_SAVING: 968500
TEXT_FILE_MARIO_EXCLAMATION: 968156
TEXT_POWER_STARS_RESTORED: 967940
TEXT_THANKS_TO_YOU: 967992
TEXT_THANK_YOU_MARIO: 968024
TEXT_SOMETHING_SPECIAL: 968044
TEXT_LISTEN_EVERYBODY: 968088
TEXT_LETS_HAVE_CAKE: 968108
TEXT_FOR_MARIO: 968140
TEXT_FILE_MARIO_QUESTION: 968156
|