summaryrefslogtreecommitdiff
path: root/src/d/d_name.cpp
blob: 6d1186295d83011ef1ba1d914b7f63788b217cc3 (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
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
//
// Generated By: dol2asm
// Translation Unit: d/d_name
//

#include "d/d_name.h"
#include "dol2asm.h"
#include "dolphin/types.h"

//
// Types:
//

struct mDoCPd_c {
    static u8 m_cpadInfo[256];
};

struct J2DPane {};

struct JKRArchive {};

struct dSelect_cursor_c {
    /* 80194220 */ dSelect_cursor_c(u8, f32, JKRArchive*);
    /* 801950F4 */ void setPos(f32, f32, J2DPane*, bool);
    /* 801951B0 */ void setParam(f32, f32, f32, f32, f32);
    /* 801952A0 */ void setAlphaRate(f32);
};

struct dNm_HIO_c {
    /* 8024E3E0 */ dNm_HIO_c();
    /* 802511A4 */ ~dNm_HIO_c();
};

struct dName_c {
    /* 8024E408 */ dName_c(J2DPane*);
    /* 8024E468 */ ~dName_c();
    /* 8024E62C */ void _create();
    /* 8024E6D4 */ void init();
    /* 8024E7A4 */ void initial();
    /* 8024E7EC */ void showIcon();
    /* 8024E9A0 */ void _move();
    /* 8024EC10 */ void nameCheck();
    /* 8024EC4C */ void playNameSet(int);
    /* 8024EC84 */ void cursorAnm();
    /* 8024ED48 */ void Wait();
    /* 8024ED4C */ void MojiSelect();
    /* 8024F034 */ void MojiSelectAnmInit();
    /* 8024F0E0 */ void MojiSelectAnm();
    /* 8024F164 */ void MojiSelectAnm2();
    /* 8024F1E8 */ void MojiSelectAnm3();
    /* 8024F1EC */ void mojiChange(u8);
    /* 8024F55C */ void selectMojiSet();
    /* 8024F59C */ void getMoji();
    /* 8024F634 */ void setMoji(int);
    /* 8024F88C */ void setNameText();
    /* 8024F914 */ void nameCursorMove();
    /* 8024F994 */ void selectCursorMove();
    /* 8024FAF4 */ void menuCursorPosSet();
    /* 8024FB08 */ void MenuSelect();
    /* 8024FDA0 */ void MenuSelectAnmInit();
    /* 8024FDF4 */ void MenuSelectAnm();
    /* 8024FEB4 */ void MenuSelectAnm2();
    /* 8024FFA0 */ void MenuSelectAnm3();
    /* 8024FFA4 */ void menuAbtnSelect();
    /* 80250074 */ void backSpace();
    /* 802501B0 */ void mojiListChange();
    /* 80250284 */ void menuCursorMove();
    /* 80250380 */ void menuCursorMove2();
    /* 802504A0 */ void selectCursorPosSet(int);
    /* 80250560 */ void _draw();
    /* 802505CC */ void screenSet();
    /* 80250CEC */ void displayInit();
    /* 80250E54 */ void NameStrSet();
    /* 80251048 */ void getMenuPosIdx(u8);
};

struct dDlst_base_c {};

struct dDlst_list_c {
    /* 80056794 */ void set(dDlst_base_c**&, dDlst_base_c**&, dDlst_base_c*);
};

struct dDlst_NameIN_c {
    /* 80251094 */ void draw();
    /* 8025115C */ ~dDlst_NameIN_c();
};

struct Vec {};

struct JAISoundID {};

struct Z2SeMgr {
    /* 802AB984 */ void seStart(JAISoundID, Vec const*, u32, s8, f32, f32, f32, f32, u8);
};

struct Z2AudioMgr {
    static u8 mAudioMgrPtr[4 + 4 /* padding */];
};

struct STControl {
    /* 80032044 */ STControl(s16, s16, s16, s16, f32, f32, s16, s16);
    /* 8003219C */ void checkTrigger();
    /* 8003242C */ void checkLeftTrigger();
    /* 800324A8 */ void checkRightTrigger();
    /* 80032524 */ void checkUpTrigger();
    /* 800325A0 */ void checkDownTrigger();
};

struct JKRFileLoader {
    /* 802D4270 */ void getGlbResource(char const*, JKRFileLoader*);
};

struct JKRExpHeap {};

struct J2DTextBox {
    /* 80300658 */ void getStringPtr() const;
    /* 80300660 */ void setString(char const*, ...);
    /* 8030074C */ void setString(s16, char const*, ...);
};

struct J2DGrafContext {};

struct J2DScreen {
    /* 802F8498 */ J2DScreen();
    /* 802F8648 */ void setPriority(char const*, u32, JKRArchive*);
    /* 802F8ED4 */ void draw(f32, f32, J2DGrafContext const*);
    /* 802F9690 */ void animation();
};

struct J2DAnmLoaderDataBase {
    /* 80308A6C */ void load(void const*);
};

struct CPaneMgrAlpha {
    /* 802553FC */ CPaneMgrAlpha(J2DScreen*, u64, u8, JKRExpHeap*);
    /* 802555C8 */ void show();
    /* 80255608 */ void hide();
};

struct CPaneMgr {
    /* 80253984 */ CPaneMgr(J2DScreen*, u64, u8, JKRExpHeap*);
    /* 802547CC */ void scaleAnime(s16, f32, f32, u8);
    /* 80254EBC */ void getGlobalVtxCenter(J2DPane*, bool, s16);
};

//
// Forward References:
//

extern "C" void __ct__9dNm_HIO_cFv();
extern "C" void __ct__7dName_cFP7J2DPane();
extern "C" void __dt__7dName_cFv();
extern "C" void _create__7dName_cFv();
extern "C" void init__7dName_cFv();
extern "C" void initial__7dName_cFv();
extern "C" void showIcon__7dName_cFv();
extern "C" void _move__7dName_cFv();
extern "C" void nameCheck__7dName_cFv();
extern "C" void playNameSet__7dName_cFi();
extern "C" void cursorAnm__7dName_cFv();
extern "C" void Wait__7dName_cFv();
extern "C" void MojiSelect__7dName_cFv();
extern "C" void MojiSelectAnmInit__7dName_cFv();
extern "C" void MojiSelectAnm__7dName_cFv();
extern "C" void MojiSelectAnm2__7dName_cFv();
extern "C" void MojiSelectAnm3__7dName_cFv();
extern "C" void mojiChange__7dName_cFUc();
extern "C" void selectMojiSet__7dName_cFv();
extern "C" void getMoji__7dName_cFv();
extern "C" void setMoji__7dName_cFi();
extern "C" void setNameText__7dName_cFv();
extern "C" void nameCursorMove__7dName_cFv();
extern "C" void selectCursorMove__7dName_cFv();
extern "C" void menuCursorPosSet__7dName_cFv();
extern "C" void MenuSelect__7dName_cFv();
extern "C" void MenuSelectAnmInit__7dName_cFv();
extern "C" void MenuSelectAnm__7dName_cFv();
extern "C" void MenuSelectAnm2__7dName_cFv();
extern "C" void MenuSelectAnm3__7dName_cFv();
extern "C" void menuAbtnSelect__7dName_cFv();
extern "C" void backSpace__7dName_cFv();
extern "C" void mojiListChange__7dName_cFv();
extern "C" void menuCursorMove__7dName_cFv();
extern "C" void menuCursorMove2__7dName_cFv();
extern "C" void selectCursorPosSet__7dName_cFi();
extern "C" void _draw__7dName_cFv();
extern "C" void screenSet__7dName_cFv();
extern "C" void displayInit__7dName_cFv();
extern "C" void NameStrSet__7dName_cFv();
extern "C" void getMenuPosIdx__7dName_cFUc();
extern "C" void draw__14dDlst_NameIN_cFv();
extern "C" void __dt__14dDlst_NameIN_cFv();
extern "C" void __dt__9dNm_HIO_cFv();
extern "C" void __sinit_d_name_cpp();
extern "C" extern char const* const d_d_name__stringBase0;

//
// External References:
//

extern "C" void mDoExt_getMesgFont__Fv();
extern "C" void mDoExt_removeMesgFont__Fv();
extern "C" void fopMsgM_messageGet__FPcUl();
extern "C" void __ct__9STControlFssssffss();
extern "C" void checkTrigger__9STControlFv();
extern "C" void checkLeftTrigger__9STControlFv();
extern "C" void checkRightTrigger__9STControlFv();
extern "C" void checkUpTrigger__9STControlFv();
extern "C" void checkDownTrigger__9STControlFv();
extern "C" void set__12dDlst_list_cFRPP12dDlst_base_cRPP12dDlst_base_cP12dDlst_base_c();
extern "C" void __ct__16dSelect_cursor_cFUcfP10JKRArchive();
extern "C" void setPos__16dSelect_cursor_cFffP7J2DPaneb();
extern "C" void setParam__16dSelect_cursor_cFfffff();
extern "C" void setAlphaRate__16dSelect_cursor_cFf();
extern "C" void __ct__8CPaneMgrFP9J2DScreenUxUcP10JKRExpHeap();
extern "C" void scaleAnime__8CPaneMgrFsffUc();
extern "C" void getGlobalVtxCenter__8CPaneMgrFP7J2DPanebs();
extern "C" void dPaneClass_showNullPane__FP9J2DScreen();
extern "C" void __ct__13CPaneMgrAlphaFP9J2DScreenUxUcP10JKRExpHeap();
extern "C" void show__13CPaneMgrAlphaFv();
extern "C" void hide__13CPaneMgrAlphaFv();
extern "C" void seStart__7Z2SeMgrF10JAISoundIDPC3VecUlScffffUc();
extern "C" void* __nw__FUl();
extern "C" void __dl__FPv();
extern "C" void getGlbResource__13JKRFileLoaderFPCcP13JKRFileLoader();
extern "C" void __ct__9J2DScreenFv();
extern "C" void setPriority__9J2DScreenFPCcUlP10JKRArchive();
extern "C" void draw__9J2DScreenFffPC14J2DGrafContext();
extern "C" void animation__9J2DScreenFv();
extern "C" void getStringPtr__10J2DTextBoxCFv();
extern "C" void setString__10J2DTextBoxFPCce();
extern "C" void setString__10J2DTextBoxFsPCce();
extern "C" void load__20J2DAnmLoaderDataBaseFPCv();
extern "C" void PSMTXCopy();
extern "C" void PSMTXConcat();
extern "C" void PSMTXScale();
extern "C" void __register_global_object();
extern "C" void __ptmf_scall();
extern "C" void _savegpr_19();
extern "C" void _savegpr_24();
extern "C" void _savegpr_26();
extern "C" void _savegpr_27();
extern "C" void _savegpr_28();
extern "C" void _savegpr_29();
extern "C" void _restgpr_19();
extern "C" void _restgpr_24();
extern "C" void _restgpr_26();
extern "C" void _restgpr_27();
extern "C" void _restgpr_28();
extern "C" void _restgpr_29();
extern "C" void sprintf();
extern "C" void strcat();
extern "C" void strcpy();
extern "C" extern void* __vt__12dDlst_base_c[3];
extern "C" u8 m_cpadInfo__8mDoCPd_c[256];
extern "C" extern u8 g_dComIfG_gameInfo[122384];
extern "C" u8 mAudioMgrPtr__10Z2AudioMgr[4 + 4 /* padding */];

//
// Declarations:
//

/* ############################################################################################## */
/* 803C1F50-803C1F5C 01F070 000C+00 5/5 0/0 0/0 .data            cNullVec__6Z2Calc */
SECTION_DATA static u8 cNullVec__6Z2Calc[12] = {
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
};

/* 803C1F5C-803C2060 -00001 0104+00 0/3 0/0 0/0 .data            l_mojiHira */
#pragma push
#pragma force_active on
SECTION_DATA static void* l_mojiHira[65] = {
    (void*)&d_d_name__stringBase0,
    (void*)(((char*)&d_d_name__stringBase0) + 0x3),
    (void*)(((char*)&d_d_name__stringBase0) + 0x6),
    (void*)(((char*)&d_d_name__stringBase0) + 0x9),
    (void*)(((char*)&d_d_name__stringBase0) + 0xC),
    (void*)(((char*)&d_d_name__stringBase0) + 0xF),
    (void*)(((char*)&d_d_name__stringBase0) + 0x12),
    (void*)(((char*)&d_d_name__stringBase0) + 0x15),
    (void*)(((char*)&d_d_name__stringBase0) + 0x18),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1B),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1E),
    (void*)(((char*)&d_d_name__stringBase0) + 0x21),
    (void*)(((char*)&d_d_name__stringBase0) + 0x24),
    (void*)(((char*)&d_d_name__stringBase0) + 0x27),
    (void*)(((char*)&d_d_name__stringBase0) + 0x2A),
    (void*)(((char*)&d_d_name__stringBase0) + 0x2D),
    (void*)(((char*)&d_d_name__stringBase0) + 0x30),
    (void*)(((char*)&d_d_name__stringBase0) + 0x33),
    (void*)(((char*)&d_d_name__stringBase0) + 0x36),
    (void*)(((char*)&d_d_name__stringBase0) + 0x39),
    (void*)(((char*)&d_d_name__stringBase0) + 0x3C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x3F),
    (void*)(((char*)&d_d_name__stringBase0) + 0x42),
    (void*)(((char*)&d_d_name__stringBase0) + 0x45),
    (void*)(((char*)&d_d_name__stringBase0) + 0x48),
    (void*)(((char*)&d_d_name__stringBase0) + 0x4B),
    (void*)(((char*)&d_d_name__stringBase0) + 0x4E),
    (void*)(((char*)&d_d_name__stringBase0) + 0x51),
    (void*)(((char*)&d_d_name__stringBase0) + 0x54),
    (void*)(((char*)&d_d_name__stringBase0) + 0x57),
    (void*)(((char*)&d_d_name__stringBase0) + 0x5A),
    (void*)(((char*)&d_d_name__stringBase0) + 0x5D),
    (void*)(((char*)&d_d_name__stringBase0) + 0x60),
    (void*)(((char*)&d_d_name__stringBase0) + 0x63),
    (void*)(((char*)&d_d_name__stringBase0) + 0x66),
    (void*)(((char*)&d_d_name__stringBase0) + 0x69),
    (void*)(((char*)&d_d_name__stringBase0) + 0x6C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x6F),
    (void*)(((char*)&d_d_name__stringBase0) + 0x6C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x72),
    (void*)(((char*)&d_d_name__stringBase0) + 0x75),
    (void*)(((char*)&d_d_name__stringBase0) + 0x78),
    (void*)(((char*)&d_d_name__stringBase0) + 0x7B),
    (void*)(((char*)&d_d_name__stringBase0) + 0x7E),
    (void*)(((char*)&d_d_name__stringBase0) + 0x81),
    (void*)(((char*)&d_d_name__stringBase0) + 0x84),
    (void*)(((char*)&d_d_name__stringBase0) + 0x6C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x87),
    (void*)(((char*)&d_d_name__stringBase0) + 0x6C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x8A),
    (void*)(((char*)&d_d_name__stringBase0) + 0x8D),
    (void*)(((char*)&d_d_name__stringBase0) + 0x90),
    (void*)(((char*)&d_d_name__stringBase0) + 0x93),
    (void*)(((char*)&d_d_name__stringBase0) + 0x96),
    (void*)(((char*)&d_d_name__stringBase0) + 0x99),
    (void*)(((char*)&d_d_name__stringBase0) + 0x9C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x6C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x9F),
    (void*)(((char*)&d_d_name__stringBase0) + 0x6C),
    (void*)(((char*)&d_d_name__stringBase0) + 0xA2),
    (void*)(((char*)&d_d_name__stringBase0) + 0xA5),
    (void*)(((char*)&d_d_name__stringBase0) + 0x6C),
    (void*)(((char*)&d_d_name__stringBase0) + 0xA8),
    (void*)(((char*)&d_d_name__stringBase0) + 0xAB),
    (void*)(((char*)&d_d_name__stringBase0) + 0xAE),
};
#pragma pop

