-
Notifications
You must be signed in to change notification settings - Fork 18
/
build_specs.py
2094 lines (2067 loc) · 68.9 KB
/
build_specs.py
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
import bcsv
import json
import os
import sys
import zlib
preset_names = {
0x000d3b51: 'NormalScaleNB f32',
0x00244ce4: 'BeforeDays u8',
0x003c0210: 'UmbrellaID u16',
0x0058e1ec: 'Month2042 u8',
0x007a831b: 'Month2026 u8',
0x00bd57e6: 'PatternFirstDay u8',
0x00c1577d: 'StructureInfoUniqueID u16',
0x010c5bb2: 'StartDayN2 u8',
0x010d74a6: 'ItemUnitIcon.hshCstringRef',
0x0110b14c: 'MaxValue u16',
0x013cbdbd: 'PoseTransDive u8',
0x0153341a: 'CanSelectEDay u8',
0x01997010: 'RegionEventItem u8',
0x0207a2af: 'SpNpcID u16',
0x02169dc7: 'ColorGroupSortId u16',
0x021df361: 'UnlockTheme39 u16',
0x0239d7bc: 'RefabricPattern7LightColor u32',
0x026793b2: 'Day2 u8',
0x02694909: 'ProbMayMidnight u16',
0x026c5579: 'MonthNorth u8',
0x026f0892: 'MSLabel string32',
0x02c2ac67: 'AIFlowEntryName string32',
0x03200971: 'RainHat u16',
0x03218b32: 'ReFabricPattern1Color1 u8',
0x0326335b: 'Weed_S u8',
0x0329d696: 'BonusFive u8',
0x0339be8a: 'TshirtsNNormalScaleMaskR f32',
0x036e8ebe: 'Name string64',
0x0376ec8b: 'ProbAugustMorning u16',
0x03b7f760: 'HandToolAsName string32',
0x04034aa7: 'Name string60',
0x041c3234: 'OutfitSE.hshCstringRef',
0x0424930f: 'UseExteriorLight u8',
0x0489d102: 'CaptureCookingIcon u8',
0x04a47035: 'NumberingId u16',
0x04ab3038: 'StartDayS5 u8',
0x04ac1bea: 'SpecialELink u8',
0x04e041c5: 'Day2017 u8',
0x04f52f6a: 'NpcLooks.hshCstringRef',
0x04fbf4bc: 'SortIdKRko u16',
0x05038516: 'LandingName string64',
0x0507133e: 'ActionPattern3 u32',
0x0512b63c: 'StampRackNameExplainLabel string32',
0x05639ab0: 'ItemHHASeason.hshCstringRef',
0x05654acb: 'UnlockTheme13 u16',
0x05836619: 'Reverberation s8',
0x059d1682: 'ItemHHASet.hshCstringRef',
0x06012035: 'CanGift u8',
0x062ec6cf: 'WeatherPattern string32',
0x066fbe8e: 'InWaterBody u8',
0x069f18ae: 'OuterLNormalScaleMaskG f32',
0x06a63fb6: 'ReplaceTiming u8',
0x06bcf848: 'ProbMarchDaytime u16',
0x06d0f4a8: 'NpcLabel2 string32',
0x06da20a1: 'WdayNorth u8',
0x06e9bc8c: 'MaxValue4 u32',
0x0732bb98: 'CanNpcPresent u8',
0x07407c61: 'InnerType030 u8',
0x07d45b0f: 'ReFabricPattern3Color1 u8',
0x07d60b3d: 'NameWithTitle u8',
0x08238405: 'AccentWall u16',
0x08462f85: 'JpName string32',
0x085e476d: 'BaseColorR f32',
0x086f5f3a: 'LocalizeTexture u8',
0x08d23365: 'DefaultHeredity u8',
0x08ee40d5: 'StartMoN5 u8',
0x08f225c6: 'CollaborateItem u8',
0x0909f3d4: 'Property u8',
0x091b46f5: 'NPCLabel string128',
0x093dfe4f: 'ModelScale f32',
0x094d8212: 'RebodyPattern6LightColor u32',
0x0966fbe3: 'DefaultRoofUniqueID u16',
0x09b64264: 'MemoryUnitNum u16',
0x09b714f9: 'AnimeTypeWateringCan string64',
0x09c60fd9: 'Rate6 u8',
0x09d75f40: 'IsUseXlink u8',
0x09df4299: 'Reward2 u32',
0x09f34486: 'MainIslandItemLayer u8',
0x09f88366: 'Ice u8',
0x0a2d6f3e: 'RightTransOffsetX f32',
0x0a65e08a: 'NormalScaleLA f32',
0x0aa76edd: 'HouseDoorShape.hshCstringRef',
0x0abc5303: 'CheekOrangeColorG f32',
0x0ac45a99: 'Month2033 u8',
0x0aca2b48: 'ReFabricPattern5Color1 u8',
0x0ae6386e: 'Month2057 u8',
0x0b3d1d54: 'PlayerFlagKeyON2 string32',
0x0b52f5bb: 'FloorType u16',
0x0b69ec1a: 'LowerSetting.hshCstringRef',
0x0b6d59d2: 'Size s8',
0x0bb66872: 'Wherearen u8',
0x0bcf172f: 'MeshEdgeDirType.hshCstringRef',
0x0c315945: 'CollisionHeight f32',
0x0c78bf8f: 'RemakeBodyID s16',
0x0c98243c: 'AnimeTypeDrink string64',
0x0cb1cdc5: 'UnlockTheme25 u16',
0x0cb402a3: 'ReFabricPatternNum s8',
0x0cc4e7b5: 'USes u8',
0x0cd7f9c5: 'FashionThemeRelax u8',
0x0ce69142: 'SaveCountMaxNum u16',
0x0d492b5f: 'StartMoS2 u8',
0x0d54d810: 'EdgePatternType.hshCstringRef',
0x0d664b5c: 'Door0 u16',
0x0dbbebb5: 'ProbAprMorningAndEvening u16',
0x0dca149d: 'SortIdCNzh u16',
0x0de2a3be: 'AppearType.hshCstringRef',
0x0e0325ba: 'FishingSeries u8',
0x0e0acf95: 'DebugFtrSeries.hshCstringRef',
0x0e387a24: 'SwitchableOnWall u8',
0x0e3f98aa: 'SpHobby.hshCstringRef',
0x0e3ffb75: 'ReFabricPattern7Color1 u8',
0x0e5e9847: 'Day2002 u8',
0x0e609bc1: 'InnerType111 u8',
0x0e6ca0d4: 'Seasonality.hshCstringRef',
0x0e7ab6a6: 'VmPauseType.hshCstringRef',
0x0e91fc27: 'IsSidewaysShow u8',
0x0ea3371f: 'StrSortIdEUpt u16',
0x0ea633a0: 'Inland u8',
0x0eb7fa40: 'ToiletType u8',
0x0ec3a031: 'AnimeTypeCooking string64',
0x0ed6caf4: 'TopRotateOffsetX f32',
0x0f095b88: 'ProbFebMorningAndEvening u16',
0x0f0d9110: 'UnlockTheme30 u16',
0x0f230d34: 'SilhouettePosX f32',
0x0f30a50e: 'MusicNo u16',
0x0f4323e2: 'RegionUs u8',
0x0f640691: 'PosterItemID s16',
0x0f7dd98f: 'UnlockTheme2 u16',
0x0f9f6747: 'WallTableId u16',
0x0fac8973: 'NpcLabel string32',
0x0fd26913: 'Sound.hshCstringRef',
0x10757f8c: 'ProbAprilEvening2 u16',
0x10d23c5c: 'Day1 u8',
0x10dbd8bb: 'AppearanceLevel.hshCstringRef',
0x110a7053: 'MessageLabel u16',
0x110ca7b2: 'MuseumNpcRace u32',
0x1144c9a1: 'NameLong string128',
0x116f007f: 'CaptureGardeningIcon u8',
0x11b0b143: 'ResNameField string32',
0x11bf9036: 'Day2059 u8',
0x1222490a: 'Snow u8',
0x123efcf1: 'PicIconHeight f32',
0x12735d82: 'ReBodyPattern4Color0 u8',
0x127ccfd9: 'Reward u16',
0x128a3d9b: 'ItemCategoryGroup u32',
0x12a20792: 'Stage10 string32',
0x12cf2cf5: 'Month2025 u8',
0x12d4d7a6: 'AITagBitRankS u8',
0x12ed4e02: 'Month2041 u8',
0x132dd5b9: 'FishMuseumAction.hshCstringRef',
0x1344bdc5: 'RefabricPattern4LightColor u32',
0x1365b16d: 'IsWant u8',
0x137dd804: 'AppearArea u8',
0x13a65775: 'Amount1 u16',
0x13ab5198: 'Label string64',
0x13b9f45c: 'StartDayN1 u8',
0x14767df7: 'MaskTemporarilyCreate u8',
0x147e658d: 'FrontSwitch u8',
0x14a76147: 'RightRotateOffsetY f32',
0x14e0f9c1: 'Priority u8',
0x1538c8ac: 'ProbNovemberDaytime u16',
0x153e947e: 'Book2 u32',
0x154eee75: 'TimeZoneIndoorEarlyMorningLevel u8',
0x155d8b5d: 'TvProgram2 u32',
0x158a4c61: 'DemoDistance f32',
0x15d08d9a: 'TorsoResName string32',
0x15de6a3f: 'ProbAugDaytime u16',
0x15e831b4: 'DefaultRoof u16',
0x15f5d38f: 'InnerType033 u8',
0x161e9fd6: 'StartDayS6 u8',
0x1655ee2b: 'Day2014 u8',
0x1657d7af: 'Stage12 string32',
0x16868dbf: 'ReBodyPattern6Color0 u8',
0x16a66e06: 'ItemHHAPart.hshCstringRef',
0x16b8f524: 'HalfUnitSizeX u8',
0x16c95acc: 'HighlightColorB f32',
0x170af5b8: 'QuotaNum u16',
0x175dfeb2: 'ProbFebruayMidnight u16',
0x17db736c: 'Sakura_S u8',
0x1830e86b: 'RebodyPattern5LightColor u32',
0x18539780: 'Month2054 u8',
0x185d9096: 'Season_N u8',
0x1871f577: 'Month2030 u8',
0x1938749d: 'WeatherPattern0 u16',
0x19a9348c: 'SEParts.hshCstringRef',
0x19bb54c6: 'ItemKind6 u16',
0x19eec64f: 'TopTransOffsetX f32',
0x1a361bd7: 'PeakRotateOffsetY f32',
0x1a5bef3b: 'StartMoN6 u8',
0x1a9174c6: 'SortID s8',
0x1aaaddc1: 'DummyMenuDemo u8',
0x1abe6e96: 'SelectSecond u16',
0x1b232b43: 'Day2028 u8',
0x1b53db71: 'WatchPosY f32',
0x1b6eaa53: 'TimeZoneOutdoorNightLevel u8',
0x1b73a037: 'Rate5 u8',
0x1b936128: 'FtrIconCaptureType.hshCstringRef',
0x1b93daa9: 'ToolSetupPutawayAsName string32',
0x1b98fdf8: 'ReBodyPattern0Color0 u8',
0x1bbfa75e: 'Material1 u16',
0x1bbfe498: 'Pattern1 u8',
0x1bcd4858: 'CanSetCloset u8',
0x1be772f0: 'MaxLevel u8',
0x1bf6abea: 'DesignWinter1 u16',
0x1c2c02f5: 'SelectOne u8',
0x1c57897d: 'NpcReleaseType u32',
0x1c73934d: 'MannequinPose.hshCstringRef',
0x1c8856db: 'ResNameMuseum string32',
0x1c8d9dbc: 'TourType.hshCstringRef',
0x1cb2e5a6: 'TimeZoneIndoorMorningLevel u8',
0x1cd5342f: 'InnerType112 u8',
0x1ceb37a9: 'Day2001 u8',
0x1d026757: 'Hobby1 u32',
0x1d06dedd: 'RegionEventCountry5 u16',
0x1d69405f: 'RainWare u16',
0x1d790df7: 'ProbAprNight u16',
0x1d99c513: 'Studio u8',
0x1db4a596: 'EndMonthSouth u16',
0x1dd11bc9: 'UnlockEvent1 u16',
0x1e3acf92: 'OnepieceNNormalScaleMaskB f32',
0x1e4ff55f: 'NormalScaleMaskR f32',
0x1e7ef977: 'SelectRate u8',
0x1e8d322c: 'ProbJuneMorning u16',
0x1e996a76: 'FashionThemeSport u8',
0x1e9da321: 'MoveSpot4 u32',
0x1ea2c2c4: 'ItemKind15 u16',
0x1eb4573c: 'NormalScaleHG f32',
0x1eb65d06: 'HobbyMusicLevel u8',
0x1ed42314: 'N0Parts.hshCstringRef',
0x1ef061dd: 'DonateItemFifth u16',
0x1f301724: 'EUen u8',
0x1f3893e5: 'WalkWatchOffsetX f32',
0x1f3bcf5e: 'LiveMotif u8',
0x1f401b52: 'PurposeScore s32',
0x1f65ddac: 'ProbNovemberMidnight u16',
0x1f6d2dc5: 'ReBodyPattern2Color0 u8',
0x1fb9e99d: 'Month2019 u8',
0x1fe65c0c: 'ProbSepMorningAndEvening u16',
0x1ff4093d: 'HousePartsType.hshCstringRef',
0x1ffc84b1: 'StartMoS1 u8',
0x200dd382: 'Priority u16',
0x202207b0: 'NpcRole2 u8',
0x202e64dd: 'ProbJunNight u16',
0x20624ee7: 'Hobby0 u32',
0x2066f76d: 'RegionEventCountry4 u16',
0x20a27847: 'RemakeFabricID s16',
0x20c3034e: 'RefabricPattern1LightColor u32',
0x20cb67bc: 'ItemID u16',
0x20dd4377: 'IsGive u8',
0x20dd4435: 'EventFtrUniqueID u16',
0x20e74524: 'OnepieceHNormalScaleMaskG f32',
0x21511673: 'Coef f32',
0x218b1e19: 'Day2011 u8',
0x21b51d9f: 'InnerType102 u8',
0x21c06fe4: 'StartDayS3 u8',
0x21c5d786: 'ActionSetRate0 s8',
0x224c7f34: 'DaySouth u8',
0x2258ba55: 'WalkWatchOffsetY f32',
0x227444fb: 'ProbMayEvening1 u16',
0x2292517a: 'Snow_S u8',
0x22d9c02d: 'Month2009 u8',
0x23a01e5b: 'Theme.hshCstringRef',
0x23c2eb74: 'ItemKind14 u16',
0x23e16936: 'HasDoorEigyoLight u8',
0x23e7c2a0: 'Social u32',
0x2409dcb4: 'UserSelect u8',
0x24585d2d: 'WeatherPattern1 u16',
0x2467046e: 'StartDayN4 u8',
0x24726310: 'EventFtrSwitch.hshCstringRef',
0x247953d8: 'TshirtsNNormalScaleMaskA f32',
0x248eefff: 'TopTransOffsetY f32',
0x24da7ada: 'Kind u8',
0x24db7d76: 'ItemKind7 u16',
0x24dbb4e0: 'ProbJulNight u16',
0x2511dcc7: 'Month2020 u8',
0x2533be30: 'Month2044 u8',
0x255f93c7: 'E1Parts.hshCstringRef',
0x25d6cd9c: 'W2Parts.hshCstringRef',
0x25de7b8f: 'SkinColor u16',
0x260ec620: 'ProbSepNight u16',
0x26214340: 'ASCommand2 string66',
0x2633f2c1: 'WatchPosX f32',
0x263c3ced: 'ItemNpcWherearenFtrActionType.hshCstringRef',
0x264302f3: 'Day2038 u8',
0x2654be7c: 'AudioPreset.hshCstringRef',
0x265ef22d: 'Color2 u8',
0x2678154b: 'FtrType3 u8',
0x267c99f7: 'ProbDecDaytime u16',
0x26911c10: 'ToolAsCommand string30',
0x26db5137: 'EventObjUniqueID u16',
0x26e57a14: 'NearbyInteract u8',
0x27450132: 'GetScale f32', # I think?
0x27563267: 'PeakRotateOffsetX f32',
0x2760bc87: 'SeasonSummerLevel u8',
0x27ad3d4e: 'ProbJanuaryEvening2 u16',
0x281f90a8: 'FallActionType.hshCstringRef',
0x28227483: 'StartMoS4 u8',
0x28297660: 'ItemUICategory.hshCstringRef',
0x2849dec1: 'ProbJulyEvening2 u16',
0x286be1f4: 'BO2Index s16',
0x286d8e9e: 'RequestNum0 s8',
0x287db05d: 'Month u8',
0x2895fa3f: 'InnerType023 u8',
0x28f7ea03: 'Month1 u8',
0x291a1b04: 'Cap u16',
0x29346c33: 'TemplateKind.hshCstringRef',
0x293ee089: 'SelectRate f32',
0x29522d29: 'Cloud_S u8',
0x29c41a0d: 'MessageKind.hshCstringRef',
0x29c748f7: 'RightRotateOffsetX f32',
0x29ecb129: 'RemakeKitNum u16',
0x29fe5bbd: 'ToolCategory u8',
0x2a70ef74: 'NpcActionUniqueID u16',
0x2a7a644c: 'StrSortIdEUit u16',
0x2a93682f: 'ProbJuneNight u16',
0x2ae273e3: 'StateName string48',
0x2ae7c830: 'TimeZoneOutdoorMorningLevel u8',
0x2b09d942: 'EndMinute u8',
0x2b17a56c: 'Day2060 u8',
0x2b35c79b: 'Day2004 u8',
0x2b3f3307: 'ASCommand4 string66',
0x2b54bedd: 'NpcRole0.hshCstringRef',
0x2b57b24a: 'AcceEye u16',
0x2b68ef71: 'UISortID u16',
0x2b74f5dc: 'ProbJulDaytime u16',
0x2ba288cf: 'SortIdJPja u16',
0x2c1b3b5b: 'CanNpcBirthdayPresent u8',
0x2c2a379e: 'CapPurposeLimit u8',
0x2c40799e: 'NameboardAngleY f32',
0x2c447591: 'AsCommand string65',
0x2c660f2c: 'DesignAlways4 u16',
0x2c6a189e: 'GrowupFg u16',
0x2c91307c: 'RebodyNum2 s8',
0x2ca34410: 'NpcFtrActionTool u16',
0x2cb125cc: 'ProbMarMorningAndEvening u16',
0x2cdfb986: 'Day2049 u8',
0x2d250dd8: 'NormalScaleLR f32',
0x2d851f09: 'StartMoN3 u8',
0x2da64e66: 'StrSortIdTWzh u16',
0x2dae0aa4: 'SkinBaseColorB f32',
0x2df085cc: 'GroundAttributeUniqueID u16',
0x2e17a0a7: 'SoundAttribute u16',
0x2f1b930d: 'Label string8',
0x2f571a00: 'RankIncrease u16',
0x2f8d67b2: 'Month2051 u8',
0x2faf0545: 'Month2035 u8',
0x2fcae33a: 'ASCommand6 string66',
0x2fe593c3: 'UISortID s16',
0x30127dfd: 'DisableInDream u8',
0x30b36b14: 'ElectionRate8 u8',
0x30d3f8f7: 'FlowEntryName string32',
0x3103d389: 'ASCommand8 string66',
0x31450aa2: 'MainType u8',
0x318ebbf2: 'TextureWindow u8',
0x3198c2ac: 'PointIndex s16',
0x319a1388: 'EndDaySouth u16',
0x31be6937: 'RefabricPattern2LightColor u32',
0x31cb6b0a: 'Collision u8',
0x31d1e475: 'UnlockTheme24 u16',
0x321df03f: 'UnlockTheme3 u16',
0x321e419f: 'OnepieceLNormalScaleMaskG f32',
0x32432484: 'SilhouettePosY f32',
0x32697f08: 'Movie2 u32',
0x326db8a0: 'UnlockTheme31 u16',
0x3297a85e: 'NpcRole1 u8',
0x32bc8d59: 'KimeProbability s8',
0x32c0c064: 'HeadColor u16',
0x32c643e6: 'Announce u8',
0x3300b271: 'InnerType101 u8',
0x333eb1f7: 'Day2012 u8',
0x339772b5: 'ProbSeptemberNight u16',
0x33a1e925: 'SWParts.hshCstringRef',
0x33af13e1: 'NpcTalkType u8',
0x33b6e344: 'TopRotateOffsetY f32',
0x33ddefc8: 'SelectCalendarEventSeason string64',
0x3440cdd7: 'IsBeforeUnlock u8',
0x344b17d7: 'MaxValue u32',
0x348d7b06: 'ItemMenu.hshCstringRef',
0x34a742ad: 'CraftUnlock.hshCstringRef',
0x34bf6b29: 'Reward3 u32',
0x34c8eed5: 'NpcLabel string8',
0x34cdbaa5: 'FtrType0 u8',
0x34e5bfbd: 'FgUniqueID u16',
0x34eb5dc3: 'Color1 u8',
0x350e1ef9: 'WallItemId u16',
0x352c163e: 'EnvMapUniqueID u16',
0x3543c34a: 'Horizon u8',
0x3574933b: 'DonateItemFirst u16',
0x35917e05: 'ItemReFabricType.hshCstringRef',
0x3594f417: 'CanPutWorkStuff u8',
0x35ac1bb4: 'GrowLevel u8',
0x35c78d62: 'LookAtType u8',
0x35fd6466: 'ForbidOverwrite u8',
0x36083c78: 'Level u16',
0x360b721a: 'InsectParam.hshCstringRef',
0x3637ebb9: 'RefItemUniqueID u16',
0x364c173e: 'FlowFileName string32',
0x368210c4: 'ItemCategory u32',
0x36c903a7: 'AreaUniqueID u16',
0x3711677b: 'VillagerOpenNum u32',
0x372fc927: 'S2Parts.hshCstringRef',
0x3740f340: 'ProbFebruayEvening1 u16',
0x374d00da: 'PosX s16',
0x374d468e: 'RightTransOffsetY f32',
0x378611de: 'Month2047 u8',
0x378b2f14: 'AppearStage u8',
0x37a47329: 'Month2023 u8',
0x37d4e515: 'CustomizeSortID u16',
0x3805637b: 'UnlockTheme12 u16',
0x3835a9dd: 'StartMinute u8',
0x384e882c: 'CheekPinkColorB f32',
0x38501139: 'RailIndex s8',
0x38673a8e: 'ActionPattern2 u32',
0x38762eaa: 'ObjCheckRate f32',
0x38954eb6: 'LifeMotif u8',
0x390f180d: 'NormalScaleMaskA f32',
0x3912a854: 'LeftTransOffsetZ f32',
0x395b7795: 'AccEye u16',
0x397b2b54: 'UseChimneySmoke u8',
0x39806875: 'Day2007 u8',
0x39b5a93d: 'ModelName string32',
0x39cb9646: 'Material u16',
0x39dede36: 'SerialID s16',
0x39ed7f5a: 'Socks u16',
0x3a14deea: 'NodeName string32',
0x3a1f9e56: 'PeakTransOffsetZ f32',
0x3a1fca06: 'Direction s8',
0x3a2055d1: 'InnerType020 u8',
0x3a4245ed: 'Month2 u8',
0x3a5c385a: 'DefaultDoor u16',
0x3a737394: 'ProbJanuaryNight u16',
0x3ab25276: 'SkinEdgeColorR f32',
0x3aca3c99: 'RebodyPattern3LightColor u32',
0x3ad82170: 'RequestNum3 s8',
0x3af6dfe2: 'BagID u16',
0x3b13a395: 'OT2Index s16',
0x3b27f030: 'ArriveDist f32', # maybe, might be a collision
0x3b8583f3: 'TargetItems u8',
0x3b89953c: 'MaxValue5 u32',
0x3b94564c: 'OffsetZ s16',
0x3c835e2c: 'NameShort string128',
0x3ca0fc03: 'IsAppearNorth u8',
0x3ccca419: 'InvalidCard u8',
0x3cccb782: 'MustFtr1 u16',
0x3cda3274: 'ItemHHADirection u8',
0x3ce2e8d8: 'PacketId s32',
0x3cf05708: 'PolygonLimit u16',
0x3d1aaaab: 'Month2036 u8',
0x3d38c85c: 'Month2052 u8',
0x3d4f3f42: 'CanSell u8',
0x3dc49bc2: 'IsCreateBait u8',
0x3e01d394: 'ProbJanNight u16',
0x3e18ffeb: 'Rate3 u8',
0x3e249f92: 'RebodyNum1 s8',
0x3e4510fa: 'EquipRule u16',
0x3e78dc38: 'FtrPlace u8',
0x3e884a6d: 'SilhouetteID u32',
0x3f45f2bf: 'DebugName string64',
0x3f78d05e: 'ProbNovemberEvening1 u16',
0x3f7ddad1: 'UnlockTheme38 u16',
0x3f858678: 'Smartphone u16',
0x3fc005f0: 'SelectColor u8',
0x3fdeeab4: 'ActionAngle u8',
0x3fe43170: 'FlagLand s32',
0x3febc642: 'Label string50',
0x40104a6c: 'ProbJanuaryMidnight u16',
0x4026fbe1: 'ProbFebruayDaytime u16',
0x4038a881: 'E0Parts.hshCstringRef',
0x4045796c: 'BgCheckType.hshCstringRef',
0x40876b17: 'BehaviorType u8',
0x40b1f6da: 'W3Parts.hshCstringRef',
0x40dfcd36: 'PeakTransOffsetX f32',
0x4122941d: 'Stage9 string32',
0x4154052c: 'OffsetX s16',
0x415c1158: 'LimitNum3 s8',
0x416eaf25: 'FacilityActionType0.hshCstringRef',
0x4171a41d: 'FlagPlayer s32',
0x41935ae1: 'AnimeTypeBook string64',
0x41977699: 'NpcColor u8',
0x41afe839: 'BodyColor u16',
0x41f881e4: 'ReBodyPattern7Color1 u8',
0x423d1c4d: 'ClothesFrequencyWear.hshCstringRef',
0x425f85d3: 'EUfr u8',
0x42739ab0: 'UseToolLeft u8',
0x42ad246a: 'Misc u8',
0x42bdd56f: 'DoorMaterial u16',
0x42c5301b: 'UnlockTheme10 u16',
0x42cd8039: 'AITagBitRankC u8',
0x42e82ded: 'HasNightLight u8',
0x430dbf65: 'FlagType u8',
0x43403b15: 'Day2027 u8',
0x43507f0d: 'DragSE.hshCstringRef',
0x43513d44: 'EndDayN1 u8',
0x436259e2: 'Day2043 u8',
0x43d2fb34: 'LeftTransOffsetX f32',
0x43d8a434: 'HasEigyoLight u8',
0x443c0fb7: 'LabelLong string64',
0x44718a37: 'FashionThemeFomal u8',
0x44795c13: 'NpcRoleNum3 s8',
0x4509ba24: 'CapOff u8',
0x450d51d9: 'ReBodyPattern5Color1 u8',
0x454b2adc: 'InitLive u8', # dunno
0x4556b457: 'ItemPlacementKind u8',
0x45cdc12e: 'UnlockTheme8 u16',
0x45f320f2: 'Key string64',
0x45ffea9a: 'Frames u16',
0x460ce4e2: 'MustFtr3 u16',
0x46489ce7: 'HangerInfo u8',
0x46c45907: 'Value u16',
0x46df4305: 'RemoveEventObj u8',
0x46e66708: 'ItemFrom string32',
0x46e8c73e: 'StaticField u8',
0x46f656ce: 'EndDayS6 u8',
0x472724ed: 'CanBury u8',
0x4765b463: 'WatchPointID u16',
0x478b74e4: 'CraftRecipeSelectSeasonType.hshCstringRef',
0x478dd182: 'AccessoryID u16',
0x47ad4181: 'NormalScaleNA f32',
0x47daf9cb: 'Month2016 u8',
0x47f8f099: 'FashionThemeFairyland u8',
0x4813219e: 'ReBodyPattern3Color1 u8',
0x481fd496: 'ActionSet1.hshCstringRef',
0x4875e383: 'Bush_N u8',
0x48a92c68: 'Movie0 u32',
0x48adebc0: 'UnlockTheme33 u16',
0x48dda35f: 'UnlockTheme1 u16',
0x48e540d2: 'NormalScaleBottomsG f32',
0x48ef0398: 'ResName string64',
0x49129b27: 'CanSetItem u8',
0x49295020: 'Scale.hshCstringRef',
0x4932f93e: 'SuccessResult.hshCstringRef',
0x493eed57: 'PartsKind.hshCstringRef',
0x497ac4d6: 'CanChaseForInsect u8',
0x49803457: 'MoveAs u8',
0x499e42f9: 'ArchUniqueID u16',
0x49c0e111: 'InnerType121 u8',
0x49c2181b: 'Param2 u8',
0x49cc96d0: 'ValidEffect u8',
0x49dc8060: 'Day2056 u8',
0x49fee297: 'Day2032 u8',
0x4ab9b98a: 'StampRackNameTextLabel string32',
0x4ac8ebbc: 'RegionEu u8',
0x4ae88c28: 'EUru u8',
0x4b072728: 'StrSortIdUSfr u16',
0x4b11b715: 'UnlockTheme26 u16',
0x4b4d3c12: 'OpenAllYear u8',
0x4b9c4229: 'ResourceName string64',
0x4bccc3f3: 'SortIdEUes u16',
0x4bccce37: 'UmbrellaWherearen u16',
0x4be509de: 'Amiibo u16',
0x4c24f1cf: 'DefaultValue u32',
0x4c777e9e: 'ResNameReplaceField string32',
0x4c8935ec: 'WeekNorth u8',
0x4c8d39f8: 'ApproachRate u16',
0x4c9ba961: 'MultiHoldMaxNum s16',
0x4ce6f1a3: 'ReBodyPattern1Color1 u8',
0x4ce98793: 'HavokResName string64',
0x4d4e9d26: 'SkinBaseColorR f32',
0x4d642049: 'Month2003 u8',
0x4d655154: 'SLinkType.hshCstringRef',
0x4d8d53ba: 'PosZ s16',
0x4d9888d3: 'Strength u8',
0x4dbb249e: 'ElectionRate1 u8',
0x4dc59a5a: 'NormalScaleLB f32',
0x4e3ee3de: 'NpcResName string64',
0x4e46c669: 'PropertyID u16',
0x4e5cd9f3: 'PlayerFlagKeyOFF string32',
0x4e718582: 'FloorItemId u16',
0x4e7f3849: 'Reward1 u32',
0x4ec849ec: 'ToolRightModelName string20',
0x4f0b2be7: 'ForShareHouse u8',
0x4f6db088: 'ProbJulyNight u16',
0x4f7333fd: 'FlagsNetAccess u8',
0x4fd5526a: 'UnlockTheme19 u16',
0x4ff4a9e3: 'ProbJulyMidnight u16',
0x4ffda705: 'TshirtsLNormalScaleMaskG f32',
0x5013c55c: 'FacilityActionType3.hshCstringRef',
0x5032ef59: 'ItemMessageCategory.hshCstringRef',
0x5039c84d: 'N4Parts.hshCstringRef',
0x50650a2b: 'DonateItemSecond u16',
0x5092ca25: 'ProbJunMorningAndEvening u16',
0x50aa5754: 'ReFabricPattern2Color0 u8',
0x50edd045: 'BaseName string32',
0x510f21dc: 'ItemPriorityPlace.hshCstringRef',
0x5195e4bd: 'FloorScale f32',
0x51bcedfa: 'ProbJanMorningAndEvening u16',
0x51d7f60c: 'Day2040 u8',
0x51e489d9: 'PenColor4 u16',
0x51e492aa: 'EndDayN2 u8',
0x51f594fb: 'Day2024 u8',
0x5218c48c: 'CanUsePhotoStudio u8',
0x524596a2: 'BottomsID u16',
0x5248f261: 'S3Parts.hshCstringRef',
0x5255a95f: 'InnerType003 u8',
0x5267ce60: 'GE2Index s16',
0x5270eb75: 'ItemKind.hshCstringRef',
0x52852838: 'Month2058 u8',
0x529eeeae: 'Book1 u32',
0x52add71d: 'FashionThemeDaily u8',
0x52c75c1e: 'TkkSkipBirthday.hshCstringRef',
0x52f0badd: 'CalendarEventKey string32',
0x52f5d4e9: 'Stage1 string32',
0x52fdf18d: 'TvProgram1 u32',
0x53071b97: 'RightRotateOffsetZ f32',
0x53520a06: 'RecommendPattern u8',
0x539cc0ca: 'DistantViewUniqueID u16',
0x53a4c228: 'IsHide4 u8',
0x53d9c19f: 'Reverberation u8',
0x53e9beb6: 'LimitNum0 s8',
0x54062da5: 'Amount2 u16',
0x5443f920: 'EndDayS5 u8',
0x545f8769: 'ReFabricPattern0Color0 u8',
0x546c2339: 'StrSortIdEUfr u16',
0x54706054: 'UniqueID u16',
0x548a7eda: 'TWzh u8',
0x54a1df24: 'PrioMethod.hshCstringRef',
0x54a7c7e2: 'SortIdUSes u16',
0x54ab2c62: 'HobbyFitnessLevel u8',
0x5504464e: 'ItemRandomColorGroup.hshCstringRef',
0x555442aa: 'EquipOnlyOutdoor u8',
0x556f5625: 'Month2015 u8',
0x558685c5: 'KRko u8',
0x55c343c4: 'AnimeTypeFirewood string64',
0x560004d4: 'Stage3 string32',
0x56612acf: 'ProbOctoberMorning u16',
0x566f1d31: 'InitRemakeId u8',
0x5681a1c3: 'HideHUD u8',
0x56ccf3fd: 'NpcRoleNum0 s8',
0x56ee0925: 'LandTempFlagKeyOFF string32',
0x572a8fe9: 'PrioLevel u8',
0x57c98e5b: 'FootColor u16',
0x57d5055c: 'ProbAprilEvening1 u16',
0x57e889b2: 'SmartphoneRemakeCommonPattern s16',
0x58102055: 'EmoticonTool.hshCstringRef',
0x5819934d: 'Month2029 u8',
0x5842957a: 'ProbMayMorning u16',
0x584d684a: 'EndMoS3 u8',
0x58ae1fae: 'CheekPinkColorR f32',
0x58aff4fb: 'ItemTableId u16',
0x58da05ed: 'WaterCheck u8',
0x5941f72e: 'ReFabricPattern6Color0 u8',
0x59485fad: 'ActionRange.hshCstringRef',
0x5962beef: 'ActionSet2.hshCstringRef',
0x5971a42e: 'WaitFrame u32',
0x598463c8: 'RequiredNum u32',
0x599ab542: 'OnepieceNNormalScaleMaskA f32',
0x59a07c63: 'Open2020 u8',
0x59d78633: 'TriangleType.hshCstringRef',
0x5a52c5f4: 'SkinEdgeColorB f32',
0x5aa21d87: 'Hobby2 u32',
0x5aafbfa6: 'ProbNovDaytime u16',
0x5aebbfb5: 'TextureResName string64',
0x5b0802f1: 'ProbNovNight u16',
0x5b1e7493: 'Stage5 string32',
0x5b4b4d79: 'Day2031 u8',
0x5b692f8e: 'Day2055 u8',
0x5b754eff: 'InnerType122 u8',
0x5b77b7f5: 'Param1 u8',
0x5b7ca0b2: 'SeriesId u8',
0x5b8be707: 'Shop_N u8',
0x5ba37406: 'NpcSpLabel string32',
0x5baf48a0: 'NpcNoEntry u8',
0x5c1c3044: 'BridgeTypeId u16',
0x5c1fdd8e: 'Material2 u16',
0x5c28c4db: 'BridgeTypeNameJp string32',
0x5c56d13a: 'DesignWinter2 u16',
0x5c835193: 'Day2018 u8',
0x5cb71135: 'ProbFebDaytime u16',
0x5cf3a1a1: 'WatchPosZ f32',
0x5d04a3be: 'TshirtsHNormalScaleMaskG f32',
0x5d389fbf: 'CanPut u8',
0x5d4ef312: 'OpenAchievementCount u16',
0x5d8d4b8c: 'Desert u8',
0x5d966107: 'PeakRotateOffsetZ f32',
0x5db42713: 'ReFabricPattern4Color0 u8',
0x5dea03c0: 'EndMoN4 u8',
0x5e1b2e16: 'ItemKind5 u16',
0x5e2aa87d: 'AnimeTypeUmbrella string64',
0x5e7a33b5: 'RefSoundAttributeID u16',
0x5e853057: 'ProbSepDaytime u16',
0x5e980e4d: 'WeatherPattern3 u16',
0x5ef56066: 'KO1Index s16',
0x5f0e8b70: 'ElectionRate2 u8',
0x5f384120: 'TextLotId s16',
0x5f405bfb: 'BoardColorID u32',
0x5f4976ac: 'CloseItemUniqueId s32',
0x5fad728f: 'StartDayNorth u16',
0x5fc0d92d: 'HaniwaPartsType.hshCstringRef',
0x5fd18fa7: 'Month2000 u8',
0x5feba4ae: 'Stage7 string32',
0x600d479e: 'ProbJanuaryEvening1 u16',
0x604df507: 'MoveASType string32',
0x60680c93: 'HouseDoorStep.hshCstringRef',
0x607ccfce: 'ArtObjNum u16',
0x60836eaa: 'PriorityReward u16',
0x60c99a5e: 'NpcOutfit.hshCstringRef',
0x60da5fef: 'NetPlaySelect u8',
0x60e4e478: 'ReactionTalkKey string25',
0x60edacd3: 'NormalScaleNR f32',
0x612bc6cf: 'UniqueID u32',
0x613c3c15: 'LookAtType.hshCstringRef',
0x61501334: 'Fog_N u8',
0x61758f82: 'BcatLevelReady u8',
0x617794ff: 'InvisibleEarL u8',
0x617ff43e: 'Material3 u16',
0x61e37823: 'Day2008 u8',
0x622c3346: 'CanHide u8',
0x623dc307: 'Nature u8',
0x627277e6: 'Timezone u8',
0x6278197b: 'IsNecessary2_2 u8',
0x62b1a617: 'Month2010 u8',
0x62c23ed0: 'ReFabricPattern0VisibleOff u8',
0x62ff0c3d: 'MannequinUsage.hshCstringRef',
0x630a25b4: 'HobbyPlayLevel u8',
0x632e952f: 'TopTransOffsetZ f32',
0x637b07a6: 'ItemKind4 u16',
0x638671f9: 'JPja u8',
0x638d595d: 'PrioMethod u8',
0x63947bd7: 'FacilityActionType6.hshCstringRef',
0x63c4b827: 'Param1.hshCstringRef',
0x63d92908: 'TshirtsNNormalScaleMaskB f32',
0x63f827fd: 'WeatherPattern2 u16',
0x64330cb0: 'AppearArea.hshCstringRef',
0x647a321a: 'IsHide1 u8',
0x64b8fff8: 'ColorIndex s8',
0x64bc65e7: 'InstrumentsType.hshCstringRef',
0x6510a4fe: 'IsEquipCeremony u8',
0x65270095: 'ProbJanuaryDaytime u16',
0x65503f9f: 'ParentItemName u16',
0x655e327e: 'ProbAprilDaytime u16',
0x657550b3: 'SubordinateReward u16',
0x6579bafd: 'Month2039 u8',
0x65a97fab: 'PlacementKind.hshCstringRef',
0x65d009e1: 'PhotoStudioRoomNo.hshCstringRef',
0x65d43e2b: 'ProbMayEvening2 u16',
0x65f8c085: 'WalkWatchOffsetZ f32',
0x6609063e: 'Day2045 u8',
0x6615674f: 'InnerType132 u8',
0x662b64c9: 'Day2021 u8',
0x6654378d: 'FactoryType.hshCstringRef',
0x66b4a4c1: 'SPWeather_N u8',
0x66f0052f: 'NotWithTitle u8',
0x673446c4: 'FU2Index s16',
0x675ca211: 'EndHour u8',
0x67850558: 'RainEquipment u8',
0x679e3850: 'CancelEDay u8',
0x67ef88b7: 'StrSortIdEUnl u16',
0x680f7f95: 'Month2005 u8',
0x683b0a91: 'CapResName string32',
0x6841b0c2: 'ProbSeptemberMorning u16',
0x68460c05: 'ScaleOffset f32',
0x6849dab1: 'RefabricNum3 s8',
0x68832f05: 'StrSortIdUSen u16',
0x68bed0ef: 'BaseColorB f32',
0x68cf5938: 'BridgeTypeName string32',
0x68d07b42: 'ElectionRate7 u8',
0x68d62ca8: 'ClothesTemporarilyCreate.hshCstringRef',
0x68daf155: 'EnableRodCloth u8',
0x68db76c2: 'BreakDamage u16',
0x690e3379: 'ClothGroup.hshCstringRef',
0x6943e8ad: 'StartMonthSouth u16',
0x69660415: 'Amount3 u16',
0x6971370a: 'WindDirection.hshCstringRef',
0x69834ab9: 'NpcEnd u8',
0x699b4124: 'Room1.hshCstringRef',
0x69a9bb3c: 'CastLabel u8',
0x69b161c4: 'Label string30',
0x6a1ebb49: 'ProbHarvestDaytime u16',
0x6a34f3f2: 'EndMoN1 u8',
0x6aa33bf0: 'Name u16',
0x6ab4b6fb: 'EffectAttribute u16',
0x6ac5a6df: 'BuryItem u16',
0x6aed60aa: 'ProbOctMorningAndEvening u16',
0x6b3738e0: 'WeatherPattern u16',
0x6b749e8a: 'ItemRemakeType.hshCstringRef',
0x6b7b63b2: 'GardenEdit u16',
0x6bcf870d: 'InterestEndModeType u8',
0x6c244255: 'SharedNPCLabel string8',
0x6c66ea56: 'ProbNovemberNight u16',
0x6c6fdb31: 'NpcFtrActionAsName string64',
0x6c95bd4b: 'Day2034 u8',
0x6cb7dfbc: 'Day2050 u8',
0x6ce1d85c: 'ToolLeftModelName string20',
0x6d294255: 'HeredityC u8',
0x6d4bd7da: 'Effect.hshCstringRef',
0x6e1ac981: 'FieldData string32',
0x6efc082c: 'FloorHeight f32',
0x6f307274: 'SortIdEUde u16',
0x6f3580ef: 'InnerType013 u8',
0x6f939878: 'EndMoS6 u8',
0x6f9dd83d: 'TvProgram0 u32',
0x6fa9ff60: 'ProbDecemberMorning u16',
0x6fe50188: 'Month2048 u8',
0x6fe9a411: 'ProbJulyEvening1 u16',
0x6ffec71e: 'Book0 u32',
0x700409f9: 'Month2013 u8',
0x70216bfa: 'AnimeTypeFood string64',
0x705a5d0b: 'RolePriority u8',
0x70703269: 'EventType.hshCstringRef',
0x707e79ff: 'FossilObjNum u16',
0x70cdb695: 'IsNecessary2_1 u8',
0x70e08990: 'ProbFebruayEvening2 u16',
0x70e19913: 'ItemMailAttachCategory.hshCstringRef',
0x70ed3c5e: 'RightTransOffsetZ f32',
0x7128a6fc: 'EndDayS3 u8',
0x712c43a7: 'HouseDoorAnim.hshCstringRef',
0x714d3f2e: 'SeaType.hshCstringRef',
0x718b024d: 'Price s32',
0x71bf253b: 'BromideItemID s16',
0x71df75a1: 'ResourceNameSp5 string33',
0x7215b154: 'LandFlagKeyON string32',
0x721730b8: 'EntryName string32',
0x721fe9fc: 'SafeRangeType.hshCstringRef',
0x72573f73: 'MysteryTourFieldUniqueID u16',
0x72b57bda: 'UnlockTheme18 u16',
0x72b9d25e: 'Param2.hshCstringRef',
0x72e911ae: 'FacilityActionType5.hshCstringRef',
0x730cefc8: 'BeesRunAway u8',
0x736adca8: 'FlagAnim u16', # possibly?
0x73a932ae: 'EventEnd u8',
0x73e2b4e4: 'DefaultAccessory u16',
0x7404ebb3: 'TouchRumble u8',
0x74169994: 'TopRotateOffsetZ f32',
0x74275e7a: 'MaskFrequencyWear u8',
0x744b3452: 'GlassesFrequencyWear u8',
0x748db6d8: 'IsSelectQuestM u8',
0x748fcd76: 'EndDayN4 u8',
0x749ecb27: 'Day2022 u8',
0x74a0c8a1: 'InnerType131 u8',
0x74b2eb78: 'AttrCollectBit u8',
0x74bca9d0: 'Day2046 u8',
0x74be6041: 'BridgePattern.hshCstringRef',
0x74ea1d73: 'ProbAugMorningAndEvening u16',
0x74f1f060: 'MsID u16',
0x7500325b: 'NewBuild u16',
0x754c57c7: 'AN1Index s16',
0x75bd8aef: 'UnlockTheme0 u16',
0x75c905d8: 'Movie1 u32',
0x75cdc270: 'UnlockTheme32 u16',
0x75e35e54: 'SilhouettePosZ f32',
0x7629cd4e: 'HighlightColorR f32',
0x76719ea5: 'UnlockTheme27 u16',
0x767f28cb: 'ActionFlags u8',
0x76c190b2: 'ReleaseKey u16',
0x76e5e67a: 'SatisfyMinute u16',
0x76e7fe08: 'ChangeFg u16',
0x770288fd: 'BuoyLv.hshCstringRef', # I think...
0x7703d2dd: 'AsCommand string50',
0x770b5b7d: 'ProbMarNight u16',
0x7724bf93: 'ItemOutfitInfo.hshCstringRef',
0x77c3271a: 'ProbJulyMorning u16',
0x77c808ae: 'ProbAprilMidnight u16',
0x77e82b14: 'StrSortIdEUen u16',
0x7813d35b: 'Rank u16',
0x7834d5db: 'ResourceNameSp1 string33',
0x78815c1c: 'EndMoN2 u8',
0x78a12603: 'ProbFebruayNight u16',
0x78ade89e: 'UnlockTheme9 u16',
0x78d8aa8e: 'ProbNovemberEvening2 u16',
0x78e62b5d: 'Room2.hshCstringRef',
0x797f5754: 'DefaultValue u16',
0x7991b277: 'ZK1Index s16',
0x79ad3f84: 'AccMouth u16',
0x79be959d: 'SeasonScore s32',
0x79cde6e6: 'RoomSizeY s8',
0x7a09986c: 'MysteryTourItemUniqueID u16',
0x7a65d4ac: 'ElectionRate4 u8',
0x7a6965c5: 'UnlockTrigger u8',
0x7abad07b: 'Month2006 u8',
0x7b1d9990: 'HA1Index s16',
0x7b28f877: 'ProbHarvestNight u16',
0x7b2fdfc1: 'ItemHobbyType.hshCstringRef',
0x7b6ccd52: 'MustFtr2 u16',
0x7bb31852: 'N1Parts.hshCstringRef',
0x7c00c111: 'ProbMarchNight u16',
0x7c1b4734: 'SeasonAutumnLevel u8',
0x7c226372: 'JuneBrideProgress u8',
0x7c60d6db: 'ClothesPurposeLimit u8',
0x7c6429ea: 'SilhouetteName string65',
0x7c6fde34: 'AnimeTypeFishingRod string64',
0x7c8e7f81: 'ActionLockRange u8',
0x7cc105e6: 'ResourceNameSp3 string33',
0x7d016b27: 'RoomIndex s16',
0x7d263796: 'EndMoS5 u8',
0x7d740fa4: 'EventName string32',
0x7d802f01: 'InnerType010 u8',
0x7dbfe486: 'PeakTransOffsetY f32',
0x7e027052: 'Day2053 u8',
0x7e0bbfa4: 'StrSortIdEUru u16',
0x7e2012a5: 'Day2037 u8',
0x7e322ef0: 'VisitorNpcLabel string32',
0x7eabefae: 'GenreID u16',
0x7eaf62dd: 'NormalScaleMaskB f32',
0x7eb2d284: 'LeftTransOffsetY f32',
0x7eb53ebb: 'CanHasSit u8',
0x7ec203a5: 'ProbJulMorningAndEvening u16',
0x7ec9ada7: 'SearchRadius.hshCstringRef',
0x7eda5810: 'OnepieceNNormalScaleMaskR f32',
0x7ef334a6: 'CountPlayerVisit u8',
0x7f5b6179: 'CraftRecipeSeason.hshCstringRef',
0x7fa519ab: 'UnlockTheme11 u16',
0x7faf59cb: 'AnimeTypeMaracas string64',
0x7fc7405e: 'ActionPattern1 u32',
0x8005cfa2: 'NormalScaleBottomsB f32',
0x801351e6: 'ResSizeLimit f32',
0x8027726f: 'ProbJuneMidnight u16',
0x803d2c2f: 'UnlockTheme4 u16',
0x8048a3a7: 'FashionThemeWork u8',
0x804d64b0: 'UnlockTheme36 u16',
0x805cdabb: 'ItemReleaseVersion u8',
0x8062290b: 'UseCulling u8',
0x806cfd72: 'EventLabelShort string128',
0x80e1de38: 'Snow_N u8',
0x811b386c: 'FashionThemeOutdoor u8',
0x813c0f10: 'Day2006 u8',
0x813dbbdc: 'ProbJulyDaytime u16',
0x813f03cb: 'MustItem1 u16',
0x81a43e76: 'NpcType u8',
0x8221388c: 'ItemUIFurnitureCategory.hshCstringRef',
0x822bbc08: 'StartMoS6 u8',
0x82644615: 'RequestNum2 s8',
0x829c32b4: 'InnerType021 u8',
0x82bfcf29: 'RegionEventCountry1.hshCstringRef',
0x82d6cf76: 'MainIslandObjectKind u8',
0x82fe2288: 'Month3 u8',
0x8331e771: 'RebodyPattern2LightColor u32',
0x838b098c: 'RemoteChase.hshCstringRef',
0x8392798c: 'NpcGender.hshCstringRef',
0x83b54e59: 'RoofMaterial u16',
0x83f13865: 'UnlockTheme23 u16',
0x84432956: 'CanPutKitchen u8',
0x84761fb6: 'CancelFootSE u8',
0x8525152a: 'NormalScaleLG f32',
0x856a4bf6: 'RoomSizeY s16',
0x8584af39: 'Month2053 u8',
0x859c3e3e: 'EndMonthNorth u16',
0x85a6cdce: 'Month2037 u8',
0x85c63b71: 'NpcFtrWatchPos f32',
0x85cf1615: 'Name string128',
0x85e386bb: 'AnimeTypeBag string64',
0x85ed8743: 'Light.hshCstringRef',
0x85fb9dd5: 'PointName string65',
0x8659e834: 'FrontTransOffsetX f32',
0x866b76fe: 'BackTransOffsetX f32',
0x869b271f: 'SNpcID1 u16',
0x869fb739: 'Reward4 u32',
0x86a4988e: 'Rate2 u8',
0x86ad0ce1: 'GenderUsEu.hshCstringRef',
0x86efa036: 'RumbleForEdit u8',
0x870f1e29: 'Tops u16',
0x871d2875: 'TshirtsLNormalScaleMaskB f32',
0x87589dce: 'NpcSetType.hshCstringRef',
0x8771aa09: 'ItemNum s8',
0x878cd782: 'StartMoN1 u8',
0x8792265f: 'AppearValue u16',
0x87bf00e8: 'Label string32',
0x87ff95cc: 'Output u8',
0x8845b2df: 'RefabricPattern3LightColor u32',
0x88a6501c: 'SewingRecipeID s16',
0x88bd09c2: 'PlayerFlagKeyAfterSelect string32',
0x88e75dd6: 'OnepieceHNormalScaleMaskR f32',
0x88ff5893: 'Door0Angle f32',
0x8900b8a0: 'ItemDailyCategory.hshCstringRef',
0x895442dc: 'IsSpecial u8',
0x897261e3: 'RoomType.hshCstringRef',
0x89a3482c: 'Item u16',
0x89a9492c: 'MaxValue2 u32',
0x89be1d8f: 'UseMyDesign u8',
0x89dfed0e: 'OuterLNormalScaleMaskA f32',
0x89f2f5b2: 'SortIdTWzh u16',
0x8a25bf6b: 'UnlockTheme15 u16',
0x8a28e471: 'EditBaseUnitZ s16',
0x8a377042: 'AO.hshCstringRef',
0x8a647661: 'CanPutDisplay u8',
0x8a7f8056: 'W1Parts.hshCstringRef',
0x8ae370c5: 'ForFes u8',
0x8ae48661: 'StartHour u8',
0x8af6de0d: 'E2Parts.hshCstringRef',
0x8af93ea2: 'MoveTool2 u16',
0x8b21a26b: 'Cloud_N u8',
0x8b3c9137: 'SortID s32',
0x8b47a7b4: 'SaveIndex u16',
0x8b64d51b: 'DesignSummer2 u16',
0x8b82d692: 'Day2013 u8',
0x8b8c8093: 'SyncNoCheck u8',
0x8bbcd514: 'InnerType100 u8',
0x8bc9a76f: 'StartDayS1 u8',
0x8bcc1f0d: 'ActionSetRate2 s8',
0x8c03fdc7: 'FU1Index s16',
0x8c2aec6a: 'TkkSkipNormal.hshCstringRef',
0x8c71ddc0: 'FtrType1 u8',
0x8cc22007: 'DesignSpring1 u16',
0x8d3bad84: 'TimeZoneOutdoorNoonLevel u8',