forked from biuuu/shiny-image
-
Notifications
You must be signed in to change notification settings - Fork 1
/
idol-info.json
7808 lines (7808 loc) · 389 KB
/
idol-info.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
[
{
"hash": "43c291ec2be7596c75e302485193ead4",
"name": "【白いツバサ】櫻木 真乃",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/810ee6de88e79f3a675ed774461fa71a97a773dcae8ef8f5d57ddb32bed1034b?v=8",
"fes_card": "https://shinycolors.enza.fun/assets/3b1c54c79401f010c3e057c3d928c5f2da4dff42b8ff39ed69b7fb74af165cc2?v=7",
"icon": "https://shinycolors.enza.fun/assets/8a92c7c2570b1e9d4ea817b72dd7cb13d116224807275478bd324a9a824a6535?v=9",
"id": "1020010010"
},
{
"hash": "fdb3e76af5c9928d0fd442da9309275b",
"name": "【白いツバサ】風野 灯織",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/080463190e4c595b8009639e221d33a3086dd75896194324ded86f70928c829f?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/2ee77ec16705d2688574331cfe252c40156bc9a3b64238680e0cbc1ac80d5397?v=7",
"icon": "https://shinycolors.enza.fun/assets/ab9db0cd19f89f6fac41797118484c13cfd35404bbfd720a868fd5b37f0f9999?v=8",
"id": "1020020010"
},
{
"hash": "a946cad16454c62e639b48c582d8f715",
"name": "【白いツバサ】八宮 めぐる",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/fee81b9fbf4bbbd13fd173f80f8c54de6aa94ffae6368e4136ee436fd7329949?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/3cc3d63c52988a8b4c72bc19a5f2370d1f49d1dc8bc9478b99f251c23fde910a?v=7",
"icon": "https://shinycolors.enza.fun/assets/7cbc807b243c7420f70d1d45500b99ac371845d6cb207e18d9a775c11ad9a859?v=8",
"id": "1020030010"
},
{
"hash": "0b612caf2c8666de1cbc9491eb150ca8",
"name": "【白いツバサ】月岡 恋鐘",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/e8c22d86aef81d9f45dad84b2e88150e3d08ed11be5e38a73f1ff9332f97e2a8?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/e6f50f0d78936808dc62f7de9d09512359cb409888121e452e022f12b5a2d01b?v=7",
"icon": "https://shinycolors.enza.fun/assets/509e1080bdbf26b50dd4e3e84aa4c9ab2033441282b1669e9c4ba637b29a5951?v=8",
"id": "1020040010"
},
{
"hash": "0e1b6cb1c1a90f4404c5d199dcc45f37",
"name": "【白いツバサ】田中 摩美々",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/c6acab7fa9e9a4b751c3c0735e885db32500323a189e7c9f8a87cd5a4712dc6e?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/82b0fd71baa81b5966543d9f95af128c63f054a57c2c2242cc3850d46f1d08ad?v=7",
"icon": "https://shinycolors.enza.fun/assets/0cfe90a5b39c047af33f6f82e66463932c9ccfb7ce6d60aefb5035169808fdb1?v=8",
"id": "1020050010"
},
{
"hash": "052acd6474ba16ee23550bc5aba47b87",
"name": "【白いツバサ】白瀬 咲耶",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/80b7116ff70416443c17d291e78c97f1d4e896b3f4e8cbb0c5dfba9b30ad680e?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/1897ff5bbeac963020d4694c111b11843bf4693d8b6808b11a61c3395ecb8ce6?v=7",
"icon": "https://shinycolors.enza.fun/assets/fe204ff471c05e412743a90607475b44e677ebc5e70c60616972dfe8a18270c5?v=8",
"id": "1020060010"
},
{
"hash": "13d73231f02715700a7c51f907b37728",
"name": "【白いツバサ】三峰 結華",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/9a79ed6ed2f83fae09e406da2bf3a2a3738dd2cc31c0e0192a804470aee0289a?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/1a3bf41e5ada342df10a6bd2897b29bed8f4b85b96c2088b802eca6102438fea?v=7",
"icon": "https://shinycolors.enza.fun/assets/a6ce202bac8911c223d26a7a7ba70d65e61388d6d641a94ef10dc728d90fb684?v=8",
"id": "1020070010"
},
{
"hash": "8a16c1006383737ecf2155560304c9c2",
"name": "【白いツバサ】幽谷 霧子",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/2102b9224e5a0b5167ee15feccbc3f741955331f12ae6121b449d9551112afda?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/8e3efed604d2d15757e76ac0cacace790971c6249288aee0d1d6c3a49e5a2f5f?v=7",
"icon": "https://shinycolors.enza.fun/assets/70f8aa05ea1492e6d1074b828963d953ec9ae13f33a1def4c61511a5630af7de?v=8",
"id": "1020080010"
},
{
"hash": "e833d95b0d34b8dd70852b106f2f0945",
"name": "【白いツバサ】小宮 果穂",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/3735dc0893d2f0d8412a2d9883e078dd35d5d91bcf2254901b0c97dee6f99bc0?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/9b2eec89716dbf503c3f6fa1b7489a9a8efdf38bcf21fd512f08ef116ae1bae3?v=7",
"icon": "https://shinycolors.enza.fun/assets/94f89a2a47a25737b0489dc992110295f290e2d42e02d04f6b080c14052c0e17?v=8",
"id": "1020090010"
},
{
"hash": "e7003bf1b10b4d8ad98b366ca56dc8d4",
"name": "【白いツバサ】園田 智代子",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/fa985689d4e1c27dd67ea9ee7b73f9c3af37b93dffe497080969a4e69be2eb0f?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/bc5fb819e99d4a9e08cdd5262f71dd1b6e8d12b0a61a87c399e31dd5b22a7914?v=7",
"icon": "https://shinycolors.enza.fun/assets/e1d23c3efa92bdfb4d0b4b4b23043dd991b1618463dd6d285eadc5098246ba13?v=8",
"id": "1020100010"
},
{
"hash": "d09fd69cb341eab38979e6a4cb22e374",
"name": "【白いツバサ】西城 樹里",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/b2db982e8c5d388a89408ecd0cfb32da4a7d47b660125b9170d3859b4c1ac116?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/6f398835dc893f49a0ecbd85355165b5d8d298d6fdc083e545d16635ecdf9c58?v=7",
"icon": "https://shinycolors.enza.fun/assets/0de8cb07620387852dd9d1643766e164b88a89e6d9645ea200f880e7b16229aa?v=8",
"id": "1020110010"
},
{
"hash": "05f34049831590df43f1be18cc6e67c7",
"name": "【白いツバサ】杜野 凛世",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/d3fc5869e0cc7b3237e4ca9a72658a6444356b51f83051844fa04ec1e972fab1?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/de74f46045181337d96fe69f87cf804f9ef7afedd0e7ccfa4758e4f2fa75f295?v=7",
"icon": "https://shinycolors.enza.fun/assets/88195443049190340df2e768b481cd5960f7ec855af8119bb555e4a7d74a54d8?v=8",
"id": "1020120010"
},
{
"hash": "1ec597303ff5264613ba856ee36239c7",
"name": "【白いツバサ】有栖川 夏葉",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/956f690e27935e6f30663cafb8341008a8c3d66412a433b66ccb76a9cec0278c?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/fd125522675ee35dbed59271dfa8d87a72e2b0e5149fa0da5af984b3b1475a3d?v=7",
"icon": "https://shinycolors.enza.fun/assets/b86c74046288f92c4e7f182aeb0542e9da0a0fbf737edb0f4d6d6bac3292b422?v=8",
"id": "1020130010"
},
{
"hash": "e374d0bbda1c8f307f4609c1b34434f3",
"name": "【白いツバサ】大崎 甘奈",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/a6ecb270a81811cb23ebe3dca74e93bae7d2da83acffb2f74390f0575d66ad4f?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/ad1b2096f9c0b15ad309b175cc863a55cc8ab5fb2e336402bfae51b95c139c65?v=7",
"icon": "https://shinycolors.enza.fun/assets/44a559ed83b42b87083bda70d129c598f701bff5525d8929b1513994179633d3?v=8",
"id": "1020140010"
},
{
"hash": "78d82528de27936af78a52667011e7cf",
"name": "【白いツバサ】大崎 甜花",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/28c66b616b80f291f9ebd56e5133cb4d039f734673aa940497043c510360e00c?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/0233b317d8105f196fe7763c05a90d6a9fc0ea8562dea4091f96806ae2a482e5?v=7",
"icon": "https://shinycolors.enza.fun/assets/dda74f4f1b53467e1921498db705b380ad34b626de6b4ebc316d12486ffb5f1a?v=8",
"id": "1020150010"
},
{
"hash": "c8a3f0b3d7afc6cbb3c3ae1b28fb89c4",
"name": "【白いツバサ】桑山 千雪",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/a333fcec3c5af78d9a1ccf2d03229c2ffdac724077cad16b5eebf03194deb3c5?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/36451aba61ea30ddcc1740c626aed5aeee4fb4e773b05a5a312beb7a5c92de49?v=7",
"icon": "https://shinycolors.enza.fun/assets/eab0da2243fdab2137941d37a134f151adc8e3535d19930caac5ef3dd64a625b?v=8",
"id": "1020160010"
},
{
"hash": "c6b23f96f84ed49df314b64657c43f73",
"name": "【白いツバサ】芹沢 あさひ",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/1851d527848566c7e8e7dd77d3b4f6b6af129bbb9b412f29a4b8152e6b50f430?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/c4f33071b16f87f18af55eb748738a9e0a77808bdd74bb1d122a2de48bd800af?v=3",
"icon": "https://shinycolors.enza.fun/assets/2751bda46c18402a29e4d81861821f84326e361853ed79d2c86f9260a725912a?v=3",
"id": "1020170010"
},
{
"hash": "61e484a7b049dc7a20e674d20475cf78",
"name": "【白いツバサ】黛 冬優子",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/c2fc8a71ed2b3ad1920799f3a0c0a342b362fb916a9c878da3be8f1d1d3fdd79?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/9c2dfa99eb46f002a8e1de17338fff8425fdc60c85ac2e14e7334fdce4162bda?v=3",
"icon": "https://shinycolors.enza.fun/assets/9b322336d356d9214fa57f5e0cbf6800fddb4333bbde36f24f683c553b348a59?v=3",
"id": "1020180010"
},
{
"hash": "b5b3990db0eeccd4068ee14901827f0e",
"name": "【白いツバサ】和泉 愛依",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/25e0dd10389251ae60ac5f079507bf541edcae960d2420357800aaa2e0271555?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/5e4180a2ff6abddf6b07cbfea8b0d28bd425ab0c4644fa85b54f1e00293c8470?v=3",
"icon": "https://shinycolors.enza.fun/assets/01a623f82b2ce175d0de2a5319313b44366bef94b04eb3232a2944dd25fddc87?v=3",
"id": "1020190010"
},
{
"hash": "e78c807126e0784d136ea981bdcc2bba",
"name": "【白いツバサ】浅倉 透",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/1e4727f2f3eb69bee8789e3d05bca67d7331b793ecc8593834132a7dd2663aab?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/7c8236bfd7f7c4cc28614b58b03ae9a62d62bbe930ecd2ea7cda62b58bbfcb2f?v=3",
"icon": "https://shinycolors.enza.fun/assets/83ba6288120fb446fac956a108de1d45cb6afbf5e369af14b717cfb544f6f3b4?v=3",
"id": "1020200010"
},
{
"hash": "19d88c6a604b1eca52f811a9161cf04b",
"name": "【白いツバサ】樋口 円香",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/5a60d0db29274f30099b984913749b41b3a0eabd945440255f3c6624a017396c?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/8a2960cf94698804232bcba702106d2522706f65e21afaefe43437a6e67d96d3?v=3",
"icon": "https://shinycolors.enza.fun/assets/b6c84b812bd6c1e07f84111313a972ff362d21925fa3785595f69e151ff331d4?v=3",
"id": "1020210010"
},
{
"hash": "1703a90120516e14ae663645fe6c8d3f",
"name": "【白いツバサ】福丸 小糸",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/e2606a48831f526e2e337ec09503eefe63ced4fd4cfff2ded05dc71687b65896?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/a8edcfd6f85ad0af0b289c312a3ff15b1143ec1cc0c5ef7a4d684d7a7bb89530?v=3",
"icon": "https://shinycolors.enza.fun/assets/8242cfd12a1d58303051e3fca3e5dd4b9c743428917a058a28fb27bae9604107?v=3",
"id": "1020220010"
},
{
"hash": "1b310782b368c7ced193285f2433c439",
"name": "【白いツバサ】市川 雛菜",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/9712211189f3136a0352aaece20bf9e6ca32655ee254c3847fb45e8bdde90278?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/97801a6fb9272b324d21f84dccbaaf48af50165de35e457e59add57c50a3edf3?v=3",
"icon": "https://shinycolors.enza.fun/assets/8e1e15d440d6f78c0f7041f88a4ccab7ebef1f35955d9c0383864e25a1445bec?v=3",
"id": "1020230010"
},
{
"hash": "f5922f22c836722274938cf8360b15bc",
"name": "【白いツバサ】七草 にちか",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/0d4c4c3f819d1dbfc6d490fed57000325f2bda219a76d18f9ba6fc8bdddb25f8?v=2",
"fes_card": "https://shinycolors.enza.fun/assets/c4dc00dda5dc2ab2934846eaddbbaecd20b69e6a2ab67a5c33d2b0c84eb0134e?v=2",
"icon": "https://shinycolors.enza.fun/assets/51b984470c6cd1505becb8b6312ac355626f58a97ff84b7e99f0025f20b2184f?v=2",
"id": "1020240010"
},
{
"hash": "259e2cb01d686ac389395c6ebc84e4cf",
"name": "【白いツバサ】緋田 美琴",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/ba3aaa540c5be7a2889840f989712a9d8c9d69031d5beb20de4887f9705ede44?v=2",
"fes_card": "https://shinycolors.enza.fun/assets/231c4100f0094c458c80f44b0de454feb38a2aed198c2758ea3c9b09a3099a2c?v=2",
"icon": "https://shinycolors.enza.fun/assets/b1f92bc90a2f2f77caad207c3c21fc967506b2f7df1c6aa42bfe1cd1bbe2199e?v=2",
"id": "1020250010"
},
{
"hash": "5336aa15bb4e769978d27a4a3144f1d1",
"name": "【白いツバサ】斑鳩 ルカ",
"type": "p",
"rarity": 2,
"road": true,
"card": "https://shinycolors.enza.fun/assets/cd11915c47884953fedb08dca2efccc003b70ba839eda5e4e04f5e3d0c0edc89?v=1",
"fes_card": "https://shinycolors.enza.fun/assets/23c986c1a84401a33297d4f19b1ff9c48627c8f4fe9c49c641a4b77fb077fa8a?v=1",
"icon": "https://shinycolors.enza.fun/assets/27c0a91137bc1214a0f11209bda7f8491b93e2813a07a448359655e1b3a221a8?v=1",
"id": "1020260010"
},
{
"hash": "aca516efe72eb876223a1958d6a19605",
"name": "【ナチュラルモード】櫻木 真乃",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/61fa899ebd2e1598621a4fd6e0f79c6dbfa45fb97fd03c101c627a976a2f0ebf?v=8",
"fes_card": "https://shinycolors.enza.fun/assets/7bc60fa6b4fc8c43ac68ee889aa9502e72749f9478cb37a15ccfac2ce999b066?v=8",
"icon": "https://shinycolors.enza.fun/assets/3b6d60477b7e5fe5c58e70be4b00e0ab43786d2fc32804d57d8e555cab6c053f?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/ba066aae8135888722314b4eac078b3e99be0dc21e38b9e2a1d98beb78e67627.mp4?v=7",
"id": "1030010010"
},
{
"hash": "d570f51dff4dd2d18e98c0c84b822b94",
"name": "【ぐうぜんBOOKS】櫻木 真乃",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/71bae86a064c5c749e3ff7c948a1612ee8333d4aaaf7506784cd8e47b3a9a376?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/93dcd47717f1fd433267694e70186e80de177f202d6468434f0691686c5b9ecf?v=7",
"icon": "https://shinycolors.enza.fun/assets/b3c9ec73d34634a5361be7c249c9149694999ab4f0e47b36fc11c1f97e42341a?v=7",
"m_movie": "https://shinycolors.enza.fun/assets/dcb8a0973edfcfe8c70c5725bffa640583d9d7db3804d6a91a61c629b12f686e.mp4?v=7",
"id": "1030010020"
},
{
"hash": "345405cc180b89030263a9f7c8bb96bb",
"name": "【しじまに華ひととき】櫻木 真乃",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/fd0dbb6cfc0fef78d3da3378cd72bd702213b3c912d5d4b41728660e8866ca19?v=4",
"fes_card": "https://shinycolors.enza.fun/assets/2c31b0d5f0c9e483dbf638223aa07e6df29241c6760d2635d2792d669849b435?v=4",
"icon": "https://shinycolors.enza.fun/assets/a49be1eb66a32e2e6dd13ba54712bb16c8c742ed57982704944decb4a2612159?v=4",
"m_movie": "https://shinycolors.enza.fun/assets/c2ab7545e710c75d919400b2c3307c6b9fc76029312cc0ba4df4eae7deef130d.mp4?v=4",
"id": "1030010030"
},
{
"hash": "a87454492ba01631716ccb734ff4a18d",
"name": "【花結びゆくゆく】櫻木 真乃",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/5c38dbdcc9e2c4b642b042fcd9c34210af9d3da2c6d1e53f8b1e0d5098ef7b03?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/72082c73469dee398e994c043b45223b47aea756bfce256a2186a63b42fd56c3?v=3",
"icon": "https://shinycolors.enza.fun/assets/5944bcc2603de8147629817b41d04f0c4afb999934245d5b6c8be8a18c648484?v=3",
"m_movie": "https://shinycolors.enza.fun/assets/6d25148a6c3927d696f42d0f8033486cd929fc5771f638d530a6ad1b7b6f1e55.mp4?v=3",
"id": "1030010040"
},
{
"hash": "044b877795ddcc6c991b5a3e0ebc4f5e",
"name": "【一番星の魔法】櫻木 真乃",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/2b4038bcb97d213c6157662aacec8ed2c8e0ae7809cb7f04c44ef6bc94c4c79f?v=2",
"fes_card": "https://shinycolors.enza.fun/assets/c69c1bc9a77d53acbc6e92fe56a0e7b2a1c975d05027542b4eb34d0e2cff3c75?v=2",
"icon": "https://shinycolors.enza.fun/assets/6433b0a7ba0f4904514e04a8e0f139ca1e764e113d914cf1c576f9bb05041073?v=2",
"m_movie": "https://shinycolors.enza.fun/assets/27b961228b5cd4cb4d9539985fdeff22979f7f143a9edccb380e6cdd8b8add14.mp4?v=2",
"id": "1030010050"
},
{
"hash": "6356b0a1f516a2cea614acc425cbad47",
"name": "【ピックアップ・スプリング】櫻木 真乃",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/4f56fc47690e616753bef6516ce153e4a24aec613ce36fb794bf32314bc9db79?v=1",
"fes_card": "https://shinycolors.enza.fun/assets/aa384798c2969dbc51e56e34089bd6c77d6a0715fce1364144048b07a2ff44da?v=1",
"icon": "https://shinycolors.enza.fun/assets/02033afc5f3a99960187cc75aeb243cfcee37daa19f4acf3f8e32876b68210ec?v=1",
"m_movie": "https://shinycolors.enza.fun/assets/89f5a93d6aa7d8d64dcd4d7fca83a6b460c02ce8657314d91fe380c8fcf8a711.mp4?v=1",
"id": "1030010060"
},
{
"hash": "a30f3030dd7c8fba656ced1d1edeb2db",
"name": "【手作りの心遣い】風野 灯織",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/c5b4f8dc4a52aba81c03621adc40af883d92a7290242b34e0f96e4101f2dd181?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/ca8528a101da38fa720f1a32e1597c9ed50c93dd6b83fbf265e3f0e7547a4152?v=7",
"icon": "https://shinycolors.enza.fun/assets/4e808f6c622468f90c7429b07165db68f5f22095940146da88f90b9069093ef9?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/7b5ef0a8c61795e540d244fa2c9ddfdc15348457151c83a8ccb5334db3839ea2.mp4?v=7",
"id": "1030020010"
},
{
"hash": "91824d0484fd213818622b68c7453454",
"name": "【マフラー直して、心は解けて】風野 灯織",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/65aba614604902e9a97006feb3dd6d92a51f8b7e064a24d259fd06fae11edf06?v=4",
"fes_card": "https://shinycolors.enza.fun/assets/f98cbcf389c0deefd2e8c90a64041e32e9ea4921edff36b2a8ab684b22e41882?v=4",
"icon": "https://shinycolors.enza.fun/assets/00a434bb05e0ec13e7f1dba1d3bf05335666226533af00d82007deddb7bf5134?v=4",
"m_movie": "https://shinycolors.enza.fun/assets/e6537f062d13f6e6364a1aa4816b195053a93f6e573505fbc56b72fe5ef8505e.mp4?v=4",
"id": "1030020020"
},
{
"hash": "cc83fde96ec45426aaa8be8b8de5aa36",
"name": "【落下予測地点】風野 灯織",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/e008d785600f4a3c087adee13fa11a41f44d1d3a5d656661ff18da24c6503d05?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/520ff78601302e8b4dbc60538e2d511ce307c2f7cba8b863a7d97fd4ca9363c6?v=3",
"icon": "https://shinycolors.enza.fun/assets/6e82886b2dd11134e8c862b88355392faa096ea639085d798e77c47fd5da37ba?v=3",
"m_movie": "https://shinycolors.enza.fun/assets/c73f9aa29a2c13401d0e960dbee23678da57b4c655feb8a8a879204a11669003.mp4?v=3",
"id": "1030020030"
},
{
"hash": "a0c9d54fe6e8ce50b1b699b6a4829805",
"name": "【インビジブルタイム】風野 灯織",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/9e983c265121a1d7faa34b25fb3b62201564016cee88f73ed14fcc23364e6be6?v=2",
"fes_card": "https://shinycolors.enza.fun/assets/ad9dcb8fda3a229e00f1c5a39cfa1ab56223da38e3994052b182e129481cba7a?v=2",
"icon": "https://shinycolors.enza.fun/assets/41e742b68fcef667ed2b77d360a6349bf1c216f162633d18dca271b81b13e8f7?v=2",
"m_movie": "https://shinycolors.enza.fun/assets/6f7f3184db7016f3bddf9821bc3107dc605ec0e2e5417c0f0cb430f7968b3b13.mp4?v=2",
"id": "1030020040"
},
{
"hash": "38074837154fccad1bf0f4c20db16268",
"name": "【足りない隙間】風野 灯織",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/2f828c08f9a3e66145381fa3e8940a3a365a88a9762012a4860bacdf56f4ebcc?v=1",
"fes_card": "https://shinycolors.enza.fun/assets/3a96b3894d8664a3522399010c855c9768a69e12341e147bf74fd99cc9f852c1?v=1",
"icon": "https://shinycolors.enza.fun/assets/98944ada387da8310c3de8fa6f2b33553dc5fa8293b7f2d661eae91018334405?v=1",
"m_movie": "https://shinycolors.enza.fun/assets/d93617c066a99f46e6ee0f54a7442445a2b9950c2fc8fbad5275ed51cd905358.mp4?v=1",
"id": "1030020050"
},
{
"hash": "c1ece030659cc24923e687862c38d0a3",
"name": "【キネマ・リリックで夢見て】八宮 めぐる",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/b9b6e6d6f5c3924cedd595a195857e8bfe07873e0ecf85c89174eb7f63d7eb4b?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/94d8499a410b2e3742ed4de991a99331b65f9a11e61555701a22e12255ae2e59?v=7",
"icon": "https://shinycolors.enza.fun/assets/8d6adac31bb48823a55e11e5979d6d355d75fc89624683b6743ee4fdcf12b4ee?v=7",
"m_movie": "https://shinycolors.enza.fun/assets/177d50a4b71c0676175c72b7450fbbdf335d6ea82b2bf8bba34d50cb95f35e7a.mp4?v=7",
"id": "1030030010"
},
{
"hash": "5cd0e0f78b11514ca470b23d26865f9c",
"name": "【小さな夜のトロイメライ】八宮 めぐる",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/8b16b5a2ea49ca03d536eb372a4cff6ce33565862337799d2f11fcbc4e3aa49c?v=4",
"fes_card": "https://shinycolors.enza.fun/assets/66225fe8ae75df9f39bd7449c72c8451557ea749a963c6e7bbb7e0a0a8cbd467?v=4",
"icon": "https://shinycolors.enza.fun/assets/782e06f68ff73a9ba8f6dbb25c226202ba086d207c5959e364053f5544685aa8?v=4",
"m_movie": "https://shinycolors.enza.fun/assets/9aefe1a86d1e0605c845f3fc68dd56963e3862471a3ee53d653ff6088d8d5356.mp4?v=4",
"id": "1030030020"
},
{
"hash": "4c5e870c980b964dd990d8392bc52b4f",
"name": "【チエルアルコは流星の】八宮 めぐる",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/50db616b890e832a91472e0a62ad8d47146c59a19605711f799b4681ab138a6b?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/5ec2cc167f1a5bf6cf65164826e4777ea513b03d045837982f250f80d439a853?v=3",
"icon": "https://shinycolors.enza.fun/assets/9eb57bd64a549f47c8ed772b802ad996d91c63817f8a7e17ab92417d7eb5faa9?v=3",
"m_movie": "https://shinycolors.enza.fun/assets/95a0e87508a0603a2fd092d73ea2412d3be353821afeeddcc219c787e5a031ce.mp4?v=3",
"id": "1030030030"
},
{
"hash": "107216ee3f8f38a12a0cd6e09c6f3a78",
"name": "【ハロー・ワールド】八宮 めぐる",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/5ff41cd2a25599ed56ee28418901d04bb8b4f2b73fc26ed2463cd6a3b8eecbef?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/09e4db3de0aaf745629c4994b7488cb6417010312b797f6fe72f37872233aade?v=3",
"icon": "https://shinycolors.enza.fun/assets/2dac754dff2160d4be0b8a9ef056b796985e44f5e141ccb5391908a67c0bf87c?v=3",
"m_movie": "https://shinycolors.enza.fun/assets/69b9f047ea04717e0543bde3ace0fbdb0cae88693052f29dd2b95aabc78983e1.mp4?v=3",
"id": "1030030040"
},
{
"hash": "fc5b59772f25992f3c434732de2d3aec",
"name": "【セツナ/n】八宮 めぐる",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/0549217ee6b111c74e1c313857b2388126d13483cc702353578c6b764cceb37e?v=1",
"fes_card": "https://shinycolors.enza.fun/assets/191f6188d136ea7a8ed7939bccbe691c2ee1055f9219005581db9d6c731d9449?v=1",
"icon": "https://shinycolors.enza.fun/assets/91ba749689d182d6f9fdf3ad75a65b894faf854d1dfb50a8c669add7deed1953?v=1",
"m_movie": "https://shinycolors.enza.fun/assets/b114457c2963460708c926f0a01185dc2fdb5e023655eb1185c9e302e699e152.mp4?v=1",
"id": "1030030050"
},
{
"hash": "a77b7ff3de72c24d33f09ad1543e8217",
"name": "【ばってん長崎恋岬】月岡 恋鐘",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/219ab1c653921de5d00d3f0335a9c9023b034cc8a0d4741fcd373e252f4dce20?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/fe22b542387b88537bd33b071fbbca5d222c9927761926bf0be312ba78cfd3e5?v=7",
"icon": "https://shinycolors.enza.fun/assets/908b1d75f02927e4d0ec360b4030b5e95ab3d25b2d2b0ef7fbbc5c245725f5d1?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/3f165160777ff1ed59424b33b7df5ff9c14a094badbfab75bd18b5179a6a8631.mp4?v=7",
"id": "1030040010"
},
{
"hash": "fbd7ef22ce7c8ce0dc8fb24b363af386",
"name": "【ビ~♡バップ海岸】月岡 恋鐘",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/6e48b273e8c5b89e1f29bbf0ff9eb1c58e71e83a395f3a0d218e394a93251817?v=8",
"fes_card": "https://shinycolors.enza.fun/assets/deb0ec87baf781d4ea738329b615608b08c8c4450ef6229b8f69c256226ea076?v=8",
"icon": "https://shinycolors.enza.fun/assets/db7d73b6877b4ed06c865380a85cd77b31ae2eab0a3243065f608a2079769946?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/9a7ee0f7dd48b7ad80d8dd9bd9c2f6ba60752e1ba90bee4463270e308bfacf13.mp4?v=7",
"id": "1030040020"
},
{
"hash": "9c59f3214fb37e8518d84f9f4cb50fb7",
"name": "【は~と♡に火をつけて】月岡 恋鐘",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/cfd722d96c977db354b26059fc629560c468529fc5fa937fb3b368563672ad32?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/edae03706543c85bff1d0c9ac2faedb9d12ae771bfba0ea88ccaaf745c5e347b?v=3",
"icon": "https://shinycolors.enza.fun/assets/ddba92a742086860e02dfa6ec286f26d316bc1383e93715493ee538d2222c546?v=3",
"m_movie": "https://shinycolors.enza.fun/assets/08c4352f10583af684f43723b2a8d1a6880adaf6c0683ddb297b34579029b5a4.mp4?v=3",
"id": "1030040030"
},
{
"hash": "dd46132bf637709709cee905f0f1ae4a",
"name": "【猫道カントリー】月岡 恋鐘",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/b1b39960117ef379f42bcdab7a9d0641a9f6d96f818e06c17156c0d2beb4ace0?v=2",
"fes_card": "https://shinycolors.enza.fun/assets/48515979dde49cebc4c87a5dbfeaa6d5846469ee9df9d16e7cb84b338aaff235?v=2",
"icon": "https://shinycolors.enza.fun/assets/059699be7218d71d50661069d90465c2f17a78dd2f9d3469ae5d9db399363933?v=2",
"m_movie": "https://shinycolors.enza.fun/assets/12bcf7479a0691b9a55a70e76aab08013798a2ebca75de3ff28440acb0f2a1c5.mp4?v=2",
"id": "1030040040"
},
{
"hash": "63fd8c15d50074dedfbadb24782ada0d",
"name": "【雪、えとせとら】月岡 恋鐘",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/6c581bf5a55e71e7bfb725b9dac1ce7205993f4308748c63f61452255f203ba4?v=1",
"fes_card": "https://shinycolors.enza.fun/assets/cb64d3821a8719183a3b079c5fd85c7dcdc0d810cce8da2ac03d9c48299c91f0?v=1",
"icon": "https://shinycolors.enza.fun/assets/f03cc0ac67d75e5070417a86cf1b4fa52c8bbb8ab9a16531ec43724163e5dc85?v=1",
"m_movie": "https://shinycolors.enza.fun/assets/9feab005691706c5e4e337308eefd87ae5b91636b1df7ded6f5a3961bc2ce0c3.mp4?v=1",
"id": "1030040050"
},
{
"hash": "ae84533ea13d0d64ba5f284adcc5fc96",
"name": "【裏腹あまのじゃく】田中 摩美々",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/fedf17c72d4252336706758fe54b979a8e548b6f31cde1e285f9b514ca9fc7fe?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/63e2beb782ded2cb207396cc09947572ece02bf0d020b00af2ef7dd5e461a716?v=7",
"icon": "https://shinycolors.enza.fun/assets/ff761ccf9b1c8130e3319c9896c03a0c3851cc19cbd7479bc1306703aa32de03?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/58f9b58f855474c290a3e3416c85762acfbf60139dfc31762463e3255700f34b.mp4?v=7",
"id": "1030050010"
},
{
"hash": "fec86e546fe99b724863b4ca5ae6bed5",
"name": "【夕つ方まみみチック】田中 摩美々",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/c1773f29c4a7c8fd88de0b0a41ec7b293a21d478b645376be0cd52d30f2ff0bf?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/ab7ce99551cd6b8e2687f210dbdbb9e1f257ac378590c650cfba207877c88f7a?v=7",
"icon": "https://shinycolors.enza.fun/assets/f95b7479fb625e7dac0582761c27f4db17478a1708b0b06f300caa1bb4b83f51?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/acbe2c762cca7988a2db8cb5d20806200b7ac041efce7b387262a3ca373ab3f8.mp4?v=7",
"id": "1030050020"
},
{
"hash": "7874b354a200d4983223185d2f5e312d",
"name": "【そのまみみ無気力につき】田中 摩美々",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/ac63f728932633aea1230764794914b3ea4f772eac4b70def9130772a282533e?v=4",
"fes_card": "https://shinycolors.enza.fun/assets/e1ad35a46fd2216b29e5dfca73d2d63a5ebf227745d0ee39dafd2a12086eb0fe?v=4",
"icon": "https://shinycolors.enza.fun/assets/8ee20c8482b5a3d1463ce40ecea0fa7a1f577238c1774fa2693914075aec3037?v=4",
"m_movie": "https://shinycolors.enza.fun/assets/cfe66abfedc5402df03001fa6cf59efb438e9d807dd8dd11284b2e596855bc62.mp4?v=4",
"id": "1030050030"
},
{
"hash": "2e67ad6b93b41c5b88511dcd9774b388",
"name": "【FANCY 24g】田中 摩美々",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/39f44b130e7a706d896055cae06c2e83fd899ee273d998cb14bf29b8a606a385?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/110d45cf31602de2adcbaf613d8469c0cb8ad15541c647e4d638972b7b4cb5ca?v=3",
"icon": "https://shinycolors.enza.fun/assets/ed703ab2f3fdbccc4c0b7abe272c2f18206a8ca330b3c3aa6860cd7d329c42ff?v=3",
"m_movie": "https://shinycolors.enza.fun/assets/c0bb6a3fd007a4b65df63c19a010ef17ed4a5cd6b1564addd865894a2c2027c9.mp4?v=3",
"id": "1030050040"
},
{
"hash": "52970a2d155674f2f588cfafcedbc2e9",
"name": "【irodori-corridor】田中 摩美々",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/1c82cbbe774ae0e82aa6097e1ebdbbc0b4e4d92eb86f09b7ac58593e02ed4b38?v=1",
"fes_card": "https://shinycolors.enza.fun/assets/83704b51978f442ecbeb9f8b7de36fbb329c202113cba99df32a71ccf3b6d7f1?v=1",
"icon": "https://shinycolors.enza.fun/assets/bbb1ce0d9ef6e56a17f13eb131e4cd344cffa660384d0ed45b43c0f1f0c61959?v=1",
"m_movie": "https://shinycolors.enza.fun/assets/3118e510ac9eb22d69a1e123436eafc6bdf947bb125afb44ec1fac5dfca69414.mp4?v=1",
"id": "1030050050"
},
{
"hash": "bf117d2aeaedd909e5828d341a182398",
"name": "【秘めやかファンサービス】白瀬 咲耶",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/f6746e61f435e2cb98386ca984e62e2ec466e9c3f86b3e230177b35c69d733b4?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/b6a2a427f31ff348838df4d06e21a6d83ebb0fc5e5db73f1c0b73400c125c819?v=7",
"icon": "https://shinycolors.enza.fun/assets/2912f5088d6e50395c5df8dd2bb026d8ef36cee17ad1d38d8253215435ca46a9?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/3ba881157770ccb9e12fe1c0ced4d5d713ea31bab3213e90e1cf44db2168b799.mp4?v=7",
"id": "1030060010"
},
{
"hash": "ed2184569e76b3db836f1e8a52cf9171",
"name": "【ふれあい、おもいあい】白瀬 咲耶",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/dab9ba9065251aafa229ef88b737f97b59aa6d9209906841f6f52e1cd599b0b3?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/c56dd844a8fc163cef97ee06dc1d06765ca267e265f5fb25dd08ec1cd99ae28b?v=7",
"icon": "https://shinycolors.enza.fun/assets/a62f87d79b3d9f306f56e490030019469247b903591d88526a98607735911af1?v=7",
"m_movie": "https://shinycolors.enza.fun/assets/406ce5f1a73eebdd160ba6e8879c315bc023c0491e7ad98aadd4eb40b2f19f51.mp4?v=7",
"id": "1030060020"
},
{
"hash": "f95f055116060f93e153d5f834f963c1",
"name": "【真紅一輪】白瀬 咲耶",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/7ebe6e1b840a5e1a5b322393dd36d023bf545a37da1a6973efe8fe1ac0261ee6?v=2",
"fes_card": "https://shinycolors.enza.fun/assets/bc0eeb9fe41bca3c02b3c46542db3f0ce3947fe27a446ebef16a1b94d40e3e01?v=2",
"icon": "https://shinycolors.enza.fun/assets/7c1dc54146fa27d8af2a0702b9693f3c9e3db64d115b90cbe22a6cd39a1b518e?v=2",
"m_movie": "https://shinycolors.enza.fun/assets/46b04fe8efdd65ed8f07095e24c6ce8ba78e086219da66948da9c3f5c3104c11.mp4?v=4",
"id": "1030060030"
},
{
"hash": "b4c5cc9434285ebbe6d3319afc275ca9",
"name": "【雪染めロマンティカ】白瀬 咲耶",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/ec3ab44a8901e579a0cdf3c6d98e7d25bc62ed91dfc0d6ae566062092161eb8f?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/7b93f6f642a5eaf0782f1e5f1a08fd85e0315e6665a65b85c56554420c34bdf4?v=3",
"icon": "https://shinycolors.enza.fun/assets/83376a071000b6ae1d4c2b35e2a9ee3307bb34b950acb31f5c32c4049459f59b?v=3",
"m_movie": "https://shinycolors.enza.fun/assets/f9f29b5bce2d68f04daa404d0409461aeb82c206b988f1c22aad955a877ed58b.mp4?v=3",
"id": "1030060040"
},
{
"hash": "a53473de8f533fd0bef7943cd9e574b4",
"name": "【カラフルメタモルフォーゼ】三峰 結華",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/f7dda22f8af8afb3d9e19ffe59b9ffa2f6abddd858d4808dff6054c9d310e93a?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/ac848d7e3c0d35d2cf4b38b6c4aa389c904e637e9e5e720d7a6d7c6cc465bd16?v=7",
"icon": "https://shinycolors.enza.fun/assets/a381a97ecc3d54354c8fc5f80d68ce09dfdffd88175859a079851da2ad0ee74a?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/28711e8a438b8de24676be1f2d4968ec35bf1f27a3c9c65470a51a4061b61c8d.mp4?v=7",
"id": "1030070010"
},
{
"hash": "0a6ade7a9d0eb6116e80046d84d69eb4",
"name": "【雨色、上機嫌】三峰 結華",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/789364b81fa1bccb6def6494b9d1de7b72fc87a1ee73f2ea623f45f43ccc4d75?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/9125093ce6f4b56c729b1974fcd7969a3adb8fbf6826e13856b5463950b31e37?v=7",
"icon": "https://shinycolors.enza.fun/assets/aeb6151790fbe5ee19991bab95f3d16d846ffcbc241477312e9b85fe45ca65d6?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/d214b10b8ddda7b28222e9114eed7cd1cec6781b31aa9713b16c68b5f503db15.mp4?v=7",
"id": "1030070020"
},
{
"hash": "b6eb0371f34a31e0b6435b00f9835cd3",
"name": "【お願い、ただの少女がいい】三峰 結華",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/4c00ec875555742d9e8229f0ee45a018dceec0cc8f2a97f471a458560b556ded?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/aab7fd54d23e61c325390f234ba172a21587dfb18d64795b928e45e65028c176?v=3",
"icon": "https://shinycolors.enza.fun/assets/a03e3082c7fa93939042affb087e60c0fb801ee8c3dbd65f133d74e89b40c74d?v=3",
"m_movie": "https://shinycolors.enza.fun/assets/58d1895df26194b0d0986d87964d1c6e6950deb27958bccf22a90312bbb56959.mp4?v=3",
"id": "1030070030"
},
{
"hash": "5e884ccdaf364e8800c1e304bcac2b47",
"name": "【Hakoni□a】三峰 結華",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/60d489ad2f8090d73c4c35e330e0167801d5281c82fad163756368983bca6000?v=2",
"fes_card": "https://shinycolors.enza.fun/assets/75c9d11c76376ddb0a8cc3de08d8714c840146fb0a7cf1ccc396ccd8a2b249bd?v=2",
"icon": "https://shinycolors.enza.fun/assets/fa59c4b8b9cd3aa4ea1e501a95ab18e28c0fb1e11348e5cbf47f0406edca8e2d?v=2",
"m_movie": "https://shinycolors.enza.fun/assets/6c9dd653bc177abc779788d010009fd35f1c7360581db7cc1ed5929babe58de8.mp4?v=2",
"id": "1030070040"
},
{
"hash": "bbc20495d6e4faadb95ec544f8467e50",
"name": "【包・帯・組・曲】幽谷 霧子",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/79b630085c9d7ce56d65573fff4289560bd9ff50375cb21879eb7d6df35a75eb?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/36eba65e3093a206f526f0a2dddaf7deca8406722455903cfbca496aaaeccdcb?v=7",
"icon": "https://shinycolors.enza.fun/assets/8fe202837e47847c03bd1b4641df48b46c71b18ecaee33e7f61adcf33922bf56?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/91d794d40b774af369a271bd369a2d3e73c5a2ffd9fcc42ffd602e9134d1516c.mp4?v=7",
"id": "1030080010"
},
{
"hash": "9e9b98ff8e3beb795345d22546aa42d3",
"name": "【伝・伝・心・音】幽谷 霧子",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/5cc84b560c5df858372e4ea99ae55ea3cf6747173ca1a18a728dda37fd9ae17d?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/71eedf9db8b8d9b9f4afd19da16bf7175f8c3b490fbe898bcd51d811b8edf431?v=7",
"icon": "https://shinycolors.enza.fun/assets/8dc3891e02602198bb9edba562175560b014b947d6dd40dcabb903db2f5f54d6?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/0153a675bea0fec96a51796f20948a61b93b2553b94bae86e1b4650bea7c2702.mp4?v=7",
"id": "1030080020"
},
{
"hash": "1fd4d0dce3e38390815ff9e020196046",
"name": "【白・白・白・祈】幽谷 霧子",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/59242db70d75f5396c24a6d7deda41fbc6ca2aa70523ff07f31c9d49ee4e0403?v=4",
"fes_card": "https://shinycolors.enza.fun/assets/4c17302295083a89cad46cd41f2ecac669564bfb131e5c5a90d56c99e3069910?v=4",
"icon": "https://shinycolors.enza.fun/assets/597f258d82b272b9f179925e070a6c3aa8e3a9a4a953ddd01ca5951a6fa124b1?v=4",
"m_movie": "https://shinycolors.enza.fun/assets/f3bebabb465940dc367cc6ae78b077b8476e9172687a3c9b581c6bfa22499f12.mp4?v=4",
"id": "1030080030"
},
{
"hash": "2c9af942b668ecee53dcb9462dcbe7f9",
"name": "【天・天・白・布】幽谷 霧子",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/fe4441e198fac13a99ec58e376600d20731362f399bd0875da4a4128a660f8e6?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/306c41b91d2dd3982b50b19be69876c78b1d9e4ebadf470e94dd4e70801131bc?v=3",
"icon": "https://shinycolors.enza.fun/assets/ea33cb85a6c3a8f995cb890f43dd3d95d1c3a0bd0b2962f11612646fa5e5ef1c?v=3",
"m_movie": "https://shinycolors.enza.fun/assets/ac05bbf6acacfcce6d442872f7ede201289986fb8026887db65869bc99fff788.mp4?v=3",
"id": "1030080040"
},
{
"hash": "5f39d4090a02a3962851f978634c4b66",
"name": "【雨・雨・電・電】幽谷 霧子",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/dd586eb069522bc887265e671ad1d299adb9e5d526bc44217370a495e798f61f?v=2",
"fes_card": "https://shinycolors.enza.fun/assets/34b754bcc7d6005141950cf39d151b49567986872d2bda33a7a8ce6c6a2cee77?v=2",
"icon": "https://shinycolors.enza.fun/assets/b749a684277c8b8f092f61df3a1a4e355338aa35743e3b6b7351045315165d45?v=2",
"m_movie": "https://shinycolors.enza.fun/assets/162058d8b1c68fb53af6513e7eb5dd0261c0c5805961d35fa1ae10b74f3116d4.mp4?v=2",
"id": "1030080050"
},
{
"hash": "33bf821865c614a66c57b658dcff68b8",
"name": "【マメ丸と一緒!】小宮 果穂",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/078a8b7cae64fea8e0b3ac9ddcbea3ba71610f12336fe34e9c76019d51d87213?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/169d03791a9abf44e6cc3765fdffe3bf9ba6fd72506cff170bfd0816e63fa038?v=7",
"icon": "https://shinycolors.enza.fun/assets/664c952d2dd000f4de86efaf98f2fd283aad93d0ef757e2f02cca5d27c556a91?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/c558889ca3feaeb80f5acd446910bd5f996f8a7ee6d01564e58bfc915e0d0338.mp4?v=7",
"id": "1030090010"
},
{
"hash": "f94724c369be584c5021ee668a0a7afa",
"name": "【デコって!ハッピークッキー】小宮 果穂",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/1cf750fc4edaaf5a296a8386c891e28765f3399edf6b269ebd2a9655cde2b2dc?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/587b00112428dde0cb9e8184bbcb1d52297bb4a5cf639f558f93ccd768f136a1?v=7",
"icon": "https://shinycolors.enza.fun/assets/2b786a30462a10967449ef7804ee87c5ba8f0d6f68b5fa42a177c0986d3b4e0f?v=7",
"m_movie": "https://shinycolors.enza.fun/assets/dfe3696f9192772a290698bd8f708a27dc24f3cdfa4a797ca3b3814e96b93c81.mp4?v=7",
"id": "1030090020"
},
{
"hash": "5d47d8d959904f944da56933937ba35a",
"name": "【キャッチ・ザ・フォール!】小宮 果穂",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/54c8ccbd3224aca8a7352a4a5e38fa3ff5fe8754354fbfa31e6f393a02c64c76?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/4f5752ea7ef62894c7e080afc036b5085ca767f84182bf3be1254fe7e83caed7?v=3",
"icon": "https://shinycolors.enza.fun/assets/7d07f6c2c3ccc88f715bf9cd11f0a77042e3c137af5a09f51a63e6e237487195?v=3",
"m_movie": "https://shinycolors.enza.fun/assets/eb70f992b7d3544b3f1c222ef9345bb1b240ebc98ff1027f35939a66fda643b2.mp4?v=3",
"id": "1030090030"
},
{
"hash": "5e586152fe59f04ea35494d817cab13f",
"name": "【窓辺・サイレントタイム】小宮 果穂",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/32da8d3b63225b1bdaea299e0b9df36e5232b936b38d2ecc188a5978538f2c83?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/f7c6c650ee08d714eeda57cbc5ee6bd12aaf4f58923c72ccf215139aea64a1a3?v=3",
"icon": "https://shinycolors.enza.fun/assets/80b7da26569bb4915b6f9fac52fdfc14d23f86489224c581f6735cafce95f572?v=3",
"m_movie": "https://shinycolors.enza.fun/assets/d4c6cbf94486bcf292d1dbc3780075e5cd102269007a690ea770d7f8c7bd994b.mp4?v=3",
"id": "1030090040"
},
{
"hash": "57fb6a95a8c09b025943e1bf0e5e5c70",
"name": "【ソー・ディフィカルト!】小宮 果穂",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/e9cafb180d1439d4243d75851d18d5f8eac084c757b4e096677dc241ddb5190b?v=1",
"fes_card": "https://shinycolors.enza.fun/assets/80a635212e40c8fe3579533623e07a33f501e99d8d6349725d0222e5103c8687?v=1",
"icon": "https://shinycolors.enza.fun/assets/bee00e7dcd4e546001c1819cfd8c8038f8a2114414ea3fc7ee9978933d18a923?v=1",
"m_movie": "https://shinycolors.enza.fun/assets/ddc71b3be616acdef00779f88a979127c36a3032df9c9b87448f6f43628e8f5f.mp4?v=1",
"id": "1030090050"
},
{
"hash": "3d5208993418b7441178e17691ccb092",
"name": "【純真チョコレート】園田 智代子",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/a11a77c97fb4be55ca27863c3e4a3e978ec2b87471f275a89f524259e3bad33d?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/2dfbd22e863e1a7938c9ce48da4dbf01e2d77a7a46b6c4a9123d7c1ed2b32d3a?v=7",
"icon": "https://shinycolors.enza.fun/assets/e8d1f035bf0ee1ab66c4815119f40afdeb3bdfbd002a52865c88b5f3dd9f1853?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/823b238af0305a2b1ab19806bf99009cad60818ae49e7f1b676c30c80cf5d171.mp4?v=7",
"id": "1030100010"
},
{
"hash": "26f5ab142e8bccbaf8fb742adbda8996",
"name": "【よろしく♡めしませっ】園田 智代子",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/63c739d68c29d5a0577c9bbf88dd2966112e44f8af65fdacc43a8873a9e8100e?v=8",
"fes_card": "https://shinycolors.enza.fun/assets/e6aadb4f249c4172242e48b68a08f40e2a2fb975cdd75d7e6c809d3418615e82?v=8",
"icon": "https://shinycolors.enza.fun/assets/c0bb1c175a4737e6e671ebf42f968f1c1cf0a47c3b21f664c1d29e2d84717fb5?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/e4ed3ea2c39f14c45820709cda98aa732f931f41b7780b60588b897c30699064.mp4?v=7",
"id": "1030100020"
},
{
"hash": "1b797d78168ada34c7ec5531c22926a3",
"name": "【錯覚・Darling】園田 智代子",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/514f35b9ed80e949b42e0650ff0fd934a732c326dbf79cef9a1aebe5c2a09fc0?v=3",
"fes_card": "https://shinycolors.enza.fun/assets/b2c1f7b3e0e0f6e9cc4008efb1e9c273e777305863477c3b447f8f7adb4d54ec?v=3",
"icon": "https://shinycolors.enza.fun/assets/aa3ab298117ac20e4ee3a45a5ffd10e09cb0d385bf56d2d6f13e820ec47ae75a?v=3",
"m_movie": "https://shinycolors.enza.fun/assets/b45a3487e72e3a085eb6b7c3ea35454281a273e0daa3b789868355a3d4e81fe5.mp4?v=3",
"id": "1030100030"
},
{
"hash": "9147b864bd2cafb454709eed7533986e",
"name": "【フロイラインに心酔】園田 智代子",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/a2193e41fe6cba6e99d1b811f28e0f2ec53650dabe1acf361e0019d41531aae8?v=2",
"fes_card": "https://shinycolors.enza.fun/assets/66ecb91ed482083c10c226e742c1da4b391f280747808dd15e3875c1ecf4f142?v=2",
"icon": "https://shinycolors.enza.fun/assets/fc55ef96d61d22f81a8b10ce6d8cf8784d6a39d2f3fef87af472294e20ce8047?v=2",
"m_movie": "https://shinycolors.enza.fun/assets/d88e7fe7564a540fa963105efe051fd59bff6299c2f789d28ae307dd2234bdcd.mp4?v=2",
"id": "1030100040"
},
{
"hash": "3805a0ec5fc37a697bd5bf656e432a32",
"name": "【バッドガールの羽ばたき】西城 樹里",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/f4b123d8dce87963c4a1ec24765ef96200bea715d6a9f88d48098a97593d948d?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/e32e5cf9f125841c464c1a108b6f614280edef7f4d8528f559f47aea7e1cb645?v=7",
"icon": "https://shinycolors.enza.fun/assets/32657fabf74c7f3e705d78ca56872441d3aaab67c7558ed3a0a8f1372356aa61?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/b9b32b1549be54bc73a171f76b856d556a53a51b36d69b5956594cc00bf725aa.mp4?v=7",
"id": "1030110010"
},
{
"hash": "5ebdbb9ae11fc9651d0afc14671fdb59",
"name": "【オフデーゲーム】西城 樹里",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/559bf9d2e5b5d0fb85ed343e675133d6cbea2968f498435f18feb9b661c1d075?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/8b9a5b52c01fec77e4b10b02012eb856aba4528b942acb42b5caa0867dbf6f77?v=7",
"icon": "https://shinycolors.enza.fun/assets/a894fd1d7b5416055033a0490d4d73e12dc006f3aeadbd8fb211901d35129260?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/acfbbbe9c08b9f1030c27afb8ba79292ff3a713eb987203b634bf1cbe9535c08.mp4?v=7",
"id": "1030110020"
},
{
"hash": "1f3e46dcec3bc525268c7b9af3612d65",
"name": "【STARTRAIN】西城 樹里",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/190a57d72803dd98bae0eab728e935bc6338f03bd9bbe1daa21f9f0042f4d287?v=4",
"fes_card": "https://shinycolors.enza.fun/assets/107d2d4d8d8c788d3c64e299ed9b15ef16b86e56fa48294cc01d60492d5ca9ab?v=4",
"icon": "https://shinycolors.enza.fun/assets/1651383746ec19b65a0076c9e1b35e34f7250e97c931b5d53a632293d848a220?v=4",
"m_movie": "https://shinycolors.enza.fun/assets/0822cc0e541fe50d4d57de1e3b5257e21d376a9147aec0adbaf944b498038c04.mp4?v=4",
"id": "1030110030"
},
{
"hash": "ba5ae5d8eb26ee50887ba51415c8901a",
"name": "【夏服にWIND YOU!】西城 樹里",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/a1e38804e44b179161db780e8522e530fa3aaaef6e04de7d6a18574c3915196d?v=2",
"fes_card": "https://shinycolors.enza.fun/assets/614d454f12fc8026a0ee00ee57ff4fe3a6b58466509a13ab87f3e188c3cc3768?v=2",
"icon": "https://shinycolors.enza.fun/assets/9233cbf9a8f1c523ddfc9a8b69484eec8828bb4171dca970221a6046c6fdcb35?v=2",
"m_movie": "https://shinycolors.enza.fun/assets/7a767020eee6cbbefc1662bc4d7f2acbf2c8f301fdf121052ee87e603209fac1.mp4?v=2",
"id": "1030110040"
},
{
"hash": "e48cec9eab0aa7faba6de2f6bc7dd515",
"name": "【#3738 Custom Order】西城 樹里",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/2103bd740c54d775058cc2d5c1be93589043a8f982de340b6c7215f7aaedb057?v=1",
"fes_card": "https://shinycolors.enza.fun/assets/79b50464b79d62f8baf7f7a0ff3131efe42015f206496e534a8c224a38ade25c?v=1",
"icon": "https://shinycolors.enza.fun/assets/00f3acf467af8235d5ed77eb1dfffd470a1a87f086ff5ca8106eb2c951ce620b?v=1",
"m_movie": "https://shinycolors.enza.fun/assets/2c5b3b8ad35fd0e8683c10294bbe53a39b0fc3114c6340b1ebeb149d090a992f.mp4?v=1",
"id": "1030110050"
},
{
"hash": "21d6705a16a3a85e120e302e6e3ea889",
"name": "【想ひいろは】杜野 凛世",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/900f30c614e0e0c64375d9160b4fa9ef228cd5b79dc15cb97f29e3b2a707c404?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/30507149950c2d90b973079337c5681459b5252ba3b9ad656e9c235475c8cac6?v=7",
"icon": "https://shinycolors.enza.fun/assets/9d1056dcc7dae7d5127c0e3d7e6f315e17da825b4a214d239d96382714a3e2df?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/edc4ecc034c7fdeb58dcf9382b5ec5e44efc8555aca14c405b249b3ce4b0db2b.mp4?v=7",
"id": "1030120010"
},
{
"hash": "009967f66dfbd4bc5636abe10484a553",
"name": "【凛凛、凛世】杜野 凛世",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/787bbd3f15c6cf6a6497a683fb54f2c86401eefbeb0613abaa5bec56244be393?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/05fa82b9391f53fe1d533b76a65aa98b090325d781f07af70b4078fab65d63d5?v=7",
"icon": "https://shinycolors.enza.fun/assets/a33b6bd9920c58079859f484c272977dcd53027f4d80426175259ffc1954bbdc?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/31e5468b0aca81823cb8c95883fd16ce9ba9754a8a7e41e5d87ff5b943db7aa9.mp4?v=7",
"id": "1030120020"
},
{
"hash": "6fc6c2b4f2481af91730da470faf4bed",
"name": "【微熱風鈴】杜野 凛世",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/68f45542557695b497f2de6303b511d614a0812e8715dc107e64208aa4f54230?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/1aa51e50c3dc002c41ee95e6bb6e3954c4052882c619682207c1153a6bd25ffa?v=7",
"icon": "https://shinycolors.enza.fun/assets/e0af31de686514144cd468e66de873702c4b8081b33b9353281333c629f0083b?v=8",
"m_movie": "https://shinycolors.enza.fun/assets/7d024b58ad92aa1c616148bb6327514b7f00c9711201b3698e723ab11ef5c259.mp4?v=7",
"id": "1030120030"
},
{
"hash": "051a12d3010c80aded018cac93150338",
"name": "【ふらここのうた】杜野 凛世",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/c28626c084e8d019fe52b9f02cae0e793ad2ab60fb7adec3dbda27cbc46f165e?v=7",
"fes_card": "https://shinycolors.enza.fun/assets/3d5df8cdeb732e223dd9959c0f38467925fbddabbb5d7f01579bbd74fd1129f6?v=7",
"icon": "https://shinycolors.enza.fun/assets/ae85b2d9daf0ed1a2f3debd76e37ef002a53fac48031812ca2097b61da719c92?v=7",
"m_movie": "https://shinycolors.enza.fun/assets/3882ef91d3aa320fc5ec83a2880e17f29973a13fdfbae191f4fbf9f81fa56d9c.mp4?v=7",
"id": "1030120040"
},
{
"hash": "12ca7333323f0a6223145b1de09292c3",
"name": "【階段式純情昇降機】杜野 凛世",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/495a687865aebe05ab7ceeb8f0a4d2ebde18a6997c278ac57d87147536e1de92?v=2",
"fes_card": "https://shinycolors.enza.fun/assets/ac8d83fe8037cc34ca8374dc0253aac6fbce425bccf5d2aec0fb742a4a272f22?v=2",
"icon": "https://shinycolors.enza.fun/assets/4c5a516448c15125715773933251ce3f40c7a4929b80f5efd48d4db35a961e63?v=2",
"m_movie": "https://shinycolors.enza.fun/assets/242fd22385a83764b0240c5beb58987c3e235cbf456e290dab4706c276226df0.mp4?v=2",
"id": "1030120050"
},
{
"hash": "26a4ee5e3bd529f05f1aa4c8f7e02e16",
"name": "【春告窓】杜野 凛世",
"type": "p",
"rarity": 3,
"road": false,
"card": "https://shinycolors.enza.fun/assets/845b92e8dbc0886b4fd9aff5a7073e1462b9604b64dfb61ded0e8d6e2b491ca1?v=1",
"fes_card": "https://shinycolors.enza.fun/assets/5890b936421f8f4331b2c47f8c09984cf3bb1d5b823e26d42bc8c4206fd7ac4c?v=1",
"icon": "https://shinycolors.enza.fun/assets/86bedf725798494dd2ea7a1dc6b7aff265b963329420a617960961adcd7c01fd?v=1",
"m_movie": "https://shinycolors.enza.fun/assets/1eb1a2c4d17bbcd91a7e7e614c9458fda356084aaf797548bd574d7f954d7029.mp4?v=1",
"id": "1030120060"
},
{
"hash": "495823e5adc4b8e507d4fae3d80df1e9",
"name": "【ストイックトレーニング】有栖川 夏葉",
"type": "p",
"rarity": 3,