/* 803C2060-803C2164 -00001 0104+00 0/1 0/0 0/0 .data            l_mojiHira2 */
#pragma push
#pragma force_active on
SECTION_DATA static void* l_mojiHira2[65] = {
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB4),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB7),
    (void*)(((char*)&d_d_name__stringBase0) + 0xBA),
    (void*)(((char*)&d_d_name__stringBase0) + 0xBD),
    (void*)(((char*)&d_d_name__stringBase0) + 0xC0),
    (void*)(((char*)&d_d_name__stringBase0) + 0xC3),
    (void*)(((char*)&d_d_name__stringBase0) + 0xC6),
    (void*)(((char*)&d_d_name__stringBase0) + 0xC9),
    (void*)(((char*)&d_d_name__stringBase0) + 0xCC),
    (void*)(((char*)&d_d_name__stringBase0) + 0xCF),
    (void*)(((char*)&d_d_name__stringBase0) + 0xD2),
    (void*)(((char*)&d_d_name__stringBase0) + 0xD5),
    (void*)(((char*)&d_d_name__stringBase0) + 0xD8),
    (void*)(((char*)&d_d_name__stringBase0) + 0xDB),
    (void*)(((char*)&d_d_name__stringBase0) + 0xDE),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xE1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xE4),
    (void*)(((char*)&d_d_name__stringBase0) + 0xE7),
    (void*)(((char*)&d_d_name__stringBase0) + 0xEA),
    (void*)(((char*)&d_d_name__stringBase0) + 0xED),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
};
#pragma pop

/* 803C2164-803C2268 -00001 0104+00 0/1 0/0 0/0 .data            l_mojiHira3 */
#pragma push
#pragma force_active on
SECTION_DATA static void* l_mojiHira3[65] = {
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xF0),
    (void*)(((char*)&d_d_name__stringBase0) + 0xF3),
    (void*)(((char*)&d_d_name__stringBase0) + 0xF6),
    (void*)(((char*)&d_d_name__stringBase0) + 0xF9),
    (void*)(((char*)&d_d_name__stringBase0) + 0xFC),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
};
#pragma pop

