-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path0005000e10144f00_v304.json
3795 lines (3795 loc) · 173 KB
/
0005000e10144f00_v304.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"title_id": "0005000e10144f00",
"region": 2,
"version": 304,
"files": [
{
"file": "code/app.xml",
"hash": "7C6D25E76688BA4439A533CDD508D2F81C3E6DCC64B1393E7E8087DB5496A374"
},
{
"file": "code/cos.xml",
"hash": "ED668B94ADFFF53CE16FFB489F70F8244FD5F8468C495AB631BD02CB320EDCEC"
},
{
"file": "code/cross_f.rpx",
"hash": "DCEBF327B8E508F4F3280CBF3832E757FE6BA232A195DBC57EDE07DD0EBB9A33"
},
{
"file": "code/mw_shamo.rpl",
"hash": "047A8E5EBF5C6DFF4DED9E8A715E1EFBE2D4FD43AE8E153B7F7617318199F9B1"
},
{
"file": "code/mw_shamo_sbc.rpl",
"hash": "E573E5D5FED5A68F5E9D89065B528FF7965D8A2225552276A746969BCE77B7CE"
},
{
"file": "code/nn_olv2.rpl",
"hash": "CA92183D6530B77FD8FAD15A5399117CB3538469469A9779014FB4079F1C92BE"
},
{
"file": "content/movie/crs-f_mov_64_ED_Mewtwo.mp4",
"hash": "EAA2EF42DF66BD9E78FE77E16C686A5CD5ED851F2439FD183F2555F5FE569CD4"
},
{
"file": "content/movie/crs-f_mov_65_ED_Lucas.mp4",
"hash": "DA04AE2414D08A203D31FB5D919DC250A7EDF295EBEB7D63E7DEFAF3ADB08972"
},
{
"file": "content/movie/crs-f_mov_66_ED_Ryu.mp4",
"hash": "FA4F8464375C5DE902E009307D1884D27113E1D4EA5B9E9DB13D51A4A1AC503B"
},
{
"file": "content/movie/crs-f_mov_67_ED_Roy.mp4",
"hash": "E21BA67B9684B7666A563723D736554832426D81B9ABD675B9135F1230EE812A"
},
{
"file": "content/movie/crs-f_mov_68_ED_Cloud.mp4",
"hash": "0AD2B38F499BD561E115006AD5EBB9060EC35E7F99D647E4E5228402C0B146BD"
},
{
"file": "content/movie/crs-f_mov_69_ED_Kamui.mp4",
"hash": "8739DD9FA068ACE6C817066C34CC3D7991302CDBC5C318FB676644BC6B01B587"
},
{
"file": "content/movie/crs-f_mov_70_ED_Bayonetta.mp4",
"hash": "17A8A5A2E1A9A6E4170A0CE6D09F2D51F1E012EA262D54AF94C4A0B6254A8A20"
},
{
"file": "content/patch/data(us_en)/param/packed",
"hash": "6108A2581217F7C100146015F2BAAD28AAA60E827D0CFB2A0874FD1F9080D146"
},
{
"file": "content/patch/data(us_en)/stage/other/Allstar_f/packed",
"hash": "EB204478ABD284098CF2529F194242D9C5C7E042AAF3D343E1E3DC2A62ECA7C6"
},
{
"file": "content/patch/data(us_fr)/fighter/bayonetta/sound/snd_vc_Bayonetta_ouen.nus3bank",
"hash": "02E25201B3F31D16863257F0634AFD07D301F1D1157105E98D4AF0D41FC58032"
},
{
"file": "content/patch/data(us_fr)/fighter/cloud/effect/packed",
"hash": "719B7D013B59E9CC6FB72A648391699F224C27B341F012BBDA430AB1B015E9F2"
},
{
"file": "content/patch/data(us_fr)/fighter/cloud/sound/snd_vc_Cloud_ouen.nus3bank",
"hash": "2B667CEE27E92E3E2172FBB92CE65C2D52940B51C9120409655233A38B863D75"
},
{
"file": "content/patch/data(us_fr)/fighter/kamui/sound/snd_vc_Kamui_ouen.nus3bank",
"hash": "D2A06D74E1CF62E1FCD93C4A8C0B6B123C11360549C65C57EB38C0809EDFEC6A"
},
{
"file": "content/patch/data(us_fr)/fighter/lucas/sound/snd_vc_Lucas_ouen.nus3bank",
"hash": "E6F2CB1DECC1DF22F6B40924B8BB33E8A5496D682F0901B18A7C3263171F62BD"
},
{
"file": "content/patch/data(us_fr)/fighter/mewtwo/sound/snd_vc_Mewtwo_ouen.nus3bank",
"hash": "7D19F358C6132AB737E032A37B2E3F55773D359D4A92DBD3DF0B48D911C6C2D7"
},
{
"file": "content/patch/data(us_fr)/fighter/roy/sound/snd_vc_Roy_ouen.nus3bank",
"hash": "C1F150A446157788069834BB2FAF16146C3E691F7766C823E0BAE1641465E040"
},
{
"file": "content/patch/data(us_fr)/fighter/ryu/sound/snd_vc_Ryu_ouen.nus3bank",
"hash": "F5CF7D52D23764A3ED4E0ED0AB01C170826DB71E6968A0AAA9ABDF794F808003"
},
{
"file": "content/patch/data(us_fr)/param/packed",
"hash": "5BDE894A120276C5FEDB0645781B5437F93070FC595B7347539F8855A029FDAD"
},
{
"file": "content/patch/data(us_fr)/sound/se/snd_se_narration_characall_Bayonetta.nus3bank",
"hash": "6AF20D821816026022CC5B5B8BE332C3B18081B362D34F90988C633BF9C15171"
},
{
"file": "content/patch/data(us_fr)/sound/se/snd_se_narration_characall_Cloud.nus3bank",
"hash": "F66587A40ABB0BE323CD45F7DBC4BBBCBD9DBE04488395321394FE4230CD6BD4"
},
{
"file": "content/patch/data(us_fr)/sound/se/snd_se_narration_characall_Kamui.nus3bank",
"hash": "A6A0BA31FD7471C75ED19FD6DF4CEB68E742BF7DB9D09AD511AB4D448D66AAC3"
},
{
"file": "content/patch/data(us_fr)/sound/se/snd_se_narration_characall_Lucas.nus3bank",
"hash": "73B858E418EE07E1FF4284114F2796CE9577933E0816F5F2CE1F23D5491EBA7F"
},
{
"file": "content/patch/data(us_fr)/sound/se/snd_se_narration_characall_Mewtwo.nus3bank",
"hash": "001220F7414484DE0C270B44FC41C19670D4BCC1B6D9CC9B6CCD1507874942DD"
},
{
"file": "content/patch/data(us_fr)/sound/se/snd_se_narration_characall_Roy.nus3bank",
"hash": "4E447F53FD29AA6DFBB66EDC9B7E0EC27742A3F960DF1E3BF9F45369996EFA74"
},
{
"file": "content/patch/data(us_fr)/sound/se/snd_se_narration_characall_Ryu.nus3bank",
"hash": "DA6EF14AA0C5FC5C2F7F4645E49C93C531D1B0AB1DE55752BF1149EF2EF674D2"
},
{
"file": "content/patch/data(us_fr)/sound/se/snd_se_narration_menu.nus3bank",
"hash": "BEC68D2295382AEE3DBE2493F42DCBC896893A55D0A4E3C1791DA612677AECF1"
},
{
"file": "content/patch/data(us_fr)/sound/se/snd_se_narration_tournament.nus3bank",
"hash": "FA330DB77F15CAD50C6F2AB440E5790395EB4F0D637FA8814EA3F4F6FB50A719"
},
{
"file": "content/patch/data(us_fr)/stage/end/Village2/packed",
"hash": "A8D03E014637424D8AAD34113806F5067FE9C32E5B28061C4AE2B18659507050"
},
{
"file": "content/patch/data(us_fr)/stage/end/XKart/packed",
"hash": "D9797CF3A0E7C8757BFC634AC7B70698D84C132B016E65E6066AA4291E2346C7"
},
{
"file": "content/patch/data(us_fr)/stage/melee/Village2/packed",
"hash": "252C90BFA79F197516591BCC575B516334904B41F3A0B3AB2CD069DB2080BE35"
},
{
"file": "content/patch/data(us_fr)/stage/melee/WiiFit/packed",
"hash": "DB8A0C0F9A1F48AF0C85F5CE6078FCBCAB58973752FAC85D5CFF80DC401D766C"
},
{
"file": "content/patch/data(us_fr)/stage/melee/XKart/packed",
"hash": "3500E517D9D15A6B24CE0475583F284F270555B066D8C13A6F33CAFAC72EC343"
},
{
"file": "content/patch/data(us_fr)/stage/melee/XVillage/packed",
"hash": "2932EAA1A354A42543F37CFC85C730C48DBDA2D066DDF689F893D753D731A528"
},
{
"file": "content/patch/data(us_fr)/stage/other/Allstar_f/packed",
"hash": "EB204478ABD284098CF2529F194242D9C5C7E042AAF3D343E1E3DC2A62ECA7C6"
},
{
"file": "content/patch/data(us_fr)/ui/info/packed",
"hash": "28B902104D78352834A0F66595408A69225B79146E2A3E5896FD42E2FA886C83"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/chara_base/packed",
"hash": "F54CE2792F7B127F3B57AAF24443C9EB08034AA25A1B0EC43CFB35864B62BBC6"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/chara_base_8/packed",
"hash": "CA6B0298CE1E773144C25DEDF0B10F197DC911E5BCDD633D060A700D302ADFCC"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/compe_howto/packed",
"hash": "1AB15B4D4F6C3237C3C11E1D1C7FB2B5826DC85550A0594F6CB474CB4D6BC68C"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/compe_menu/packed",
"hash": "0F9B8615180899083C44C279F3467AD5C812C5F9407E1684E1E76600E6EAC2B1"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/compe_ranking/packed",
"hash": "3273B4061C3C401434573769AAAD2FB6AAA361B7B037A41F5667688E690DC7B4"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/compe_result/packed",
"hash": "47424030DEDFCE7F628D466420F64851A85C0CEFDFC2C4E78FFD1D4A149BCCA1"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/conq_info1/packed",
"hash": "0EDED30D89D1593C69E8EEC3462957CF69EEDC0D834163113395CEA44DDC6EAF"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/credit_congra/packed",
"hash": "F3F65C5D507D416C4762E26CB30D55DB4EB6A9F7310399BA99673EF2D3DAC2CE"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/eshop_howto/packed",
"hash": "A6BABB3E39C750BC67219C8AB32D12FF3AC7CDA89B561754AAD801F6F400B139"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/howto/packed",
"hash": "B98761D91E43A8EED1B0C8217244F8AF347F3A98257649DB6739CAE9A61AD7B4"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/main/packed",
"hash": "9F52ABEA2D6F39450B4517412D2EC2685E91903E72380046756E7AB3511A9F1A"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/nfp/packed",
"hash": "305005FB96A0147777A21298FC8F132C7F074D1E83535BBE116D5004FF128A65"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/nfp_delete_front/packed",
"hash": "C87B6AB13249ACB1D784DAA25B5D62B9D441A2D27629F4664DD1FC4BF3CED11E"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/nfp_load/packed",
"hash": "71A43DAEBEE3BD31C2C81EE717BA5B109A7365E18B2ACD0B3562A610BD605896"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/option_button/packed",
"hash": "F2D5ED8798730782906F833BCCE5C1972EE1A96390162CA54FFE0F6C0090A17F"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/other/packed",
"hash": "FDD3979654211D44BEFDBDAC8F0BDAE4E54739966063B2F7A844158DABF08A03"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/other_chrmake/packed",
"hash": "BB3B8F7555FC28488AE5E4CC9597B50859310389CF1391D344C0065F3C7DF8D2"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/other_col/packed",
"hash": "0D0920B0BD510D294227C60B3CA43E442C5B4543F65D22058C426A0B689A412E"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/result/packed",
"hash": "07A2B3CB1C26FC506156E2B9E35D49CBD4B98F070CA840C9FBADFDC49AA64DC2"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/rule_item/packed",
"hash": "F8246A12253A2ACA78E2B980CA579009FA3349FB8A142D6BD45FDA8BD122DC44"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/rule_stage/packed",
"hash": "B6E62C5AD9A410942B5C6EB8F7D2A13D55F66D2853E826149079D86BBF38F086"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/share_receive/packed",
"hash": "26B753E7811BA44A69D60A8E500E80E7E42CDE00A67DD9D9B32962219F903D1D"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/smacon/packed",
"hash": "1B48386F9B3052EE78941B40853CA838FFF6C70716E4B082A8B85BFB4DDE3C98"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/smacon_howto/packed",
"hash": "58B271FA75056008C2012DC17D2795BFA3121AB4BA1DC295BD657B434795E521"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/stadium_smb_howto/packed",
"hash": "753A3080C7E2541F4CD8E64F8B1303E22104BABEE3984349B6397FA92E5335E8"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/stage_cursor/packed",
"hash": "64FA997B5834ED439764FEE18D9A1BB2517AE31E8490DA01E8A65C6BC6C53ECB"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/stgmake_howto/packed",
"hash": "8968B4B112BDBF947653AAD9CCAAA038CB07CC837D419CC5644B19EFAF6516AF"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/tds/packed",
"hash": "174794883FE3ED77B79EF48A451ABC39F1027604D916ED69285F1D78D883FFC8"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/tds_howto/packed",
"hash": "E2F1A5AE5FB91C81F963B3C1076AFA31F5691ADD9463D54AD7384B8513C80DF5"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/tour_intro/packed",
"hash": "7953FAFC3CE3AC397F0EDC29A643B657AEAE86141A0B8542B09D08DF408E4106"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/tour_menu/packed",
"hash": "50739E5E528B671633BD56C78355F17C085FFCC8168FB6AD719EA35E61D63980"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/tour_opening/packed",
"hash": "46189042AEE4AD2E791E8A6F06C65C35FE95ED1321C648B294CF3C82C4CBD262"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/tour_result/packed",
"hash": "33EA5BB71C6A2D83DD975D89AF852AF415FD82A5D4DEFAE49CDB7AA688CAC394"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/tour_tree/packed",
"hash": "F84090FC3D32476BDD9FB37BDC26D52A76E8B0223F0B4784D2F5219DF81887F5"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/wifi_event/packed",
"hash": "ACFA78B258E0701E5F85990C8869243654014F6609F8170B5FD22D1DDBB9D719"
},
{
"file": "content/patch/data(us_fr)/ui/lumen/wifi_share/packed",
"hash": "50ADD60FEEDEAA9AC17BCD8D33C9276039454AB5BE5EF8C21F771B8186272EDA"
},
{
"file": "content/patch/data(us_fr)/ui/message/packed",
"hash": "CB03BF2820FFA90BD6691819D770FD436D80C07746DB94B4E92B302C45FD2E23"
},
{
"file": "content/patch/data(us_fr)/ui/replace/append/chr/packed",
"hash": "7AB262B125B70EB5D6EACB6729991DC2BBD4EC434EB173AB1603CB572D8802B9"
},
{
"file": "content/patch/data(us_fr)/ui/replace/append/customize/packed",
"hash": "0EE067B8E73A62CDCCC8FB62ED6BA6B7321FDF9398AD687FCBD38810DF0312EE"
},
{
"file": "content/patch/data(us_fr)/ui/replace/append/figure/packed",
"hash": "FBB1E4037D8D38E5AC70D71A75AFA89D086C958F31C83EB626190648A8B5A69C"
},
{
"file": "content/patch/data(us_fr)/ui/replace/append/stage/packed",
"hash": "FF7DFF9A478859CBBB71F1682DD68FF6D177355C19C01527BCDE5E44FFDFB3B8"
},
{
"file": "content/patch/data(us_fr)/ui/result/packed",
"hash": "1CAA7A69FBED9F19307D6197D5E4DB0C6D87A2B7326E0E98C26C0F5A55759953"
},
{
"file": "content/patch/data(us_fr)/ui/texture/append/packed",
"hash": "FC7EA834161C19FC1C26378241BEA3EA578A2BAF018C40E6A3098750EAA7A7AF"
},
{
"file": "content/patch/data(us_sp)/fighter/bayonetta/sound/snd_vc_Bayonetta_ouen.nus3bank",
"hash": "2C00D73EF78DB7EB9854EF6EE9CFEF3F449897372E28BC1D23ED5555E186C127"
},
{
"file": "content/patch/data(us_sp)/fighter/cloud/effect/packed",
"hash": "F5B34B7737E3E65C6952D164873D7FDA7B983CDB39EA90BB52F19173B9525FA9"
},
{
"file": "content/patch/data(us_sp)/fighter/cloud/sound/snd_vc_Cloud_ouen.nus3bank",
"hash": "80AC34E94541FBD6653E0A138D77362A84F907032AD9CAD8E6A01F7434EB97A6"
},
{
"file": "content/patch/data(us_sp)/fighter/kamui/sound/snd_vc_Kamui_ouen.nus3bank",
"hash": "E7D6CFDB6EA7A9CCD0CCDF0F448E24D25EFBAE79C4F1C849007797A023D72791"
},
{
"file": "content/patch/data(us_sp)/fighter/lucas/sound/snd_vc_Lucas_ouen.nus3bank",
"hash": "E7AE60C946D0E9EC9B65F9E6E16FD9C5D3BA6E59A7D94D87E53EE82548ACA625"
},
{
"file": "content/patch/data(us_sp)/fighter/mewtwo/sound/snd_vc_Mewtwo_ouen.nus3bank",
"hash": "E5152CF47BA7C1B768830369FD7242AEDBAF10E58BCE4B83FC03E7E777E195BF"
},
{
"file": "content/patch/data(us_sp)/fighter/roy/sound/snd_vc_Roy_ouen.nus3bank",
"hash": "7EE054AF91CF62E1A682ABDDDC6EAD721649BAFD8C9A0CE7E4E475D153E7466C"
},
{
"file": "content/patch/data(us_sp)/fighter/ryu/sound/snd_vc_Ryu_ouen.nus3bank",
"hash": "7C6CF9DA19A0E99AB095050ED7B54D1F20C2F6311D85B49B7CAA5FCBB6B931D5"
},
{
"file": "content/patch/data(us_sp)/param/packed",
"hash": "E16286250B81C44EAFBC452CB794E622682095093EB2A12F745EBF56AC38743A"
},
{
"file": "content/patch/data(us_sp)/sound/se/snd_se_narration_characall_Bayonetta.nus3bank",
"hash": "786D157D5A67E2570ABD3275BA3E37A14F6454D6208D38ED6E5E2ACEACC9E724"
},
{
"file": "content/patch/data(us_sp)/sound/se/snd_se_narration_characall_Cloud.nus3bank",
"hash": "6DBFC6105BCAC1401669FF9A3646A96FE4197079F9EE6F4B230004ABBAC6635D"
},
{
"file": "content/patch/data(us_sp)/sound/se/snd_se_narration_characall_Kamui.nus3bank",
"hash": "044F284C6591FADAAE8E180E072161CF08C983CF497695FD1DB989DBF04C053F"
},
{
"file": "content/patch/data(us_sp)/sound/se/snd_se_narration_characall_Lucas.nus3bank",
"hash": "18C3A180A1596AD1E76C22E008396D7D6BC2E066A8DDD4BF339DBB73164DB15C"
},
{
"file": "content/patch/data(us_sp)/sound/se/snd_se_narration_characall_Mewtwo.nus3bank",
"hash": "2BB0FDFB287793CB2056648AC5C630C38E1E195023BC90F2E81F0048B42EA9E9"
},
{
"file": "content/patch/data(us_sp)/sound/se/snd_se_narration_characall_Roy.nus3bank",
"hash": "AD1C6F8173763C1D3340B3035EDCA6A867597EE6446303E0FEF0F249CEBAAD5D"
},
{
"file": "content/patch/data(us_sp)/sound/se/snd_se_narration_characall_Ryu.nus3bank",
"hash": "FAD0496D81367B170685C1181E4FF916A6C1B69523983FD57F23B407BF14979A"
},
{
"file": "content/patch/data(us_sp)/sound/se/snd_se_narration_menu.nus3bank",
"hash": "DC3BE4067987ECB5BA2C1AF0184310BE6B98638C70C79C5659F0D156A18368EF"
},
{
"file": "content/patch/data(us_sp)/sound/se/snd_se_narration_tournament.nus3bank",
"hash": "64B07D17A2DA3C93D8A28518882BB9967863DD3B834CB1B1BA35A38C58914D0B"
},
{
"file": "content/patch/data(us_sp)/stage/end/Village2/packed",
"hash": "C87F0FB451784E2325419BC63DD64B2A594F48EC409510E08A155246580630DC"
},
{
"file": "content/patch/data(us_sp)/stage/end/XKart/packed",
"hash": "DDD1DB4BF84F0A37DAC1FC18B1F8C88F7F7499B4F1BC29EEB12FD69699420A4E"
},
{
"file": "content/patch/data(us_sp)/stage/melee/Village2/packed",
"hash": "06B61E82F1CB431CD56AC7684678EF8EA9C557E941B42807543D60A5113DD086"
},
{
"file": "content/patch/data(us_sp)/stage/melee/WiiFit/packed",
"hash": "F38D721F16D882E1047F402A764515FFA142BC91B51A33E595B8E527BA43D9DA"
},
{
"file": "content/patch/data(us_sp)/stage/melee/XKart/packed",
"hash": "941241026591BEB7AC2A30C762B2C345DF55FB7F1FEE48687A99AE0D8DBA9A61"
},
{
"file": "content/patch/data(us_sp)/stage/melee/XVillage/packed",
"hash": "BE38EA2FA55310DB2A7F44ABC203F2902D1D3A43BF0A17B645519179C3A442D4"
},
{
"file": "content/patch/data(us_sp)/stage/other/Allstar_f/packed",
"hash": "EB204478ABD284098CF2529F194242D9C5C7E042AAF3D343E1E3DC2A62ECA7C6"
},
{
"file": "content/patch/data(us_sp)/ui/info/packed",
"hash": "144093EAF2FF708098ABDBE9B24E5B25FBAAE569EAF34602FD5350A3CD2F9190"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/chara_base/packed",
"hash": "7AAF474390E04257311AC594A73EBA8D11F0964B9B281F9950374069E89DB1F9"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/chara_base_8/packed",
"hash": "40A3B2AFD25DD3E0C1ACEAC4D5452FDF5C574B5708A7117BC719D64212CB98BB"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/compe_howto/packed",
"hash": "6B9A0AB27D47A3D579FF9B0DB9B6151CBA48B47EF1DBF4E32FB2ED87A9E3EBD5"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/compe_menu/packed",
"hash": "0F9B8615180899083C44C279F3467AD5C812C5F9407E1684E1E76600E6EAC2B1"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/compe_ranking/packed",
"hash": "3273B4061C3C401434573769AAAD2FB6AAA361B7B037A41F5667688E690DC7B4"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/compe_result/packed",
"hash": "40B40FABB294DAB3D709BA4D5FE3D7BAD68AA911E0994025B6DACB662CC856C9"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/conq_info1/packed",
"hash": "4AB798F2D97EEC39AB644DF874741B911EB1B4E8DA85FA4921261EEB14275550"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/credit_congra/packed",
"hash": "CD047B0241249140B495B39F690905D69E8DA158DD2E171861E9B6746EF62AEB"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/eshop_howto/packed",
"hash": "63472385DA89383D02ACB517A5A98146A060FE01368722849BCB0D03879335DD"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/howto/packed",
"hash": "9E6A8F7FF17894B0E5113CEC2F8E2430144BE1C068D2B152ACCFD1AA885D97F0"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/main/packed",
"hash": "3E22445A978D293160E80A06DD48EC6EB5224201120B590D81E39AD69741B27C"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/nfp/packed",
"hash": "FE99B5B94B2112909F38BEA07D0D67FBF90FF89324DDB35A1F6FFBDB6D286203"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/nfp_delete_front/packed",
"hash": "BFACFB8DD1B270EC936EBE7E980CE46725684D7C6280FC1C0A2DCDAD7A00F21A"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/nfp_load/packed",
"hash": "D222E82B4395120C3A8D241FD27DFF8AC49F83A40624AC78568C40BC1B59D0DB"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/option_button/packed",
"hash": "A8BC446EABFF21A25E6A467E5FD030FBCCA26FFBE45FB3832657DBF7F8E4578F"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/other/packed",
"hash": "F6572F6CAB089401EBE18DE3110B702043F01DD4BA61A63745F2A99BD9000E7B"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/other_chrmake/packed",
"hash": "828DBDB6940FD8A8F44DADE958055D6032F02A05F9742CFDB99C243AEBE3A0E3"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/other_col/packed",
"hash": "BD1F5329062688CDAF991FF3F7C538210B56B98FFC29C201683FD7D7AE508B97"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/result/packed",
"hash": "55E316EC8406FC37A57B0324229800D163429A8D0241C12C67A80FE82C6D7099"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/rule_item/packed",
"hash": "75F8C3C5BE1B8572588E60F99FD9D682C31481EA604ADBD6188CFB0B965CC24E"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/rule_stage/packed",
"hash": "24874AFC73EAE30B8BAB4ED3265D3347B9EB7DD21A490C1CD11BE601D57D69E7"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/share_receive/packed",
"hash": "2E6356454F270589B12BD7C20367F9F9FF1113907F88ED39F8C227CB82213A06"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/smacon/packed",
"hash": "6937A5CB1FA61F368F6670B180F03A8F75C2BB683B0400679E7264B9950B80A5"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/smacon_howto/packed",
"hash": "E5E40AC8E8E8958E6D0D675BC995B4035BBCF4DFD4D366F7B7C013A7BD262140"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/stadium_smb_howto/packed",
"hash": "D4EB720A4C2AAD5DA22DD0DEC33441CF61CB2203F8FDF393176AEEF4B5C8A246"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/stage_cursor/packed",
"hash": "8A8659FBD288BD5584A993AF12192259902F68C7B23E7C1A9357EFC05A48CDF7"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/stgmake_howto/packed",
"hash": "DDAA28739D068B85368A9BEB68F26E63693E15DF75EC99367E255248626AE9AF"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/tds/packed",
"hash": "D118F260DF3AE8D65F3D8B6485BBD857E6FF3B64E5D489C953A9670A7E2C3D58"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/tds_howto/packed",
"hash": "337CDFB8642ABD852B4506E93C45CECC2C9BF2099641D557E7ADF15F17E3B4EA"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/tour_intro/packed",
"hash": "7E5BE11EE47829454F907135299D79112A5D454F428732451A92C02D00C09C86"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/tour_menu/packed",
"hash": "865C59AC0A11051AC6D6F95C37FD6417560DE8C1691D2F2BE16ED58AAAA33380"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/tour_opening/packed",
"hash": "010345F6DF94DA5E3421F958349886053C3812BEA665C6F9BD3CECA9A3AEF653"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/tour_result/packed",
"hash": "775C5018DBEAC3DC285C208BBA28734BC2439C39CE3D80A921A3AEFA7CD3FBCB"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/tour_tree/packed",
"hash": "032E88790C1509169B290897A2B51EFABA8A8935EA1A2BB1FDE1A0AD8834D542"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/wifi_event/packed",
"hash": "80D4A26D1F73E1A4CEF9A5438180C5B96C73BF11D76655C7BB546526E9D46D30"
},
{
"file": "content/patch/data(us_sp)/ui/lumen/wifi_share/packed",
"hash": "232A380FF9593E36A54EA4B0D80FC88A0EC93BBAC59C5D4803053CAB8FD9F269"
},
{
"file": "content/patch/data(us_sp)/ui/message/packed",
"hash": "4E437478F7FA52DC5C776CBF0A086E3D7BF79ECD1BB63218FEFF6D7B81AF0848"
},
{
"file": "content/patch/data(us_sp)/ui/replace/append/chr/packed",
"hash": "AB33832B783BEF6B7C0963D1295E67981CA92B614CDD422EE8A873F42A64DEDB"
},
{
"file": "content/patch/data(us_sp)/ui/replace/append/figure/packed",
"hash": "8C93A107228345376BB5D7020E2B0F721209A641CE2A55B3BE3EAC22E0544261"
},
{
"file": "content/patch/data(us_sp)/ui/replace/append/stage/packed",
"hash": "FB79305B10B9A1AEC6DE4D58BD2B0EE0F46FB354398A5279078F4B0B7E323717"
},
{
"file": "content/patch/data(us_sp)/ui/result/packed",
"hash": "68487B953F47267B8B619B7A84F777F257159C8AFEA6098E08F85874AFFA01E8"
},
{
"file": "content/patch/data(us_sp)/ui/texture/append/packed",
"hash": "56C18F1504B95951DD18F2A6C93042C169B01D3812A3E94F1E9432497D8E577C"
},
{
"file": "content/patch/data/animcmd/packed",
"hash": "4A6057DE3A1038FF7D0FACC2869D5D0489EAD218D8DC3EB737C31019D046257C"
},
{
"file": "content/patch/data/effect/packed",
"hash": "684851318A326BFBB8F12F014CDCFC4AEDDF112EF61E9796F67CA935E2A8475D"
},
{
"file": "content/patch/data/fighter/bayonetta/camera/packed",
"hash": "0F1B816235158FE14BB48201C6B2DA3C1ACE247585FD8CD816E0707262853D96"
},
{
"file": "content/patch/data/fighter/bayonetta/effect/packed",
"hash": "EEA6E50E67D7977B92A4A3C35EAE7DC2B9B94CBFB877FC51E6E4007DACCAFB01"
},
{
"file": "content/patch/data/fighter/bayonetta/model/bat/packed",
"hash": "9DCBC2B04D8CC8027A691F1B2DFFD4731BC537266A0726EC27399A7032FB1929"
},
{
"file": "content/patch/data/fighter/bayonetta/model/body/c00/packed",
"hash": "A964EBAEC5D0C22D63D9ED5060A994EBF5F79F273CC6BBCBBF0985E27CA92461"
},
{
"file": "content/patch/data/fighter/bayonetta/model/body/c01/packed",
"hash": "9A718F8096B3D0FD246817ECCD4A13A287BDC7AC939DE53A6A3D19D152005138"
},
{
"file": "content/patch/data/fighter/bayonetta/model/body/c02/packed",
"hash": "C2CA3645733D6821D8B86C128DDDDE01307DEA6F84EC7E87590BD35F3DFD27CE"
},
{
"file": "content/patch/data/fighter/bayonetta/model/body/c03/packed",
"hash": "077B16CB5E94BA4BFDDF390E3E4A8DEDB650A1E9BA58882676103EC9A7BCED6C"
},
{
"file": "content/patch/data/fighter/bayonetta/model/body/c04/packed",
"hash": "B8CA7EC1966DF15E51130563DDBFAA707EA6F71166F8087048F6B11099FE2FAF"
},
{
"file": "content/patch/data/fighter/bayonetta/model/body/c05/packed",
"hash": "DE77F8DCCBC671E8F49EB3AA35697A45FCEE601E1827AF79088E75891B3F69C8"
},
{
"file": "content/patch/data/fighter/bayonetta/model/body/c06/packed",
"hash": "74B76A8C8B7321BAE372CEF82156F26471E52538D87B662E6779AA8E645A11A8"
},
{
"file": "content/patch/data/fighter/bayonetta/model/body/c07/packed",
"hash": "8509A28C2E6DF5BB1A5ED33E535EE61E5685D9F2CB0E00051478F59227BDEF77"
},
{
"file": "content/patch/data/fighter/bayonetta/model/body/l00/packed",
"hash": "FCC3AC2FECE3AEEC6A011AD56F92FA1CDA9EF14CAB412F6C93AF583E9578A925"
},
{
"file": "content/patch/data/fighter/bayonetta/model/body/l01/packed",
"hash": "DF612D895092E9E458F2816E1987768BA98894656BEE6DFA8D35F0F714039015"
},
{
"file": "content/patch/data/fighter/bayonetta/model/body/l02/packed",
"hash": "F04D9F7E64D42FED569A4F48D4F8FB8BF52CF03450A03FC9359600C0B5D9EE3C"
},
{
"file": "content/patch/data/fighter/bayonetta/model/body/l03/packed",
"hash": "01C867C65849913A1C7FE5047DC1FE4A816ED24209735D4123F3E442D4086E94"
},
{
"file": "content/patch/data/fighter/bayonetta/model/body/l04/packed",
"hash": "98FBAE77DC2D18A89814B5B690FC1020313328B736171FFB58543620FB941CF0"
},
{
"file": "content/patch/data/fighter/bayonetta/model/body/l05/packed",
"hash": "6B92A11FE5796F196646B9939405369862027EB83FF54A720A31AE66BC753A38"
},
{
"file": "content/patch/data/fighter/bayonetta/model/body/l06/packed",
"hash": "A3D7B3A68C427326FAD8CF4DAAF3C00EC200A5D4E0EBA50146BB93C3FFDF9938"
},
{
"file": "content/patch/data/fighter/bayonetta/model/body/l07/packed",
"hash": "C84ACE9248ED690448C2E493D77A490C233A79696B3D68B50C4C2B66B5417059"
},
{
"file": "content/patch/data/fighter/bayonetta/model/gomorrah/packed",
"hash": "E3D0F5498F695F5F535E4B0319DBACA5E7BE042755AD6539AF7FF8F3E37612A3"
},
{
"file": "content/patch/data/fighter/bayonetta/model/hair/packed",
"hash": "3712593657A1D422474D4DB8AAB686AC97B1E7D803487AC1E289B865FB7A42B7"
},
{
"file": "content/patch/data/fighter/bayonetta/model/wickedweavearm/packed",
"hash": "F491FE899093B809827A3AA046F4D0BD94556DAD76FB760B77F2E5EDED90AC15"
},
{
"file": "content/patch/data/fighter/bayonetta/model/wickedweaveleg/packed",
"hash": "25A50B9EF77ECE04BA106CB6A1F7CEB16B537882CE79CE38A1F05B07BAC8FF2C"
},
{
"file": "content/patch/data/fighter/bayonetta/motion/bat/packed",
"hash": "6275DA7B43E60F4330484A7CB19F608067CDDF75F300A63FD60633F3AABD1F59"
},
{
"file": "content/patch/data/fighter/bayonetta/motion/body/packed",
"hash": "C88DDD89E91A0CDDBF4B13F2151C91346B1C0FD43F7B6482C1611E41BFA22DE3"
},
{
"file": "content/patch/data/fighter/bayonetta/motion/body2/packed",
"hash": "A2B8A4EA443BF38EC7473DEF3E42F7FD67873CBAC224E14F9DCD1BF8902D8099"
},
{
"file": "content/patch/data/fighter/bayonetta/motion/bodyentry/packed",
"hash": "9B5388549B1011598975923EEAF8B2FE1F7C7CEDC75642066A173CA96493B1B1"
},
{
"file": "content/patch/data/fighter/bayonetta/motion/bodyentry2/packed",
"hash": "F756F9AB73C05215CB27292134AE9BBD848C1B299628C364F87229404E77B5E5"
},
{
"file": "content/patch/data/fighter/bayonetta/motion/bodyresult/packed",
"hash": "E9885A10C49BBA5BE115E70517B20A30D9BD2E114F5E1A6B3D2D7F1E418720C5"
},
{
"file": "content/patch/data/fighter/bayonetta/motion/bodyresult2/packed",
"hash": "CDBB801504BE71CD717E59D6E47E447CB54846F6AFAB4F67EDA5F9549E26F497"
},
{
"file": "content/patch/data/fighter/bayonetta/motion/bodyroutemap/packed",
"hash": "8B4653387D9DBB3F288494D348AA0B212D8B70DAD708E9329363D2EF7F1467F9"
},
{
"file": "content/patch/data/fighter/bayonetta/motion/bodyroutemap2/packed",
"hash": "C7F3FB84DBB73AFA9F1FD1BF3CD06FEE1F7993BDD6F5938BFAD16993F21DE0B0"
},
{
"file": "content/patch/data/fighter/bayonetta/motion/gomorrah/packed",
"hash": "E0222479CF9C18B14FA0E35AB0D41F6C90E595FDF47722A251A946BE05361871"
},
{
"file": "content/patch/data/fighter/bayonetta/motion/hair/packed",
"hash": "041D6B017D155AE3F640A44C657CB06753F906F2F0D772CB6EE91222AE0AA28E"
},
{
"file": "content/patch/data/fighter/bayonetta/motion/wickedweavearm/packed",
"hash": "67BACE7DD8BC0F94A8C2B4DA8C526B8EAC4C82EFED0C6DBA5BA98BE90BF73A9C"
},
{
"file": "content/patch/data/fighter/bayonetta/motion/wickedweaveleg/packed",
"hash": "98BA28D8FC11ACDE94CFD3E22DC7DAADD8C9E3066D62A3C9DA8172F7B65246CD"
},
{
"file": "content/patch/data/fighter/bayonetta/script/packed",
"hash": "B93CC788E7F626D542D843155E964E11812B1B29679CE083F839B3CAC5ED3572"
},
{
"file": "content/patch/data/fighter/bayonetta/sound/snd_se_Bayonetta.nus3bank",
"hash": "F1353DDFB580CF49AF8CAD059341EFE9A16BC298FCDF6E326B8F0D77FFFCD2A8"
},
{
"file": "content/patch/data/fighter/bayonetta/sound/snd_se_Bayonetta_c01.nus3bank",
"hash": "5F1D2806FF1F078F9D06AB492EBF5290AD7462FA2CA23C45DF94F548B9F4775F"
},
{
"file": "content/patch/data/fighter/bayonetta/sound/snd_se_Bayonetta_common.nus3bank",
"hash": "0D4E265D175872E15FEE1A05C207FA0E9B3FC9CC4F3442A344E709A7F75C02AA"
},
{
"file": "content/patch/data/fighter/bayonetta/sound/snd_vc_Bayonetta.nus3bank",
"hash": "EA30289212E42988F8A55DD9C895D12916D293F4EDCD4AAE8602C81849E0D837"
},
{
"file": "content/patch/data/fighter/bayonetta/sound/snd_vc_Bayonetta_c01.nus3bank",
"hash": "2B7A1602EC1D6839A6A6C25FEE0FF5175E1310C7A556729E5C585DD4B39F9B6F"
},
{
"file": "content/patch/data/fighter/bayonetta/sound/snd_vc_Bayonetta_ouen.nus3bank",
"hash": "8FDFF020DA3535719722D646C9CB9C9F88E8919C125745D0FE20CAB38598D9E6"
},
{
"file": "content/patch/data/fighter/bayonetta/sound/soundseq_Bayonetta.sqb",
"hash": "076748DD09C4F5CA00FA4B3ED756145B1FC047074D8F1989B0D22B5FC55EACFB"
},
{
"file": "content/patch/data/fighter/bayonetta/sound/voiceanim_Bayonetta.vat",
"hash": "0765ECCC319E234876CC7D1A0C8E7003DC67958D35EA1F61532AE08961BEA01E"
},
{
"file": "content/patch/data/fighter/captain/effect/packed",
"hash": "EB96D936B111B175405B57805FCDAB2F663A8AB9EE4CD0A342CDAFA08B2551A7"
},
{
"file": "content/patch/data/fighter/captain/script/packed",
"hash": "09F40296C93D6D513EAD559601D69C027BD16A322F3BE69F2E1F96928C34371B"
},
{
"file": "content/patch/data/fighter/cloud/effect/packed",
"hash": "1B00B8242E0779C6AB9225C57501F4A97DC09E6FDAA5E44FA5904760E5008CC9"
},
{
"file": "content/patch/data/fighter/cloud/model/body/c00/packed",
"hash": "F5EA037A842950DDB2BA6258063823046FD62A5944850F471E5994543F2FA089"
},
{
"file": "content/patch/data/fighter/cloud/model/body/c01/packed",
"hash": "18F7B2A098D3289CE705384CEB3C4B9D58281B481C6B9EC10993DB8B40D2BF8F"
},
{
"file": "content/patch/data/fighter/cloud/model/body/c02/packed",
"hash": "593E2CB51FC99978FBDD6B1AC6F83175ABA589F9FB984CECAFB31CE304700A73"
},
{
"file": "content/patch/data/fighter/cloud/model/body/c03/packed",
"hash": "4710CCAB301C7ECFF591B0DB87ACFD2AD594550A43AF8C403AEA4CB24F48D9B4"
},
{
"file": "content/patch/data/fighter/cloud/model/body/c04/packed",
"hash": "78953BB15BF9752BB3DEFC7528E9D56A7CD7464C6308ACB2DFD259982E3B9B45"
},
{
"file": "content/patch/data/fighter/cloud/model/body/c05/packed",
"hash": "58A06E0727B00AFC49FBDE8E4C1CCE6FA336FFBFF2E686F216CA11FD01C7AA56"
},
{
"file": "content/patch/data/fighter/cloud/model/body/c06/packed",
"hash": "D5ABABD45A83A62682F4DBC84D85C285368A0055F92762D8C8867401E5502806"
},
{
"file": "content/patch/data/fighter/cloud/model/body/c07/packed",
"hash": "B0D01ECD2DEC6271F8DA047C0CD6402E6989C6BEEA17789D1B1AC20D9FA2F6C7"
},
{
"file": "content/patch/data/fighter/cloud/model/body/l01/packed",
"hash": "CE692692F0CEA794CF53E7394240BC8014A7444BCC952F3F96F89CF495467E5F"
},
{
"file": "content/patch/data/fighter/cloud/model/body/l03/packed",
"hash": "0A739CA3C517A0EE54ED3D9CD5F68E5E26E8649B6E6EDCCC2BAC774B3DF21256"
},
{
"file": "content/patch/data/fighter/cloud/model/body/l05/packed",
"hash": "4226070EF01AD52A591A5DBAE90292CCA96845B14D0A305D40E79AB44DF6F858"
},
{
"file": "content/patch/data/fighter/cloud/model/body/l07/packed",
"hash": "04A43AE5F8506A83EB0C2E3760AB0B5E2187CD551D7713F9CC87070D81B03E6F"
},
{
"file": "content/patch/data/fighter/cloud/motion/body/packed",
"hash": "BE9C4D22898C894C3C5E1ACCFF6F2F912BE8EB5D878F0F9EB778E2425E8B1C61"
},
{
"file": "content/patch/data/fighter/cloud/motion/bodyentry/packed",
"hash": "E0B04AAD7155403E24B0B008B131EE84C211842EFEBF787A231232310B9C0DD9"
},
{
"file": "content/patch/data/fighter/cloud/motion/bodyresult/packed",
"hash": "3539A0854390A11E0B517C9256A5AF0267964A4490952EDBD8A275E6BE6220D8"
},
{
"file": "content/patch/data/fighter/cloud/motion/bodyroutemap/packed",
"hash": "4A3857EAF9DDB9C267772375F7188495B8F33409386E252B046C60B07B356AE8"
},
{
"file": "content/patch/data/fighter/cloud/script/packed",
"hash": "1BF2AD63C04A99D4D1280B60AB1FA975A322C8A4921ED36530DD340F7E3D7C8E"
},
{
"file": "content/patch/data/fighter/cloud/sound/snd_se_Cloud.nus3bank",
"hash": "73C38936A4346B6E2FFDF4DCE9C1EBBCD7BD3C224243F756CA5D5FAD79FC7CC9"
},
{
"file": "content/patch/data/fighter/cloud/sound/snd_se_Cloud_c01.nus3bank",
"hash": "64E3D3B2EE6B65E5B4430F23870DD36A750129C37C4EBBFC433897804F0351C2"
},
{
"file": "content/patch/data/fighter/cloud/sound/snd_se_Cloud_common.nus3bank",
"hash": "05248D16F7F3C0B5A947FD2B67CE70C880328C258DEBD5B519409E1A2775E028"
},
{
"file": "content/patch/data/fighter/cloud/sound/snd_se_Cloud_common_c01.nus3bank",
"hash": "40C0D0545AF7EB96C2CA9DB23DBC1B0690214F3910AD50F443CF332FA0E8015A"
},
{
"file": "content/patch/data/fighter/cloud/sound/snd_se_vc_Kirby_copy_Cloud.nus3bank",
"hash": "7063E7D2ED95B5F3377D6F5B824F8FEA8C6ED7E2CC66DC3D6C2FC3596B743842"
},
{
"file": "content/patch/data/fighter/cloud/sound/snd_vc_Cloud.nus3bank",
"hash": "D3C28A32B1F625F8020393134483B4098CE25DAF835EA462C045D00BE7797123"
},
{
"file": "content/patch/data/fighter/cloud/sound/snd_vc_Cloud_ouen.nus3bank",
"hash": "234781A34AD43C6EFC93A7D81003BC49980C756F52EAE5E718F1CEC0682BC407"
},
{
"file": "content/patch/data/fighter/cloud/sound/soundseq_Cloud.sqb",
"hash": "BA8B8221CC5ACB7261F89FDE7749DFB0863F29E6841629B152BF8C0F349BC1CB"
},
{
"file": "content/patch/data/fighter/cloud/sound/voiceanim_Cloud.vat",
"hash": "896E69B79191BB135A539E3B018F26EEE1B97DED49F0410FA85B54F7320033F0"
},
{
"file": "content/patch/data/fighter/common/packed",
"hash": "6B4AD86525CC02533597BB56F0265E8175E3D6C92A587EF8A80CE4D4139DBB95"
},
{
"file": "content/patch/data/fighter/dedede/script/packed",
"hash": "D8FA3DE3F5E078504797BD515D78D9C183309D148DAE43E8FF34A22F951448E3"
},
{
"file": "content/patch/data/fighter/diddy/script/packed",
"hash": "985EA57F515287BAB95D21877B903F43EC5FB6F3053114D51A0610831AFAC6E7"
},
{
"file": "content/patch/data/fighter/donkey/script/packed",
"hash": "E4EE300F2C83CBE3CEF5D8B64E453D473437834BAA01B887DB02CFFF25734A9E"
},
{
"file": "content/patch/data/fighter/duckhunt/script/packed",
"hash": "68F273B5B62B1305A324EFFEDA7B3FFEF6B6520BA66E11CBF8FEC392D3B16527"
},
{
"file": "content/patch/data/fighter/falco/effect/packed",
"hash": "07826483D0C11A8EDFEFBBF34479D6C50490F1C68CB8524C1CFEEA404BD5B6C9"
},
{
"file": "content/patch/data/fighter/falco/script/packed",
"hash": "D35EDE12B96F73F38CB98C7F1A3EA85F4789BD2F910DE2F0EA08095E6DE4F59C"
},
{
"file": "content/patch/data/fighter/fox/script/packed",
"hash": "524501CE5212CBF17B2C946449DE98F7876A7B9DCC14154504ACC22D3E9EAE00"
},
{
"file": "content/patch/data/fighter/fox/sound/voiceanim_Fox.vat",
"hash": "EF1A3D0EDD2120D7096A9B8F91C8E4A5174FD0D49F6E78E4C34775B7DF738268"
},
{
"file": "content/patch/data/fighter/gamewatch/script/packed",
"hash": "FB9A65BD91287EE27F15153A06A864E23055D4907E87D1EF3B7D6175A307380B"
},
{
"file": "content/patch/data/fighter/ganon/script/packed",
"hash": "AF0CEF15981AD90A3AD39269263EB81E4150A581E8CDAE3309808F65BE2CFB45"
},
{
"file": "content/patch/data/fighter/gekkouga/script/packed",
"hash": "2241FDE06BCFA85663064DCB86EA34C29751CCC1702023F50083765F1211A8BE"
},
{
"file": "content/patch/data/fighter/ike/model/sword/packed",
"hash": "0919C46C57229183D03DB52D56811A164236E1B5B3AEBFCA4B66882E5AAA9E6E"
},
{
"file": "content/patch/data/fighter/ike/script/packed",
"hash": "6E02ABA74B95CF3D12C91EB89A165A610F6A27EE26B10EFF25E354D1D8D993A5"
},
{
"file": "content/patch/data/fighter/kamui/camera/packed",
"hash": "717A40346CCAEF2EC4A8A88AFF131A297F4ED8AEE14A52309F8FDFC5F37E9172"
},
{
"file": "content/patch/data/fighter/kamui/effect/packed",
"hash": "3CF833286FDDE322A1659E2627265F39195EB11CC7D94B2A4F5893CFFEABAAD0"
},
{
"file": "content/patch/data/fighter/kamui/model/body/c00/packed",
"hash": "548B36E851251E5605BC82EF33DC886C90F4672C4E08636DA9BD4B5EA7AF31F0"
},
{
"file": "content/patch/data/fighter/kamui/model/body/c01/packed",
"hash": "FEAB05B6183BB54D2A57C773747EDBE3F03DA5817F08BF4751E9134B54F92C24"
},
{
"file": "content/patch/data/fighter/kamui/model/body/c02/packed",
"hash": "136BD2BEA416ECC38F0108AD2C4E350004A6DDD551409D308F458E689A01C263"
},
{
"file": "content/patch/data/fighter/kamui/model/body/c03/packed",
"hash": "7171A4E071425AF6ED6260F8DF4A255415C5A772FE94DE5745F24C6F2797A288"
},
{
"file": "content/patch/data/fighter/kamui/model/body/c04/packed",
"hash": "83EABADD960C4F0EC297A0AB14D37371516BC99CDF24F4A599CBE304D793D0B6"