/* 803C2268-803C236C -00001 0104+00 0/3 0/0 0/0 .data            l_mojikata */
#pragma push
#pragma force_active on
SECTION_DATA static void* l_mojikata[65] = {
    (void*)(((char*)&d_d_name__stringBase0) + 0xFF),
    (void*)(((char*)&d_d_name__stringBase0) + 0x102),
    (void*)(((char*)&d_d_name__stringBase0) + 0x105),
    (void*)(((char*)&d_d_name__stringBase0) + 0x108),
    (void*)(((char*)&d_d_name__stringBase0) + 0x10B),
    (void*)(((char*)&d_d_name__stringBase0) + 0x10E),
    (void*)(((char*)&d_d_name__stringBase0) + 0x111),
    (void*)(((char*)&d_d_name__stringBase0) + 0x114),
    (void*)(((char*)&d_d_name__stringBase0) + 0x117),
    (void*)(((char*)&d_d_name__stringBase0) + 0x11A),
    (void*)(((char*)&d_d_name__stringBase0) + 0x11D),
    (void*)(((char*)&d_d_name__stringBase0) + 0x120),
    (void*)(((char*)&d_d_name__stringBase0) + 0x123),
    (void*)(((char*)&d_d_name__stringBase0) + 0x126),
    (void*)(((char*)&d_d_name__stringBase0) + 0x129),
    (void*)(((char*)&d_d_name__stringBase0) + 0x12C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x12F),
    (void*)(((char*)&d_d_name__stringBase0) + 0x132),
    (void*)(((char*)&d_d_name__stringBase0) + 0x135),
    (void*)(((char*)&d_d_name__stringBase0) + 0x138),
    (void*)(((char*)&d_d_name__stringBase0) + 0x13B),
    (void*)(((char*)&d_d_name__stringBase0) + 0x13E),
    (void*)(((char*)&d_d_name__stringBase0) + 0x141),
    (void*)(((char*)&d_d_name__stringBase0) + 0x144),
    (void*)(((char*)&d_d_name__stringBase0) + 0x147),
    (void*)(((char*)&d_d_name__stringBase0) + 0x14A),
    (void*)(((char*)&d_d_name__stringBase0) + 0x14D),
    (void*)(((char*)&d_d_name__stringBase0) + 0x150),
    (void*)(((char*)&d_d_name__stringBase0) + 0x153),
    (void*)(((char*)&d_d_name__stringBase0) + 0x156),
    (void*)(((char*)&d_d_name__stringBase0) + 0x159),
    (void*)(((char*)&d_d_name__stringBase0) + 0x15C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x15F),
    (void*)(((char*)&d_d_name__stringBase0) + 0x162),
    (void*)(((char*)&d_d_name__stringBase0) + 0x165),
    (void*)(((char*)&d_d_name__stringBase0) + 0x168),
    (void*)(((char*)&d_d_name__stringBase0) + 0x6C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x16B),
    (void*)(((char*)&d_d_name__stringBase0) + 0x6C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x16E),
    (void*)(((char*)&d_d_name__stringBase0) + 0x171),
    (void*)(((char*)&d_d_name__stringBase0) + 0x174),
    (void*)(((char*)&d_d_name__stringBase0) + 0x177),
    (void*)(((char*)&d_d_name__stringBase0) + 0x17A),
    (void*)(((char*)&d_d_name__stringBase0) + 0x17D),
    (void*)(((char*)&d_d_name__stringBase0) + 0x180),
    (void*)(((char*)&d_d_name__stringBase0) + 0x6C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x183),
    (void*)(((char*)&d_d_name__stringBase0) + 0x6C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x186),
    (void*)(((char*)&d_d_name__stringBase0) + 0x189),
    (void*)(((char*)&d_d_name__stringBase0) + 0x18C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x18F),
    (void*)(((char*)&d_d_name__stringBase0) + 0x192),
    (void*)(((char*)&d_d_name__stringBase0) + 0x195),
    (void*)(((char*)&d_d_name__stringBase0) + 0x198),
    (void*)(((char*)&d_d_name__stringBase0) + 0x6C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x19B),
    (void*)(((char*)&d_d_name__stringBase0) + 0x6C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x19E),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1A1),
    (void*)(((char*)&d_d_name__stringBase0) + 0x6C),
    (void*)(((char*)&d_d_name__stringBase0) + 0xA8),
    (void*)(((char*)&d_d_name__stringBase0) + 0xAB),
    (void*)(((char*)&d_d_name__stringBase0) + 0xAE),
};
#pragma pop

/* 803C236C-803C2470 -00001 0104+00 0/1 0/0 0/0 .data            l_mojikata2 */
#pragma push
#pragma force_active on
SECTION_DATA static void* l_mojikata2[65] = {
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1A4),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1A7),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1AA),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1AD),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1B0),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1B3),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1B6),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1B9),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1BC),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1BF),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1C2),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1C5),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1C8),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1CB),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1CE),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1D1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1D4),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1D7),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1DA),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1DD),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1E0),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
};
#pragma pop

/* 803C2470-803C2574 -00001 0104+00 0/1 0/0 0/0 .data            l_mojikata3 */
#pragma push
#pragma force_active on
SECTION_DATA static void* l_mojikata3[65] = {
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1E3),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1E6),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1E9),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1EC),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1EF),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
    (void*)(((char*)&d_d_name__stringBase0) + 0xB1),
};
#pragma pop

/* 803C2574-803C2678 -00001 0104+00 0/3 0/0 0/0 .data            l_mojiEisu */
#pragma push
#pragma force_active on
SECTION_DATA static void* l_mojiEisu[65] = {
    (void*)(((char*)&d_d_name__stringBase0) + 0x1F2),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1F4),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1F6),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1F8),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1FA),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1FC),
    (void*)(((char*)&d_d_name__stringBase0) + 0x1FE),
    (void*)(((char*)&d_d_name__stringBase0) + 0x200),
    (void*)(((char*)&d_d_name__stringBase0) + 0x202),
    (void*)(((char*)&d_d_name__stringBase0) + 0x204),
    (void*)(((char*)&d_d_name__stringBase0) + 0x206),
    (void*)(((char*)&d_d_name__stringBase0) + 0x208),
    (void*)(((char*)&d_d_name__stringBase0) + 0x20A),
    (void*)(((char*)&d_d_name__stringBase0) + 0x20C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x20E),
    (void*)(((char*)&d_d_name__stringBase0) + 0x210),
    (void*)(((char*)&d_d_name__stringBase0) + 0x212),
    (void*)(((char*)&d_d_name__stringBase0) + 0x214),
    (void*)(((char*)&d_d_name__stringBase0) + 0x216),
    (void*)(((char*)&d_d_name__stringBase0) + 0x218),
    (void*)(((char*)&d_d_name__stringBase0) + 0x21A),
    (void*)(((char*)&d_d_name__stringBase0) + 0x21C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x21E),
    (void*)(((char*)&d_d_name__stringBase0) + 0x220),
    (void*)(((char*)&d_d_name__stringBase0) + 0x222),
    (void*)(((char*)&d_d_name__stringBase0) + 0x224),
    (void*)(((char*)&d_d_name__stringBase0) + 0x226),
    (void*)(((char*)&d_d_name__stringBase0) + 0x228),
    (void*)(((char*)&d_d_name__stringBase0) + 0x22A),
    (void*)(((char*)&d_d_name__stringBase0) + 0x22C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x22E),
    (void*)(((char*)&d_d_name__stringBase0) + 0x230),
    (void*)(((char*)&d_d_name__stringBase0) + 0x232),
    (void*)(((char*)&d_d_name__stringBase0) + 0x234),
    (void*)(((char*)&d_d_name__stringBase0) + 0x236),
    (void*)(((char*)&d_d_name__stringBase0) + 0x238),
    (void*)(((char*)&d_d_name__stringBase0) + 0x23A),
    (void*)(((char*)&d_d_name__stringBase0) + 0x23C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x23E),
    (void*)(((char*)&d_d_name__stringBase0) + 0x240),
    (void*)(((char*)&d_d_name__stringBase0) + 0x242),
    (void*)(((char*)&d_d_name__stringBase0) + 0x244),
    (void*)(((char*)&d_d_name__stringBase0) + 0x246),
    (void*)(((char*)&d_d_name__stringBase0) + 0x248),
    (void*)(((char*)&d_d_name__stringBase0) + 0x24A),
    (void*)(((char*)&d_d_name__stringBase0) + 0x24C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x24E),
    (void*)(((char*)&d_d_name__stringBase0) + 0x250),
    (void*)(((char*)&d_d_name__stringBase0) + 0x252),
    (void*)(((char*)&d_d_name__stringBase0) + 0x254),
    (void*)(((char*)&d_d_name__stringBase0) + 0x256),
    (void*)(((char*)&d_d_name__stringBase0) + 0x258),
    (void*)(((char*)&d_d_name__stringBase0) + 0x25A),
    (void*)(((char*)&d_d_name__stringBase0) + 0x25C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x25E),
    (void*)(((char*)&d_d_name__stringBase0) + 0x260),
    (void*)(((char*)&d_d_name__stringBase0) + 0x262),
    (void*)(((char*)&d_d_name__stringBase0) + 0x264),
    (void*)(((char*)&d_d_name__stringBase0) + 0x266),
    (void*)(((char*)&d_d_name__stringBase0) + 0x268),
    (void*)(((char*)&d_d_name__stringBase0) + 0x26A),
    (void*)(((char*)&d_d_name__stringBase0) + 0x26C),
    (void*)(((char*)&d_d_name__stringBase0) + 0x26E),
    (void*)(((char*)&d_d_name__stringBase0) + 0x270),
    (void*)(((char*)&d_d_name__stringBase0) + 0x272),
};
#pragma pop

/* 803C2678-803C2684 -00001 000C+00 0/1 0/0 0/0 .data            @3825 */
#pragma push
#pragma force_active on
SECTION_DATA static void* lit_3825[3] = {
    (void*)NULL,
    (void*)0xFFFFFFFF,
    (void*)MojiSelect__7dName_cFv,
};
#pragma pop

/* 803C2684-803C2690 -00001 000C+00 0/1 0/0 0/0 .data            @3826 */
#pragma push
#pragma force_active on
SECTION_DATA static void* lit_3826[3] = {
    (void*)NULL,
    (void*)0xFFFFFFFF,
    (void*)MojiSelectAnm__7dName_cFv,
};
#pragma pop

/* 803C2690-803C269C -00001 000C+00 0/1 0/0 0/0 .data            @3827 */
#pragma push
#pragma force_active on
SECTION_DATA static void* lit_3827[3] = {
    (void*)NULL,
    (void*)0xFFFFFFFF,
    (void*)MojiSelectAnm2__7dName_cFv,
};
#pragma pop

/* 803C269C-803C26A8 -00001 000C+00 0/1 0/0 0/0 .data            @3828 */
#pragma push
#pragma force_active on
SECTION_DATA static void* lit_3828[3] = {
    (void*)NULL,
    (void*)0xFFFFFFFF,
    (void*)MojiSelectAnm3__7dName_cFv,
};
#pragma pop

/* 803C26A8-803C26B4 -00001 000C+00 0/1 0/0 0/0 .data            @3829 */
#pragma push
#pragma force_active on
SECTION_DATA static void* lit_3829[3] = {
    (void*)NULL,
    (void*)0xFFFFFFFF,
    (void*)MenuSelect__7dName_cFv,
};
#pragma pop

/* 803C26B4-803C26C0 -00001 000C+00 0/1 0/0 0/0 .data            @3830 */
#pragma push
#pragma force_active on
SECTION_DATA static void* lit_3830[3] = {
    (void*)NULL,
    (void*)0xFFFFFFFF,
    (void*)MenuSelectAnm__7dName_cFv,
};
#pragma pop

/* 803C26C0-803C26CC -00001 000C+00 0/1 0/0 0/0 .data            @3831 */
#pragma push
#pragma force_active on
SECTION_DATA static void* lit_3831[3] = {
    (void*)NULL,
    (void*)0xFFFFFFFF,
    (void*)MenuSelectAnm2__7dName_cFv,
};
#pragma pop

/* 803C26CC-803C26D8 -00001 000C+00 0/1 0/0 0/0 .data            @3832 */
#pragma push
#pragma force_active on
SECTION_DATA static void* lit_3832[3] = {
    (void*)NULL,
    (void*)0xFFFFFFFF,
    (void*)MenuSelectAnm3__7dName_cFv,
};
#pragma pop

/* 803C26D8-803C26E4 -00001 000C+00 0/1 0/0 0/0 .data            @3833 */
#pragma push
#pragma force_active on
SECTION_DATA static void* lit_3833[3] = {
    (void*)NULL,
    (void*)0xFFFFFFFF,
    (void*)Wait__7dName_cFv,
};
#pragma pop

/* 803C26E4-803C2750 01F804 006C+00 1/2 0/0 0/0 .data            SelProc */
SECTION_DATA static u8 SelProc[108] = {
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
};

/* 803C2750-803C2788 -00001 0034+04 1/1 0/0 0/0 .data            @4121 */
SECTION_DATA static void* lit_4121[13 + 1 /* padding */] = {
    (void*)(((char*)mojiChange__7dName_cFUc) + 0x8C),
    (void*)(((char*)mojiChange__7dName_cFUc) + 0x130),
    (void*)(((char*)mojiChange__7dName_cFUc) + 0x170),
    (void*)(((char*)mojiChange__7dName_cFUc) + 0x1B0),
    (void*)(((char*)mojiChange__7dName_cFUc) + 0x358),
    (void*)(((char*)mojiChange__7dName_cFUc) + 0x2D4),
    (void*)(((char*)mojiChange__7dName_cFUc) + 0x358),
    (void*)(((char*)mojiChange__7dName_cFUc) + 0x31C),
    (void*)(((char*)mojiChange__7dName_cFUc) + 0x358),
    (void*)(((char*)mojiChange__7dName_cFUc) + 0x358),
    (void*)(((char*)mojiChange__7dName_cFUc) + 0x8C),
    (void*)(((char*)mojiChange__7dName_cFUc) + 0x31C),
    (void*)(((char*)mojiChange__7dName_cFUc) + 0x1B0),
    /* padding */
    NULL,
};

/* 803C2788-803C27C8 01F8A8 0040+00 0/1 0/0 0/0 .data            l_cur0TagName$4610 */
#pragma push
#pragma force_active on
SECTION_DATA static u8 l_cur0TagName[64] = {
    0x00, 0x00, 0x00, 0x00, 0x73, 0x5F, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x73, 0x5F, 0x30, 0x31,
    0x00, 0x00, 0x00, 0x00, 0x73, 0x5F, 0x30, 0x32, 0x00, 0x00, 0x00, 0x00, 0x73, 0x5F, 0x30, 0x33,
    0x00, 0x00, 0x00, 0x00, 0x73, 0x5F, 0x30, 0x34, 0x00, 0x00, 0x00, 0x00, 0x73, 0x5F, 0x30, 0x35,
    0x00, 0x00, 0x00, 0x00, 0x73, 0x5F, 0x30, 0x36, 0x00, 0x00, 0x00, 0x00, 0x73, 0x5F, 0x30, 0x37,
};
#pragma pop

/* 803C27C8-803C2808 01F8E8 0040+00 0/1 0/0 0/0 .data            l_cur1TagName$4611 */
#pragma push
#pragma force_active on
SECTION_DATA static u8 l_cur1TagName[64] = {
    0x00, 0x00, 0x00, 0x00, 0x73, 0x5F, 0x30, 0x72, 0x00, 0x00, 0x00, 0x73, 0x5F, 0x30, 0x31, 0x72,
    0x00, 0x00, 0x00, 0x73, 0x5F, 0x30, 0x32, 0x72, 0x00, 0x00, 0x00, 0x73, 0x5F, 0x30, 0x33, 0x72,
    0x00, 0x00, 0x00, 0x73, 0x5F, 0x30, 0x34, 0x72, 0x00, 0x00, 0x00, 0x73, 0x5F, 0x30, 0x35, 0x72,
    0x00, 0x00, 0x00, 0x73, 0x5F, 0x30, 0x36, 0x72, 0x00, 0x00, 0x00, 0x73, 0x5F, 0x30, 0x37, 0x72,
};
#pragma pop

/* 803C2808-803C2828 01F928 0020+00 0/1 0/0 0/0 .data            l_menu_icon_tag$4617 */
#pragma push
#pragma force_active on
SECTION_DATA static u8 l_menu_icon_tag[32] = {
    0x00, 0x70, 0x5F, 0x41, 0x42, 0x43, 0x5F, 0x6E, 0x00, 0x70, 0x5F, 0x61, 0x62, 0x63, 0x5F, 0x6E,
    0x6A, 0x5F, 0x65, 0x69, 0x67, 0x6F, 0x5F, 0x6E, 0x00, 0x70, 0x5F, 0x65, 0x6E, 0x64, 0x5F, 0x6E,
};
#pragma pop

/* 803C2828-803C28A0 01F948 0078+00 0/1 0/0 0/0 .data            l_menu_tag$4618 */
#pragma push
#pragma force_active on
SECTION_DATA static u8 l_menu_tag[120] = {
    0x00, 0x70, 0x5F, 0x41, 0x42, 0x43, 0x5F, 0x30, 0x00, 0x70, 0x5F, 0x41, 0x42, 0x43, 0x5F,
    0x31, 0x00, 0x70, 0x5F, 0x41, 0x42, 0x43, 0x5F, 0x32, 0x00, 0x70, 0x5F, 0x61, 0x62, 0x63,
    0x5F, 0x30, 0x00, 0x70, 0x5F, 0x61, 0x62, 0x63, 0x5F, 0x31, 0x00, 0x70, 0x5F, 0x61, 0x62,
    0x63, 0x5F, 0x32, 0x6D, 0x5F, 0x65, 0x69, 0x67, 0x6F, 0x5F, 0x30, 0x6D, 0x5F, 0x65, 0x69,
    0x67, 0x6F, 0x5F, 0x31, 0x6D, 0x5F, 0x65, 0x69, 0x67, 0x6F, 0x5F, 0x32, 0x00, 0x70, 0x5F,
    0x65, 0x6E, 0x64, 0x5F, 0x30, 0x00, 0x70, 0x5F, 0x65, 0x6E, 0x64, 0x5F, 0x31, 0x00, 0x70,
    0x5F, 0x65, 0x6E, 0x64, 0x5F, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
};
#pragma pop

/* 803C28A0-803C28B0 01F9C0 0010+00 0/1 0/0 0/0 .data            l_menu_msg$4619 */
#pragma push
#pragma force_active on
SECTION_DATA static u8 l_menu_msg[16] = {
    0x00, 0x00, 0x03, 0x8B, 0x00, 0x00, 0x03, 0x8C, 0x00, 0x00, 0x03, 0x88, 0x00, 0x00, 0x03, 0x8E,
};
#pragma pop

/* 803C28B0-803C2AB8 01F9D0 0208+00 0/1 0/0 0/0 .data            l_tagName$4635 */
#pragma push
#pragma force_active on
SECTION_DATA static u8 l_tagName[520] = {
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x30, 0x5F, 0x30, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x30, 0x5F, 0x31,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x30, 0x5F, 0x32, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x30, 0x5F, 0x33,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x30, 0x5F, 0x34, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x31, 0x5F, 0x30,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x31, 0x5F, 0x31, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x31, 0x5F, 0x32,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x31, 0x5F, 0x33, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x31, 0x5F, 0x34,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x32, 0x5F, 0x30, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x32, 0x5F, 0x31,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x32, 0x5F, 0x32, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x32, 0x5F, 0x33,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x32, 0x5F, 0x34, 0x00, 0x00, 0x00, 0x6D, 0x30, 0x33, 0x5F, 0x30,
    0x00, 0x00, 0x00, 0x6D, 0x30, 0x33, 0x5F, 0x31, 0x00, 0x00, 0x00, 0x6D, 0x30, 0x33, 0x5F, 0x32,
    0x00, 0x00, 0x00, 0x6D, 0x30, 0x33, 0x5F, 0x33, 0x00, 0x00, 0x00, 0x6D, 0x30, 0x33, 0x5F, 0x34,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x34, 0x5F, 0x30, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x34, 0x5F, 0x31,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x34, 0x5F, 0x32, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x34, 0x5F, 0x33,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x34, 0x5F, 0x34, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x35, 0x5F, 0x30,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x35, 0x5F, 0x31, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x35, 0x5F, 0x32,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x35, 0x5F, 0x33, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x35, 0x5F, 0x34,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x36, 0x5F, 0x30, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x36, 0x5F, 0x31,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x36, 0x5F, 0x32, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x36, 0x5F, 0x33,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x36, 0x5F, 0x34, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x37, 0x5F, 0x30,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x37, 0x5F, 0x31, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x37, 0x5F, 0x32,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x37, 0x5F, 0x33, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x37, 0x5F, 0x34,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x38, 0x5F, 0x30, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x38, 0x5F, 0x31,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x38, 0x5F, 0x32, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x38, 0x5F, 0x33,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x38, 0x5F, 0x34, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x39, 0x5F, 0x30,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x39, 0x5F, 0x31, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x39, 0x5F, 0x32,
    0x00, 0x00, 0x6D, 0x5F, 0x30, 0x39, 0x5F, 0x33, 0x00, 0x00, 0x6D, 0x5F, 0x30, 0x39, 0x5F, 0x34,
    0x00, 0x00, 0x6D, 0x5F, 0x31, 0x30, 0x5F, 0x30, 0x00, 0x00, 0x6D, 0x5F, 0x31, 0x30, 0x5F, 0x31,
    0x00, 0x00, 0x6D, 0x5F, 0x31, 0x30, 0x5F, 0x32, 0x00, 0x00, 0x6D, 0x5F, 0x31, 0x30, 0x5F, 0x33,
    0x00, 0x00, 0x6D, 0x5F, 0x31, 0x30, 0x5F, 0x34, 0x00, 0x00, 0x6D, 0x5F, 0x31, 0x31, 0x5F, 0x30,
    0x00, 0x00, 0x6D, 0x5F, 0x31, 0x31, 0x5F, 0x31, 0x00, 0x00, 0x6D, 0x5F, 0x31, 0x31, 0x5F, 0x32,
    0x00, 0x00, 0x6D, 0x5F, 0x31, 0x31, 0x5F, 0x33, 0x00, 0x00, 0x6D, 0x5F, 0x31, 0x31, 0x5F, 0x34,
    0x00, 0x00, 0x00, 0x6D, 0x31, 0x32, 0x5F, 0x30, 0x00, 0x00, 0x00, 0x6D, 0x31, 0x32, 0x5F, 0x31,
    0x00, 0x00, 0x00, 0x6D, 0x31, 0x32, 0x5F, 0x32, 0x00, 0x00, 0x00, 0x6D, 0x31, 0x32, 0x5F, 0x33,
    0x00, 0x00, 0x00, 0x6D, 0x31, 0x32, 0x5F, 0x34,
};
#pragma pop

/* 803C2AB8-803C2AF8 01FBD8 0040+00 0/1 0/0 0/0 .data            l_nameTagName$4642 */
#pragma push
#pragma force_active on
SECTION_DATA static u8 l_nameTagName[64] = {
    0x00, 0x6E, 0x61, 0x6D, 0x65, 0x5F, 0x30, 0x30, 0x00, 0x6E, 0x61, 0x6D, 0x65, 0x5F, 0x30, 0x31,
    0x00, 0x6E, 0x61, 0x6D, 0x65, 0x5F, 0x30, 0x32, 0x00, 0x6E, 0x61, 0x6D, 0x65, 0x5F, 0x30, 0x33,
    0x00, 0x6E, 0x61, 0x6D, 0x65, 0x5F, 0x30, 0x34, 0x00, 0x6E, 0x61, 0x6D, 0x65, 0x5F, 0x30, 0x35,
    0x00, 0x6E, 0x61, 0x6D, 0x65, 0x5F, 0x30, 0x36, 0x00, 0x6E, 0x61, 0x6D, 0x65, 0x5F, 0x30, 0x37,
};
#pragma pop

/* 803C2AF8-803C2B38 01FC18 0040+00 0/1 0/0 0/0 .data            l_nameCurTagName$4643 */
#pragma push
#pragma force_active on
SECTION_DATA static u8 l_nameCurTagName[64] = {
    0x00, 0x73, 0x5F, 0x5F, 0x6E, 0x5F, 0x30, 0x30, 0x00, 0x73, 0x5F, 0x5F, 0x6E, 0x5F, 0x30, 0x31,
    0x00, 0x73, 0x5F, 0x5F, 0x6E, 0x5F, 0x30, 0x32, 0x00, 0x73, 0x5F, 0x5F, 0x6E, 0x5F, 0x30, 0x33,
    0x00, 0x73, 0x5F, 0x5F, 0x6E, 0x5F, 0x30, 0x34, 0x00, 0x73, 0x5F, 0x5F, 0x6E, 0x5F, 0x30, 0x35,
    0x00, 0x73, 0x5F, 0x5F, 0x6E, 0x5F, 0x30, 0x36, 0x00, 0x73, 0x5F, 0x5F, 0x6E, 0x5F, 0x30, 0x37,
};
#pragma pop

/* 803C2B38-803C2B64 01FC58 0010+1C 3/3 0/0 0/0 .data            __vt__14dDlst_NameIN_c */
SECTION_DATA extern void* __vt__14dDlst_NameIN_c[4 + 7 /* padding */] = {
    (void*)NULL /* RTTI */,
    (void*)NULL,
    (void*)draw__14dDlst_NameIN_cFv,
    (void*)__dt__14dDlst_NameIN_cFv,
    /* padding */
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
};

/* 803C2B64-803C2B7C 01FC84 000C+0C 2/2 0/0 0/0 .data            __vt__7dName_c */
SECTION_DATA extern void* __vt__7dName_c[3 + 3 /* padding */] = {
    (void*)NULL /* RTTI */,
    (void*)NULL,
    (void*)__dt__7dName_cFv,
    /* padding */
    NULL,
    NULL,
    NULL,
};

/* 803C2B7C-803C2B88 01FC9C 000C+00 2/2 0/0 0/0 .data            __vt__9dNm_HIO_c */
SECTION_DATA extern void* __vt__9dNm_HIO_c[3] = {
    (void*)NULL /* RTTI */,
    (void*)NULL,
    (void*)__dt__9dNm_HIO_cFv,
};

/* 80454DB0-80454DB4 0033B0 0004+00 1/1 0/0 0/0 .sdata2          @3665 */
SECTION_SDATA2 static f32 lit_3665 = 13.0f / 10.0f;

/* 80454DB4-80454DB8 0033B4 0004+00 1/1 0/0 0/0 .sdata2          @3666 */
SECTION_SDATA2 static f32 lit_3666 = 7.0f / 5.0f;

/* 8024E3E0-8024E408 248D20 0028+00 1/1 0/0 0/0 .text            __ct__9dNm_HIO_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm dNm_HIO_c::dNm_HIO_c() {
    nofralloc
#include "asm/d/d_name/__ct__9dNm_HIO_cFv.s"
}
#pragma pop

/* 8024E408-8024E468 248D48 0060+00 0/0 1/1 0/0 .text            __ct__7dName_cFP7J2DPane */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm dName_c::dName_c(J2DPane* param_0) {
    nofralloc
#include "asm/d/d_name/__ct__7dName_cFP7J2DPane.s"
}
#pragma pop

/* 8024E468-8024E62C 248DA8 01C4+00 1/0 0/0 0/0 .text            __dt__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm dName_c::~dName_c() {
    nofralloc
#include "asm/d/d_name/__dt__7dName_cFv.s"
}
#pragma pop

/* ############################################################################################## */
/* 80430728-80430734 05D448 000C+00 1/1 0/0 0/0 .bss             @3660 */
static u8 lit_3660[12];

/* 80430734-80430748 05D454 0014+00 9/9 0/0 0/0 .bss             g_nmHIO */
static u8 g_nmHIO[20];

/* 80454DB8-80454DBC 0033B8 0004+00 1/1 0/0 0/0 .sdata2          @3755 */
SECTION_SDATA2 static f32 lit_3755 = 9.0f / 10.0f;

/* 80454DBC-80454DC0 0033BC 0004+00 1/1 0/0 0/0 .sdata2          @3756 */
SECTION_SDATA2 static f32 lit_3756 = 0.5f;

/* 8024E62C-8024E6D4 248F6C 00A8+00 1/1 0/0 0/0 .text            _create__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::_create() {
    nofralloc
#include "asm/d/d_name/_create__7dName_cFv.s"
}
#pragma pop

/* 8024E6D4-8024E7A4 249014 00D0+00 1/1 0/0 0/0 .text            init__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::init() {
    nofralloc
#include "asm/d/d_name/init__7dName_cFv.s"
}
#pragma pop

/* 8024E7A4-8024E7EC 2490E4 0048+00 0/0 4/4 0/0 .text            initial__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::initial() {
    nofralloc
#include "asm/d/d_name/initial__7dName_cFv.s"
}
#pragma pop

/* ############################################################################################## */
/* 80454DC0-80454DC4 0033C0 0004+00 16/16 0/0 0/0 .sdata2          @3820 */
SECTION_SDATA2 static f32 lit_3820 = 1.0f;

/* 8024E7EC-8024E9A0 24912C 01B4+00 0/0 2/2 0/0 .text            showIcon__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::showIcon() {
    nofralloc
#include "asm/d/d_name/showIcon__7dName_cFv.s"
}
#pragma pop

/* ############################################################################################## */
/* 80454DC4-80454DC8 0033C4 0004+00 6/6 0/0 0/0 .sdata2          @3886 */
SECTION_SDATA2 static f32 lit_3886 = -1.0f;

/* 8024E9A0-8024EC10 2492E0 0270+00 0/0 2/2 0/0 .text            _move__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::_move() {
    nofralloc
#include "asm/d/d_name/_move__7dName_cFv.s"
}
#pragma pop

/* 8024EC10-8024EC4C 249550 003C+00 3/3 0/0 0/0 .text            nameCheck__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::nameCheck() {
    nofralloc
#include "asm/d/d_name/nameCheck__7dName_cFv.s"
}
#pragma pop

/* 8024EC4C-8024EC84 24958C 0038+00 1/1 0/0 0/0 .text            playNameSet__7dName_cFi */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::playNameSet(int param_0) {
    nofralloc
#include "asm/d/d_name/playNameSet__7dName_cFi.s"
}
#pragma pop

/* ############################################################################################## */
/* 80454DC8-80454DD0 0033C8 0008+00 1/1 0/0 0/0 .sdata2          @3936 */
SECTION_SDATA2 static f64 lit_3936 = 4503601774854144.0 /* cast s32 to float */;

/* 8024EC84-8024ED48 2495C4 00C4+00 1/1 0/0 0/0 .text            cursorAnm__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::cursorAnm() {
    nofralloc
#include "asm/d/d_name/cursorAnm__7dName_cFv.s"
}
#pragma pop

/* 8024ED48-8024ED4C 249688 0004+00 1/0 0/0 0/0 .text            Wait__7dName_cFv */
void dName_c::Wait() {
    /* empty function */
}

/* 8024ED4C-8024F034 24968C 02E8+00 1/0 0/0 0/0 .text            MojiSelect__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::MojiSelect() {
    nofralloc
#include "asm/d/d_name/MojiSelect__7dName_cFv.s"
}
#pragma pop

/* ############################################################################################## */
/* 80454DD0-80454DD4 0033D0 0004+00 5/5 0/0 0/0 .sdata2          @4009 */
SECTION_SDATA2 static u8 lit_4009[4] = {
    0x00,
    0x00,
    0x00,
    0x00,
};

/* 8024F034-8024F0E0 249974 00AC+00 2/2 0/0 0/0 .text            MojiSelectAnmInit__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::MojiSelectAnmInit() {
    nofralloc
#include "asm/d/d_name/MojiSelectAnmInit__7dName_cFv.s"
}
#pragma pop

/* 8024F0E0-8024F164 249A20 0084+00 1/0 0/0 0/0 .text            MojiSelectAnm__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::MojiSelectAnm() {
    nofralloc
#include "asm/d/d_name/MojiSelectAnm__7dName_cFv.s"
}
#pragma pop

/* 8024F164-8024F1E8 249AA4 0084+00 1/0 0/0 0/0 .text            MojiSelectAnm2__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::MojiSelectAnm2() {
    nofralloc
#include "asm/d/d_name/MojiSelectAnm2__7dName_cFv.s"
}
#pragma pop

/* 8024F1E8-8024F1EC 249B28 0004+00 1/0 0/0 0/0 .text            MojiSelectAnm3__7dName_cFv */
void dName_c::MojiSelectAnm3() {
    /* empty function */
}

/* 8024F1EC-8024F55C 249B2C 0370+00 1/0 0/0 0/0 .text            mojiChange__7dName_cFUc */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::mojiChange(u8 param_0) {
    nofralloc
#include "asm/d/d_name/mojiChange__7dName_cFUc.s"
}
#pragma pop

/* 8024F55C-8024F59C 249E9C 0040+00 1/1 0/0 0/0 .text            selectMojiSet__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::selectMojiSet() {
    nofralloc
#include "asm/d/d_name/selectMojiSet__7dName_cFv.s"
}
#pragma pop

/* 8024F59C-8024F634 249EDC 0098+00 1/1 0/0 0/0 .text            getMoji__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::getMoji() {
    nofralloc
#include "asm/d/d_name/getMoji__7dName_cFv.s"
}
#pragma pop

/* 8024F634-8024F88C 249F74 0258+00 1/1 0/0 0/0 .text            setMoji__7dName_cFi */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::setMoji(int param_0) {
    nofralloc
#include "asm/d/d_name/setMoji__7dName_cFi.s"
}
#pragma pop

/* 8024F88C-8024F914 24A1CC 0088+00 4/4 0/0 0/0 .text            setNameText__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::setNameText() {
    nofralloc
#include "asm/d/d_name/setNameText__7dName_cFv.s"
}
#pragma pop

/* 8024F914-8024F994 24A254 0080+00 5/5 0/0 0/0 .text            nameCursorMove__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::nameCursorMove() {
    nofralloc
#include "asm/d/d_name/nameCursorMove__7dName_cFv.s"
}
#pragma pop

/* 8024F994-8024FAF4 24A2D4 0160+00 3/3 0/0 0/0 .text            selectCursorMove__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::selectCursorMove() {
    nofralloc
#include "asm/d/d_name/selectCursorMove__7dName_cFv.s"
}
#pragma pop

/* 8024FAF4-8024FB08 24A434 0014+00 1/1 0/0 0/0 .text            menuCursorPosSet__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::menuCursorPosSet() {
    nofralloc
#include "asm/d/d_name/menuCursorPosSet__7dName_cFv.s"
}
#pragma pop

/* 8024FB08-8024FDA0 24A448 0298+00 1/0 0/0 0/0 .text            MenuSelect__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::MenuSelect() {
    nofralloc
#include "asm/d/d_name/MenuSelect__7dName_cFv.s"
}
#pragma pop

/* 8024FDA0-8024FDF4 24A6E0 0054+00 2/2 0/0 0/0 .text            MenuSelectAnmInit__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::MenuSelectAnmInit() {
    nofralloc
#include "asm/d/d_name/MenuSelectAnmInit__7dName_cFv.s"
}
#pragma pop

/* 8024FDF4-8024FEB4 24A734 00C0+00 1/0 0/0 0/0 .text            MenuSelectAnm__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::MenuSelectAnm() {
    nofralloc
#include "asm/d/d_name/MenuSelectAnm__7dName_cFv.s"
}
#pragma pop

/* 8024FEB4-8024FFA0 24A7F4 00EC+00 1/0 0/0 0/0 .text            MenuSelectAnm2__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::MenuSelectAnm2() {
    nofralloc
#include "asm/d/d_name/MenuSelectAnm2__7dName_cFv.s"
}
#pragma pop

/* 8024FFA0-8024FFA4 24A8E0 0004+00 1/0 0/0 0/0 .text            MenuSelectAnm3__7dName_cFv */
void dName_c::MenuSelectAnm3() {
    /* empty function */
}

/* 8024FFA4-80250074 24A8E4 00D0+00 1/1 0/0 0/0 .text            menuAbtnSelect__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::menuAbtnSelect() {
    nofralloc
#include "asm/d/d_name/menuAbtnSelect__7dName_cFv.s"
}
#pragma pop

/* 80250074-802501B0 24A9B4 013C+00 1/1 0/0 0/0 .text            backSpace__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::backSpace() {
    nofralloc
#include "asm/d/d_name/backSpace__7dName_cFv.s"
}
#pragma pop

/* 802501B0-80250284 24AAF0 00D4+00 2/2 0/0 0/0 .text            mojiListChange__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::mojiListChange() {
    nofralloc
#include "asm/d/d_name/mojiListChange__7dName_cFv.s"
}
#pragma pop

/* 80250284-80250380 24ABC4 00FC+00 1/1 0/0 0/0 .text            menuCursorMove__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::menuCursorMove() {
    nofralloc
#include "asm/d/d_name/menuCursorMove__7dName_cFv.s"
}
#pragma pop

/* 80250380-802504A0 24ACC0 0120+00 1/1 0/0 0/0 .text            menuCursorMove2__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::menuCursorMove2() {
    nofralloc
#include "asm/d/d_name/menuCursorMove2__7dName_cFv.s"
}
#pragma pop

/* 802504A0-80250560 24ADE0 00C0+00 1/1 0/0 0/0 .text            selectCursorPosSet__7dName_cFi */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::selectCursorPosSet(int param_0) {
    nofralloc
#include "asm/d/d_name/selectCursorPosSet__7dName_cFi.s"
}
#pragma pop

/* 80250560-802505CC 24AEA0 006C+00 0/0 1/1 0/0 .text            _draw__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::_draw() {
    nofralloc
#include "asm/d/d_name/_draw__7dName_cFv.s"
}
#pragma pop

/* ############################################################################################## */
/* 80454DD4-80454DD8 0033D4 0004+00 1/1 0/0 0/0 .sdata2          @4722 */
SECTION_SDATA2 static f32 lit_4722 = 41.0f / 50.0f;

/* 80454DD8-80454DDC 0033D8 0004+00 1/1 0/0 0/0 .sdata2          @4723 */
SECTION_SDATA2 static f32 lit_4723 = 77.0f / 100.0f;

/* 80454DDC-80454DE0 0033DC 0004+00 1/1 0/0 0/0 .sdata2          @4724 */
SECTION_SDATA2 static f32 lit_4724 = 1.0f / 20.0f;

/* 80454DE0-80454DE8 0033E0 0004+04 1/1 0/0 0/0 .sdata2          @4725 */
SECTION_SDATA2 static f32 lit_4725[1 + 1 /* padding */] = {
    2.0f / 5.0f,
    /* padding */
    0.0f,
};

/* 802505CC-80250CEC 24AF0C 0720+00 1/1 0/0 0/0 .text            screenSet__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::screenSet() {
    nofralloc
#include "asm/d/d_name/screenSet__7dName_cFv.s"
}
#pragma pop

/* 80250CEC-80250E54 24B62C 0168+00 2/2 0/0 0/0 .text            displayInit__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::displayInit() {
    nofralloc
#include "asm/d/d_name/displayInit__7dName_cFv.s"
}
#pragma pop

/* 80250E54-80251048 24B794 01F4+00 1/1 0/0 0/0 .text            NameStrSet__7dName_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::NameStrSet() {
    nofralloc
#include "asm/d/d_name/NameStrSet__7dName_cFv.s"
}
#pragma pop

/* 80251048-80251094 24B988 004C+00 6/6 0/0 0/0 .text            getMenuPosIdx__7dName_cFUc */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dName_c::getMenuPosIdx(u8 param_0) {
    nofralloc
#include "asm/d/d_name/getMenuPosIdx__7dName_cFUc.s"
}
#pragma pop

/* 80251094-8025115C 24B9D4 00C8+00 1/0 0/0 0/0 .text            draw__14dDlst_NameIN_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void dDlst_NameIN_c::draw() {
    nofralloc
#include "asm/d/d_name/draw__14dDlst_NameIN_cFv.s"
}
#pragma pop

/* 8025115C-802511A4 24BA9C 0048+00 1/0 0/0 0/0 .text            __dt__14dDlst_NameIN_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm dDlst_NameIN_c::~dDlst_NameIN_c() {
    nofralloc
#include "asm/d/d_name/__dt__14dDlst_NameIN_cFv.s"
}
#pragma pop

/* 802511A4-802511EC 24BAE4 0048+00 2/1 0/0 0/0 .text            __dt__9dNm_HIO_cFv */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm dNm_HIO_c::~dNm_HIO_c() {
    nofralloc
#include "asm/d/d_name/__dt__9dNm_HIO_cFv.s"
}
#pragma pop

/* 802511EC-80251314 24BB2C 0128+00 0/0 1/0 0/0 .text            __sinit_d_name_cpp */
#pragma push
#pragma optimization_level 0
#pragma optimizewithasm off
asm void __sinit_d_name_cpp() {
    nofralloc
#include "asm/d/d_name/__sinit_d_name_cpp.s"
}
#pragma pop

#pragma push
#pragma force_active on
SECTION_CTORS void* const _ctors_802511EC = (void*)__sinit_d_name_cpp;
#pragma pop

/* 80399CC8-80399FE0 026328 0314+04 10/3 0/0 0/0 .rodata          @stringBase0 */
#pragma push
#pragma force_active on
#pragma section ".dead"
SECTION_DEAD static char const* const stringBase_80399CC8 = "あ";
SECTION_DEAD static char const* const stringBase_80399CCB = "い";
SECTION_DEAD static char const* const stringBase_80399CCE = "う";
SECTION_DEAD static char const* const stringBase_80399CD1 = "え";
SECTION_DEAD static char const* const stringBase_80399CD4 = "お";
SECTION_DEAD static char const* const stringBase_80399CD7 = "か";
SECTION_DEAD static char const* const stringBase_80399CDA = "き";
SECTION_DEAD static char const* const stringBase_80399CDD = "く";
SECTION_DEAD static char const* const stringBase_80399CE0 = "け";
SECTION_DEAD static char const* const stringBase_80399CE3 = "こ";
SECTION_DEAD static char const* const stringBase_80399CE6 = "さ";
SECTION_DEAD static char const* const stringBase_80399CE9 = "し";
SECTION_DEAD static char const* const stringBase_80399CEC = "す";
SECTION_DEAD static char const* const stringBase_80399CEF = "せ";
SECTION_DEAD static char const* const stringBase_80399CF2 = "そ";
SECTION_DEAD static char const* const stringBase_80399CF5 = "た";
SECTION_DEAD static char const* const stringBase_80399CF8 = "ち";
SECTION_DEAD static char const* const stringBase_80399CFB = "つ";
SECTION_DEAD static char const* const stringBase_80399CFE = "て";
SECTION_DEAD static char const* const stringBase_80399D01 = "と";
SECTION_DEAD static char const* const stringBase_80399D04 = "な";
SECTION_DEAD static char const* const stringBase_80399D07 = "に";
SECTION_DEAD static char const* const stringBase_80399D0A = "ぬ";
SECTION_DEAD static char const* const stringBase_80399D0D = "ね";
SECTION_DEAD static char const* const stringBase_80399D10 = "の";
SECTION_DEAD static char const* const stringBase_80399D13 = "は";
SECTION_DEAD static char const* const stringBase_80399D16 = "ひ";
SECTION_DEAD static char const* const stringBase_80399D19 = "ふ";
SECTION_DEAD static char const* const stringBase_80399D1C = "へ";
SECTION_DEAD static char const* const stringBase_80399D1F = "ほ";
SECTION_DEAD static char const* const stringBase_80399D22 = "ま";
SECTION_DEAD static char const* const stringBase_80399D25 = "み";
SECTION_DEAD static char const* const stringBase_80399D28 = "む";
SECTION_DEAD static char const* const stringBase_80399D2B = "め";
SECTION_DEAD static char const* const stringBase_80399D2E = "も";
SECTION_DEAD static char const* const stringBase_80399D31 = "や";
SECTION_DEAD static char const* const stringBase_80399D34 = " ";
SECTION_DEAD static char const* const stringBase_80399D37 = "ゆ";
SECTION_DEAD static char const* const stringBase_80399D3A = "よ";
SECTION_DEAD static char const* const stringBase_80399D3D = "ら";
SECTION_DEAD static char const* const stringBase_80399D40 = "り";
SECTION_DEAD static char const* const stringBase_80399D43 = "る";
SECTION_DEAD static char const* const stringBase_80399D46 = "れ";
SECTION_DEAD static char const* const stringBase_80399D49 = "ろ";
SECTION_DEAD static char const* const stringBase_80399D4C = "わ";
SECTION_DEAD static char const* const stringBase_80399D4F = "を";
SECTION_DEAD static char const* const stringBase_80399D52 = "ん";
SECTION_DEAD static char const* const stringBase_80399D55 = "ぁ";
SECTION_DEAD static char const* const stringBase_80399D58 = "ぃ";
SECTION_DEAD static char const* const stringBase_80399D5B = "ぅ";
SECTION_DEAD static char const* const stringBase_80399D5E = "ぇ";
SECTION_DEAD static char const* const stringBase_80399D61 = "ぉ";
SECTION_DEAD static char const* const stringBase_80399D64 = "ゃ";
SECTION_DEAD static char const* const stringBase_80399D67 = "ゅ";
SECTION_DEAD static char const* const stringBase_80399D6A = "ょ";
SECTION_DEAD static char const* const stringBase_80399D6D = "っ";
SECTION_DEAD static char const* const stringBase_80399D70 = "ー";
SECTION_DEAD static char const* const stringBase_80399D73 = "゛";
SECTION_DEAD static char const* const stringBase_80399D76 = "゜";
SECTION_DEAD static char const* const stringBase_80399D79 = "¥";
SECTION_DEAD static char const* const stringBase_80399D7C = "が";
SECTION_DEAD static char const* const stringBase_80399D7F = "ぎ";
SECTION_DEAD static char const* const stringBase_80399D82 = "ぐ";
SECTION_DEAD static char const* const stringBase_80399D85 = "げ";
SECTION_DEAD static char const* const stringBase_80399D88 = "ご";
SECTION_DEAD static char const* const stringBase_80399D8B = "ざ";
SECTION_DEAD static char const* const stringBase_80399D8E = "じ";
SECTION_DEAD static char const* const stringBase_80399D91 = "ず";
SECTION_DEAD static char const* const stringBase_80399D94 = "ぜ";
SECTION_DEAD static char const* const stringBase_80399D97 = "ぞ";
SECTION_DEAD static char const* const stringBase_80399D9A = "だ";
SECTION_DEAD static char const* const stringBase_80399D9D = "ぢ";
SECTION_DEAD static char const* const stringBase_80399DA0 = "づ";
SECTION_DEAD static char const* const stringBase_80399DA3 = "で";
SECTION_DEAD static char const* const stringBase_80399DA6 = "ど";
SECTION_DEAD static char const* const stringBase_80399DA9 = "ば";
SECTION_DEAD static char const* const stringBase_80399DAC = "び";
SECTION_DEAD static char const* const stringBase_80399DAF = "ぶ";
SECTION_DEAD static char const* const stringBase_80399DB2 = "べ";
SECTION_DEAD static char const* const stringBase_80399DB5 = "ぼ";
SECTION_DEAD static char const* const stringBase_80399DB8 = "ぱ";
SECTION_DEAD static char const* const stringBase_80399DBB = "ぴ";
SECTION_DEAD static char const* const stringBase_80399DBE = "ぷ";
SECTION_DEAD static char const* const stringBase_80399DC1 = "ぺ";
SECTION_DEAD static char const* const stringBase_80399DC4 = "ぽ";
SECTION_DEAD static char const* const stringBase_80399DC7 = "ア";
SECTION_DEAD static char const* const stringBase_80399DCA = "イ";
SECTION_DEAD static char const* const stringBase_80399DCD = "ウ";
SECTION_DEAD static char const* const stringBase_80399DD0 = "エ";
SECTION_DEAD static char const* const stringBase_80399DD3 = "オ";
SECTION_DEAD static char const* const stringBase_80399DD6 = "カ";
SECTION_DEAD static char const* const stringBase_80399DD9 = "キ";
SECTION_DEAD static char const* const stringBase_80399DDC = "ク";
SECTION_DEAD static char const* const stringBase_80399DDF = "ケ";
SECTION_DEAD static char const* const stringBase_80399DE2 = "コ";
SECTION_DEAD static char const* const stringBase_80399DE5 = "サ";
SECTION_DEAD static char const* const stringBase_80399DE8 = "シ";
SECTION_DEAD static char const* const stringBase_80399DEB = "ス";
SECTION_DEAD static char const* const stringBase_80399DEE = "セ";
// MWCC ignores mapping of some japanese characters using the
// byte 0x5C (ASCII '\'). This is why this string is hex-encoded.
SECTION_DEAD static char const* const stringBase_80399DF1 = "\x83\x5C";
SECTION_DEAD static char const* const stringBase_80399DF4 = "タ";
SECTION_DEAD static char const* const stringBase_80399DF7 = "チ";
SECTION_DEAD static char const* const stringBase_80399DFA = "ツ";
SECTION_DEAD static char const* const stringBase_80399DFD = "テ";
SECTION_DEAD static char const* const stringBase_80399E00 = "ト";
SECTION_DEAD static char const* const stringBase_80399E03 = "ナ";
SECTION_DEAD static char const* const stringBase_80399E06 = "ニ";
SECTION_DEAD static char const* const stringBase_80399E09 = "ヌ";
SECTION_DEAD static char const* const stringBase_80399E0C = "ネ";
SECTION_DEAD static char const* const stringBase_80399E0F = "ノ";
SECTION_DEAD static char const* const stringBase_80399E12 = "ハ";
SECTION_DEAD static char const* const stringBase_80399E15 = "ヒ";
SECTION_DEAD static char const* const stringBase_80399E18 = "フ";
SECTION_DEAD static char const* const stringBase_80399E1B = "ヘ";
SECTION_DEAD static char const* const stringBase_80399E1E = "ホ";
SECTION_DEAD static char const* const stringBase_80399E21 = "マ";
SECTION_DEAD static char const* const stringBase_80399E24 = "ミ";
SECTION_DEAD static char const* const stringBase_80399E27 = "ム";
SECTION_DEAD static char const* const stringBase_80399E2A = "メ";
SECTION_DEAD static char const* const stringBase_80399E2D = "モ";
SECTION_DEAD static char const* const stringBase_80399E30 = "ヤ";
SECTION_DEAD static char const* const stringBase_80399E33 = "ユ";
SECTION_DEAD static char const* const stringBase_80399E36 = "ヨ";
SECTION_DEAD static char const* const stringBase_80399E39 = "ラ";
SECTION_DEAD static char const* const stringBase_80399E3C = "リ";
SECTION_DEAD static char const* const stringBase_80399E3F = "ル";
SECTION_DEAD static char const* const stringBase_80399E42 = "レ";
SECTION_DEAD static char const* const stringBase_80399E45 = "ロ";
SECTION_DEAD static char const* const stringBase_80399E48 = "ワ";
SECTION_DEAD static char const* const stringBase_80399E4B = "ヲ";
SECTION_DEAD static char const* const stringBase_80399E4E = "ン";
SECTION_DEAD static char const* const stringBase_80399E51 = "ァ";
SECTION_DEAD static char const* const stringBase_80399E54 = "ィ";
SECTION_DEAD static char const* const stringBase_80399E57 = "ゥ";
SECTION_DEAD static char const* const stringBase_80399E5A = "ェ";
SECTION_DEAD static char const* const stringBase_80399E5D = "ォ";
SECTION_DEAD static char const* const stringBase_80399E60 = "ャ";
SECTION_DEAD static char const* const stringBase_80399E63 = "ュ";
SECTION_DEAD static char const* const stringBase_80399E66 = "ョ";
SECTION_DEAD static char const* const stringBase_80399E69 = "ッ";
SECTION_DEAD static char const* const stringBase_80399E6C = "ヴ";
SECTION_DEAD static char const* const stringBase_80399E6F = "ガ";
SECTION_DEAD static char const* const stringBase_80399E72 = "ギ";
SECTION_DEAD static char const* const stringBase_80399E75 = "グ";
SECTION_DEAD static char const* const stringBase_80399E78 = "ゲ";
SECTION_DEAD static char const* const stringBase_80399E7B = "ゴ";
SECTION_DEAD static char const* const stringBase_80399E7E = "ザ";
SECTION_DEAD static char const* const stringBase_80399E81 = "ジ";
SECTION_DEAD static char const* const stringBase_80399E84 = "ズ";
SECTION_DEAD static char const* const stringBase_80399E87 = "ゼ";
SECTION_DEAD static char const* const stringBase_80399E8A = "ゾ";
SECTION_DEAD static char const* const stringBase_80399E8D = "ダ";
SECTION_DEAD static char const* const stringBase_80399E90 = "ヂ";
SECTION_DEAD static char const* const stringBase_80399E93 = "ヅ";
SECTION_DEAD static char const* const stringBase_80399E96 = "デ";
SECTION_DEAD static char const* const stringBase_80399E99 = "ド";
SECTION_DEAD static char const* const stringBase_80399E9C = "バ";
SECTION_DEAD static char const* const stringBase_80399E9F = "ビ";
SECTION_DEAD static char const* const stringBase_80399EA2 = "ブ";
SECTION_DEAD static char const* const stringBase_80399EA5 = "ベ";
SECTION_DEAD static char const* const stringBase_80399EA8 = "ボ";
SECTION_DEAD static char const* const stringBase_80399EAB = "パ";
SECTION_DEAD static char const* const stringBase_80399EAE = "ピ";
SECTION_DEAD static char const* const stringBase_80399EB1 = "プ";
SECTION_DEAD static char const* const stringBase_80399EB4 = "ペ";
SECTION_DEAD static char const* const stringBase_80399EB7 = "ポ";
SECTION_DEAD static char const* const stringBase_80399EBA = "A";
SECTION_DEAD static char const* const stringBase_80399EBC = "N";
SECTION_DEAD static char const* const stringBase_80399EBE = "a";
SECTION_DEAD static char const* const stringBase_80399EC0 = "n";
SECTION_DEAD static char const* const stringBase_80399EC2 = "1";
SECTION_DEAD static char const* const stringBase_80399EC4 = "B";
SECTION_DEAD static char const* const stringBase_80399EC6 = "O";
SECTION_DEAD static char const* const stringBase_80399EC8 = "b";
SECTION_DEAD static char const* const stringBase_80399ECA = "o";
SECTION_DEAD static char const* const stringBase_80399ECC = "2";
SECTION_DEAD static char const* const stringBase_80399ECE = "C";
SECTION_DEAD static char const* const stringBase_80399ED0 = "P";
SECTION_DEAD static char const* const stringBase_80399ED2 = "c";
SECTION_DEAD static char const* const stringBase_80399ED4 = "p";
SECTION_DEAD static char const* const stringBase_80399ED6 = "3";
SECTION_DEAD static char const* const stringBase_80399ED8 = "D";
SECTION_DEAD static char const* const stringBase_80399EDA = "Q";
SECTION_DEAD static char const* const stringBase_80399EDC = "d";
SECTION_DEAD static char const* const stringBase_80399EDE = "q";
SECTION_DEAD static char const* const stringBase_80399EE0 = "4";
SECTION_DEAD static char const* const stringBase_80399EE2 = "E";
SECTION_DEAD static char const* const stringBase_80399EE4 = "R";
SECTION_DEAD static char const* const stringBase_80399EE6 = "e";
SECTION_DEAD static char const* const stringBase_80399EE8 = "r";
SECTION_DEAD static char const* const stringBase_80399EEA = "5";
SECTION_DEAD static char const* const stringBase_80399EEC = "F";
SECTION_DEAD static char const* const stringBase_80399EEE = "S";
SECTION_DEAD static char const* const stringBase_80399EF0 = "f";
SECTION_DEAD static char const* const stringBase_80399EF2 = "s";
SECTION_DEAD static char const* const stringBase_80399EF4 = "6";
SECTION_DEAD static char const* const stringBase_80399EF6 = "G";
SECTION_DEAD static char const* const stringBase_80399EF8 = "T";
SECTION_DEAD static char const* const stringBase_80399EFA = "g";
SECTION_DEAD static char const* const stringBase_80399EFC = "t";
SECTION_DEAD static char const* const stringBase_80399EFE = "7";
SECTION_DEAD static char const* const stringBase_80399F00 = "H";
SECTION_DEAD static char const* const stringBase_80399F02 = "U";
SECTION_DEAD static char const* const stringBase_80399F04 = "h";
SECTION_DEAD static char const* const stringBase_80399F06 = "u";
SECTION_DEAD static char const* const stringBase_80399F08 = "8";
SECTION_DEAD static char const* const stringBase_80399F0A = "I";
SECTION_DEAD static char const* const stringBase_80399F0C = "V";
SECTION_DEAD static char const* const stringBase_80399F0E = "i";
SECTION_DEAD static char const* const stringBase_80399F10 = "v";
SECTION_DEAD static char const* const stringBase_80399F12 = "9";
SECTION_DEAD static char const* const stringBase_80399F14 = "J";
SECTION_DEAD static char const* const stringBase_80399F16 = "W";
SECTION_DEAD static char const* const stringBase_80399F18 = "j";
SECTION_DEAD static char const* const stringBase_80399F1A = "w";
SECTION_DEAD static char const* const stringBase_80399F1C = "0";
SECTION_DEAD static char const* const stringBase_80399F1E = "K";
SECTION_DEAD static char const* const stringBase_80399F20 = "X";
SECTION_DEAD static char const* const stringBase_80399F22 = "k";
SECTION_DEAD static char const* const stringBase_80399F24 = "x";
SECTION_DEAD static char const* const stringBase_80399F26 = ",";
SECTION_DEAD static char const* const stringBase_80399F28 = "L";
SECTION_DEAD static char const* const stringBase_80399F2A = "Y";
SECTION_DEAD static char const* const stringBase_80399F2C = "l";
SECTION_DEAD static char const* const stringBase_80399F2E = "y";
SECTION_DEAD static char const* const stringBase_80399F30 = ".";
SECTION_DEAD static char const* const stringBase_80399F32 = "M";
SECTION_DEAD static char const* const stringBase_80399F34 = "Z";
SECTION_DEAD static char const* const stringBase_80399F36 = "m";
SECTION_DEAD static char const* const stringBase_80399F38 = "z";
SECTION_DEAD static char const* const stringBase_80399F3A = " ";
SECTION_DEAD static char const* const stringBase_80399F3C = ""
                                                            "\x1B"
                                                            "CD"
                                                            "\x1B"
                                                            "CR"
                                                            "\x1B"
                                                            "CC[000000]"
                                                            "\x1B"
                                                            "GM[0]%c"
                                                            "\x1B"
                                                            "HM"
                                                            "\x1B"
                                                            "CC[ffffff]"
                                                            "\x1B"
                                                            "GM[0]%c";
SECTION_DEAD static char const* const stringBase_80399F6C = ""
                                                            "\x1B"
                                                            "CD"
                                                            "\x1B"
                                                            "CR"
                                                            "\x1B"
                                                            "CC[000000]"
                                                            "\x1B"
                                                            "GM[0]";
SECTION_DEAD static char const* const stringBase_80399F84 = ""
                                                            "\x1B"
                                                            "HM"
                                                            "\x1B"
                                                            "CC[ffffff]"
                                                            "\x1B"
                                                            "GM[0]";
SECTION_DEAD static char const* const stringBase_80399F99 = "zelda_player_name.blo";
SECTION_DEAD static char const* const stringBase_80399FAF = "zelda_player_name.bpk";
SECTION_DEAD static char const* const stringBase_80399FC5 = "zelda_player_name.btk";
SECTION_DEAD static char const* const stringBase_80399FDB = "";
/* @stringBase0 padding */
SECTION_DEAD static char const* const pad_80399FDC = "\0\0\0";
#pragma pop