-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlibrarySongsList.json
1501 lines (1501 loc) · 52.5 KB
/
librarySongsList.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
[
{ "name": "まふまふ - [Lycoris]", "file": "-_Lycoris.txt" },
{
"name": "葛东琪 - 囍 (Chinese Wedding) (Mikia)",
"file": "-__Chinese_Wedding__Mikia.txt"
},
{ "name": "千本樱-大众版 (MikuDefender)", "file": "-__MikuDefender.txt" },
{ "name": "囍", "file": "01b40b7973bce8d0.txt" },
{ "name": "イノリビ練習", "file": "089e7b417eb4348d.txt" },
{ "name": "슾 (ㅈ)", "file": "0954b1014f89c8e3.txt" },
{ "name": "海の声", "file": "09d4283c09a8861e.txt" },
{ "name": "雲與海", "file": "1047cd6bd485ec81.txt" },
{ "name": "忘れ時の言の葉", "file": "13d4cbf4d9e02a64.txt" },
{ "name": "所念皆星河", "file": "291e83ad35ff9b2d.txt" },
{ "name": "打上花火 (小红)", "file": "32a23730848a9cbe.txt" },
{ "name": "所念皆星河", "file": "37e91049813d2cb5.txt" },
{ "name": "3月9日", "file": "39.txt" },
{ "name": "レ・シエル", "file": "4717457339a9435c.txt" },
{ "name": "执迷不悟", "file": "580448e1cf767a1f.txt" },
{ "name": "好想爱这世界 华晨宇", "file": "607ce364de4dfaca.txt" },
{ "name": "想愛這世界呀", "file": "637b9a7877e20a97.txt" },
{ "name": "是心動啊", "file": "74481a2ce1ba90b4.txt" },
{ "name": "忘れじの言の葉", "file": "7b7ed145583b747d.txt" },
{
"name": "7 years old _ Soap (Soap)",
"file": "7_years_old___Soap___Soap.txt"
},
{ "name": "香港", "file": "83ae7faf0c52baea.txt" },
{ "name": "回忆", "file": "898a80af57fc5b94.txt" },
{ "name": "六兆年と一夜物語", "file": "89c5cb564cec0caa.txt" },
{ "name": "永遠同在", "file": "8dec654edfdb7c29.txt" },
{ "name": "레몬", "file": "a13af712852e2f1e.txt" },
{
"name": "Above the Sea of Clouds / Qingyun Peak (Salad)",
"file": "Above_the_Sea_of_Clouds__Qingyun_Peak__Salad.txt"
},
{ "name": "奇皇后テーマ", "file": "aef12a740acf9978.txt" },
{
"name": "Alan Walker, Noah Cyrus, Digital Farm Animals, Juliander - All Falls Down (Dhani The Great)",
"file": "Alan_Walker_Noah_Cyrus_Digital_Farm_Animals_Juliander_-_All_Falls_Down__Dhani_The_Great.txt"
},
{ "name": "Alone", "file": "Alone.txt" },
{ "name": "Always With Me", "file": "Always_With_Me.txt" },
{
"name": "always with me(easy) (LazyFox)",
"file": "always_with_meeasy__LazyFox.txt"
},
{
"name": "Always With Me (Sakura-chan)",
"file": "Always_With_Me__Sakura-chan.txt"
},
{ "name": "活出愛 (Amijann)", "file": "Amijann.txt" },
{
"name": "Andy Williams - Love Story (Where Do I Begin)",
"file": "Andy_Williams_-_Love_Story_Where_Do_I_Begin.txt"
},
{
"name": "Angels We Have Heard On High (Cobalt)",
"file": "Angels_We_Have_Heard_On_High__Cobalt.txt"
},
{ "name": "Aozora Jumping Heart", "file": "Aozora_Jumping_Heart.txt" },
{ "name": "Arrival To Earth", "file": "Arrival_To_Earth_1.txt" },
{
"name": "Aryll's Theme - Wind Waker (Cora)",
"file": "Arylls_Theme_-_Wind_Waker__Cora.txt"
},
{ "name": "ASGORE", "file": "ASGORE.txt" },
{
"name": "Assault (Metal Slug) (Mew101)",
"file": "Assault_Metal_Slug__Mew101.txt"
},
{ "name": "Astronomia", "file": "Astronomia.txt" },
{
"name": "Astronomia (Coffin dance) VERY hard",
"file": "Astronomia_Coffin_dance_VERY_hard.txt"
},
{ "name": "Avatar's Love", "file": "Avatars_Love.txt" },
{
"name": "Avatar: The Last Airbender - Avatar's Love",
"file": "Avatar_The_Last_Airbender_-_Avatars_Love.txt"
},
{ "name": "AWMashup", "file": "AWMashup (composer).txt" },
{
"name": "A Morning In The Slag Ravine",
"file": "A_Morning_In_The_Slag_Ravine.txt"
},
{ "name": "A New Day (Kontonio)", "file": "A_New_Day__Kontonio.txt" },
{ "name": "A Thousand Years", "file": "A_Thousand_Years.txt" },
{
"name": "A Whole New World (Marcus Bicca)",
"file": "A_Whole_New_World__Marcus_Bicca.txt"
},
{ "name": "내 마음의 사진", "file": "b75ec48c8b93fbbc.txt" },
{ "name": "bad apple", "file": "bad_apple.txt" },
{
"name": "Bad guy by Billie Eilish",
"file": "Bad_guy_by_Billie_Eilish.txt"
},
{ "name": "bad romance chorus", "file": "bad_romance_chorus.txt" },
{ "name": "Barricades (律皮MerodP)", "file": "Barricades__MerodP.txt" },
{ "name": "Bất nhiễm (Fin)", "file": "Bat_nhiem__Fin.txt" },
{
"name": "Beethoven - Ruins of Athens No.4 (hard) (glhrmars)",
"file": "Beethoven_-_Ruins_of_Athens_No.4_hard__glhrmars.txt"
},
{ "name": "Bella ciao", "file": "Bella_ciao.txt" },
{ "name": "Bergentrückung", "file": "Bergentruckung.txt" },
{ "name": "Bergentrūkung-Undertale", "file": "Bergentrukung-Undertale.txt" },
{
"name": "Bicentennial man - Little Miss teaches Andrew how to play the piano (LES)",
"file": "Bicentennial_man_-_Little_Miss_teaches_Andrew_how_to_play_the_piano__LES.txt"
},
{ "name": "Bigfish and Begonia", "file": "Bigfish_and_Begonia.txt" },
{ "name": "BigFish (Begonia) _Hard", "file": "BigFish_Begonia__Hard.txt" },
{
"name": "Billie eilish - lovely (Leuu)",
"file": "Billie_eilish_-_lovely___Leuu.txt"
},
{ "name": "Binary Sunset Star Wars", "file": "Binary_Sunset_Star_Wars.txt" },
{ "name": "Binks Sake 2", "file": "Binks_Sake.txt" },
{ "name": "BlackSwan", "file": "BlackSwan.txt" },
{
"name": "Bloody Tears-Castlevania (Kitsu)",
"file": "Bloody_Tears-Castlevania__Kitsu.txt"
},
{
"name": "Bluestone Alley by Congfei Wei",
"file": "Bluestone_Alley_by_Congfei_Wei.txt"
},
{
"name": "Bluestone Alley (Overture)",
"file": "Bluestone_Alley__Overture.txt"
},
{ "name": "Blue Bird (sem)", "file": "Blue_Bird__sem.txt" },
{
"name": "BOCA - Dreamcatcher",
"file": "BOCA_-_Dreamcatcher (composer).txt"
},
{ "name": "Brahms' Lullaby", "file": "Brahms_Lullaby.txt" },
{
"name": "Brahm's Lullaby (Joeldor)",
"file": "Brahms_Lullaby__Joeldor.txt"
},
{ "name": "BTS - Friends (GoldenMoff)", "file": "BTS - Friends.txt" },
{ "name": "BTS - Go Go (GoldenMoff)", "file": "BTS_-_Go_Go.txt" },
{
"name": "BTS (Jungkook) - Euphoria",
"file": "BTS_Jungkook_-_Euphoria.txt"
},
{ "name": "Bubblegum K.K", "file": "Bubblegum_KK.txt" },
{ "name": "Butterfly (LOOΠ∆) (Bb)", "file": "Butterfly_LOO_Bb.txt" },
{ "name": "刻在我心底的名字", "file": "c51f40d6042b3d49.txt" },
{ "name": "Canon in C", "file": "Canon_in_C.txt" },
{
"name": "Can't help falling in love",
"file": "Cant_help_falling_in_love.txt"
},
{
"name": "Can't Help Falling in Love (Kenny)",
"file": "Cant_Help_Falling_in_Love__Kenny.txt"
},
{
"name": "Can Can 康康舞 烛子ikina (Alas)",
"file": "Can_Can__ikina__Alas.txt"
},
{ "name": "Caprice 24", "file": "Caprice_24.txt" },
{
"name": "Carol of the Bells (Sz9) (sz9)",
"file": "Carol_of_the_Bells_Sz9__sz9.txt"
},
{ "name": "Carrying You, Laputa", "file": "Carrying_You_Laputa.txt" },
{
"name": "Castle on a Cloud (Nessai)",
"file": "Castle_on_a_Cloud__Nessai.txt"
},
{
"name": "Cat Vibin / Levan Polkka (Medium-Hard) (SaiCode)",
"file": "Cat_Vibin__Levan_Polkka_Medium-Hard__SaiCode.txt"
},
{ "name": "Chaha Hai Tujhko Mann", "file": "Chaha_Hai_Tujhko_Mann.txt" },
{ "name": "溯 (Charicecet)", "file": "Charicecet.txt" },
{ "name": "Chiasm - Gris (tharu)", "file": "Chiasm_-_Gris__tharu.txt" },
{ "name": "Chiisana Koi no Uta", "file": "Chiisana_Koi_no_Uta.txt" },
{
"name": "Chopin - Nocturne O.9 N.2",
"file": "Chopin_-_Nocturne_O9_N2.txt"
},
{ "name": "穿越時空的思念", "file": "Chuanyue_shikong_de_sinian.txt" },
{
"name": "Chúc bé ngủ ngon (Minh Châu 2906)",
"file": "Chuc_be_ngu_ngon__Minh_Chau_2906.txt"
},
{ "name": "city of star (Nori)", "file": "city_of_star__Nori.txt" },
{ "name": "Clair de Lune - Debussy", "file": "Clair_de_Lune_-_Debussy.txt" },
{
"name": "Clean Bandit - Tick Tock (Fee)",
"file": "Clean_Bandit_-_Tick_Tock__Fee.txt"
},
{ "name": "Clementine", "file": "Clementine.txt" },
{
"name": "Code Lyoko - Theme - A World Without Danger",
"file": "Code_Lyoko_-_Theme_-_A_World_Without_Danger.txt"
},
{ "name": "Coffin song⚰️", "file": "Coffin_song.txt" },
{ "name": "Come little children", "file": "Come_little_children.txt" },
{
"name": "Cookie run-Roguefort cookie trial theme (D7K)",
"file": "Cookie_run-Roguefort_cookie_trial_theme__D7K.txt"
},
{ "name": "Corpse bride-1", "file": "Corpse_bride-1.txt" },
{ "name": "Counting stars 2", "file": "Counting_stars_2.txt" },
{
"name": "Counting star - OneRepublic (Dstar)",
"file": "Counting_star_-_OneRepublic__Dstar.txt"
},
{ "name": "Counting Star no drum", "file": "Counting_Star_no_drum.txt" },
{
"name": "có chắc yêu là đây (Cvtin)",
"file": "co_chac_yeu_la_ay__Cvtin.txt"
},
{ "name": "Cradles", "file": "Cradles.txt" },
{ "name": "Crazy Frog", "file": "Crazy_Frog.txt" },
{ "name": "僕らは命に嫌われている (Cross)", "file": "Cross.txt" },
{
"name": "Crypt of the NecroDancer - Mausoleum Mash",
"file": "Crypt_of_the_NecroDancer_-_Mausoleum_Mash.txt"
},
{ "name": "Cyme (Gin)", "file": "Cyme__Gin.txt" },
{
"name": "Có Chắc Yêu Là Đây - Sơn Tùng MTP - SCMS",
"file": "Có_Chắc_Yêu_Là_Đây_-_Sơn_Tùng_MTP.txt"
},
{ "name": "嘿咻", "file": "daa25d90fa020081.txt" },
{ "name": "Daoka", "file": "Daoka.txt" },
{ "name": "Davy Jones's Theme", "file": "Davy_Joness_Theme.txt" },
{
"name": "Dearly Beloved - Kingdom Hearts OST",
"file": "Dearly_Beloved_-_Kingdom_Hearts_OST.txt"
},
{
"name": "Dearly Beloved - Kingdom Hearts (NitroGamer)",
"file": "Dearly_Beloved_-_Kingdom_Hearts__NitroGamer.txt"
},
{ "name": "Death note (Kitsu)", "file": "Death_note__Kitsu.txt" },
{ "name": "Deck the Halls (ava)", "file": "Deck_the_Halls__ava.txt" },
{ "name": "Deep Sea Girl", "file": "Deep_Sea_Girl (GPRINAWE).txt" },
{ "name": "Demon slayer new", "file": "Demon_slayer_new.txt" },
{
"name": "Determination - Undertale",
"file": "Determination_-_Undertale.txt"
},
{
"name": "Distant Lands - Moldiben Lake (Split/Screen)",
"file": "Distant_Lands_-_Moldiben_Lake__SplitScreen.txt"
},
{
"name": " DJ Got Us Fallin' In Love",
"file": "DJ_Got_Us_Fallin_In_Love.txt"
},
{ "name": "Do-Re-Mi", "file": "Do-Re-Mi.txt" },
{
"name": "Don't forget (Katy Brown)",
"file": "Dont_forget__Katy_Brown.txt"
},
{ "name": "Doraemon -ukm", "file": "Doraemon_-ukm.txt" },
{
"name": "Dotto hakku: Sekai no mukou ni – つながるセカイ (Ksey Gi)",
"file": "Dotto_hakku_Sekai_no_mukou_ni____Ksey_Gi.txt"
},
{
"name": "Do you hear the people sing (Nessai)",
"file": "Do_you_hear_the_people_sing__Nessai.txt"
},
{
"name": "Dragon's Call - Scarf (Scarf)",
"file": "Dragons_Call_-_Scarf__Scarf.txt"
},
{
"name": "Dragon ball GT Opening (Fiery Lightning)",
"file": "Dragon_ball_GT_Opening__Fiery_Lightning.txt"
},
{
"name": "Dragon Roost Island Wind Waker (Kitsu)",
"file": "Dragon_Roost_Island_Wind_Waker__Kitsu.txt"
},
{ "name": "Dvalin's Nest (candy)", "file": "Dvalins_Nest__candy.txt" },
{ "name": "dynamite (cross)", "file": "dynamite__cross.txt" },
{ "name": "Dynasty", "file": "Dynasty.txt" },
{ "name": "dynasty (Yui)", "file": "dynasty__Yui.txt" },
{ "name": "Ed sheeran perfect", "file": "Ed_sheeran_perfect.txt" },
{ "name": "Eight - IU feat. Suga (GoldenMoff)", "file": "Eight_-_IU.txt" },
{ "name": "Electric Love", "file": "Electric_Love.txt" },
{ "name": "em đã bỏ thuốc chưa? - SCMS", "file": "em_đã_bỏ_thuốc_chưa.txt" },
{
"name": "Epona’s Song / Lon Lon Ranch - Legend of Zelda (CupCake)",
"file": "Eponas_Song___Lon_Lon_Ranch_-_Legend_of_Zelda.txt"
},
{
"name": "Eponas theme song updated version (Cora)",
"file": "Eponas_theme_song_updated_version__Cora.txt"
},
{ "name": "Erased", "file": "Erased.txt" },
{ "name": "Errrassdd", "file": "Errrassdd.txt" },
{ "name": "Eternal", "file": "Eternal.txt" },
{ "name": "EternalYouth (Zouchi)", "file": "EternalYouth__Zouchi.txt" },
{
"name": "Evangelion - A cruel angel thesis ",
"file": "Evangelion_-_A_cruel_angel_thesis.txt"
},
{
"name": "Everything Stays (Kalinka)",
"file": "Everything_Stays__Kalinka.txt"
},
{
"name": "Eyes blue like the atlantic x Heather (Keonard)",
"file": "Eyes_blue_like_the_atlantic_x_Heather__Keonard.txt"
},
{ "name": "海底", "file": "f821bddedb01f58b.txt" },
{
"name": "Faded (Angel juega sky) (Angel juega sky)",
"file": "Faded_Angel_juega_sky__Angel_juega_sky.txt"
},
{ "name": "Faded", "file": "faded_hard.txt" },
{ "name": "Faded", "file": "Faded_Iceman.txt" },
{
"name": "Fallen Down (Reprise) (Sky Kid GiGi)",
"file": "Fallen_Down_Reprise__Sky_Kid_GiGi.txt"
},
{ "name": "Falling - Harry Styles", "file": "Falling_-_Harry_Styles.txt" },
{ "name": "Falling Slowly", "file": "Falling_Slowly.txt" },
{
"name": "Fallin' Flower - 세븐틴 (Seventeen)",
"file": "Fallin_Flower_-_Seventeen.txt"
},
{ "name": "約會(你的名字) (Fant)", "file": "Fant.txt" },
{ "name": "Feel the beat", "file": "Feel_the_beat.txt" },
{ "name": "FF13 the promise", "file": "FF13_the_promise.txt" },
{ "name": "FFVII Tifa's Theme", "file": "FFVII_Tifas_Theme.txt" },
{ "name": "Binary Sunset Star Wars", "file": "Films_Pack.txt" },
{ "name": "Firefall_SC", "file": "Firefall_SC.txt" },
{ "name": "Firefall (Kenny)", "file": "Firefall__Kenny.txt" },
{
"name": "First part of amelie (thunderbird)",
"file": "First_part_of_amelie__thunderbird.txt"
},
{ "name": "Flower Dance", "file": "Flower_Dance.txt" },
{
"name": "Flower dance - Full version (luci)",
"file": "Flower_dance_-_Full_version___luci.txt"
},
{
"name": "Fly me to the moon (kiki)",
"file": "Fly_me_to_the_moon__kiki.txt"
},
{ "name": "FMA - Brothers", "file": "FMA_-_Brothers.txt" },
{
"name": "FMA - Brothers 1 - Main (Henri🇧🇷)",
"file": "FMA_-_Brothers_1_-_Main__Henri.txt"
},
{ "name": "For Alice", "file": "For_Alice.txt" },
{
"name": "Fox Rain - Sky Children Music Studio (my first)",
"file": "Fox_Rain_-_Sky_Children_Music_Studio__my_first.txt"
},
{ "name": "Frere Jacques ", "file": "FrereJacques.txt" },
{
"name": "frozen II: mil memorias ((Angel juega sky))",
"file": "frozen_II_mil_memorias__Angel_juega_sky.txt"
},
{ "name": "Funeral March - Chopin", "file": "Funeral_March_-_Chopin.txt" },
{
"name": "Game of Thrones Theme (DreamFyre)",
"file": "Game_of_Thrones_Theme__DreamFyre.txt"
},
{ "name": "GAR march", "file": "GAR_march.txt" },
{
"name": "Gaster’s Theme (Undertale)",
"file": "Gasters_Theme_Undertale.txt"
},
{
"name": "让风告诉你—Genshin Impact fansong (fixed ) ",
"file": "Genshin_Impact_fansong_fixed__.txt"
},
{
"name": "Genshin Impact Main Theme (DreamFyre)",
"file": "Genshin_Impact_Main_Theme__DreamFyre.txt"
},
{ "name": "Ghost rule", "file": "Ghost_rule.txt" },
{
"name": "Gillian's sky song 3 (Gillian)",
"file": "Gillians_sky_song_3__Gillian.txt"
},
{ "name": "Giorno's theme", "file": "Giornos_theme.txt" },
{
"name": "Giorno's Theme (JoJo's Bizarre Adventure: Golden Wind OST) (Kontonio)",
"file": "Giornos_Theme_JoJos_Bizarre_Adventure_Golden_Wind_OST__Kontonio.txt"
},
{ "name": "Goini", "file": "Goini.txt" },
{ "name": "Gone Gone Gone", "file": "Gone_Gone_Gone.txt" },
{
"name": "Goodbye To A World (peåches)",
"file": "Goodbye_To_A_World__peaches.txt"
},
{ "name": "Good enough (Eliot)", "file": "Good_enough__Eliot.txt" },
{
"name": "Good Omens Opening Title (short) (Mothman)",
"file": "Good_Omens_Opening_Title_short__Mothman.txt"
},
{
"name": "Grandmaster Hotel Lobby Theme - Cookie Run OvenBreak (Jam)",
"file": "Grandmaster_Hotel_Lobby_Theme_-_Cookie_Run_OvenBreak__Jam.txt"
},
{
"name": "グランドエスケープ (Grand Escape) - 天气之子 (Weathering With You) (Kontonio)",
"file": "Grand_Escape_-__Weathering_With_You__Kontonio.txt"
},
{ "name": "Gravity Falls Theme", "file": "Gravity_Falls_Theme.txt" },
{
"name": "Gymnopedie No 1 - Satie (Joeldor)",
"file": "Gymnopedie_No_1_-_Satie__Joeldor.txt"
},
{ "name": "Hallelujah", "file": "Hallelujah.txt" },
{
"name": "Hanava - Sky Children Music Studio (havana)",
"file": "Hanava_-_Sky_Children_Music_Studio__havana.txt"
},
{
"name": "Happy Birthday To You (Tomoe, The Bard)",
"file": "Happy_Birthday_To_You__Tomoe_The_Bard.txt"
},
{
"name": "Haru wa Yuku (Fate/stay night heaven feel) (Min)",
"file": "Haru_wa_Yuku_Fatestay_night_heaven_feel__Min.txt"
},
{
"name": "Healsy - Colors (mr.mides)",
"file": "Healsy_-_Colors__mr.mides.txt"
},
{ "name": "Heart and Soul - Main", "file": "Heart_and_Soul (Duet).txt" },
{ "name": "Heathens (Valril)", "file": "Heathens__Valril.txt" },
{
"name": "Hedwigs Theme Harry Potter",
"file": "Hedwigs_Theme_Harry_Potter.txt"
},
{
"name": "Hello/How Are You (simple) (Rin5743)",
"file": "HelloHow_Are_You_simple__Rin5743.txt"
},
{
"name": "Heroic Polonaise (OP.53 in A flat major) (Gabriel)",
"file": "Heroic_Polonaise_OP.53_in_A_flat_major__Gabriel.txt"
},
{
"name": "Hey Jude—The Beatles (Lucichlid)",
"file": "Hey_JudeThe_Beatles__Lucichlid.txt"
},
{ "name": "He's a pirate", "file": "He_is_a_pirate.txt" },
{
"name": "Higurashi no Naku Koro ni - Dear You",
"file": "Higurashi_no_Naku_Koroni-_Dear_You.txt"
},
{ "name": "hikari no haen full", "file": "hikari_no_haen_full.txt" },
{ "name": "Himouto Umaru-chan OP", "file": "Himouto_Umaru-chan_OP.txt" },
{ "name": "Hold On", "file": "Hold_On.txt" },
{
"name": "Hollow Knight - Main Theme",
"file": "Hollow_Knight_-_Main_Theme.txt"
},
{
"name": "Hollow Knight Main Theme: (KaZ cover / Final Version) (HOLLOW KNIGHT main theme: (KaaZ cover / Full version))",
"file": "Hollow_Knight_Main_Theme_KaZ_cover__Final_Version__HOLLOW_KNIGHT_main_theme_KaaZ_cover__Full_version.txt"
},
{
"name": "hollow knight shade song",
"file": "hollow_knight_shade_song.txt"
},
{ "name": "Home-undertale (Keil)", "file": "Home-undertale__Keil.txt" },
{
"name": "homestuck - dance of thorns",
"file": "homestuck_-_dance_of_thorns_eggyog__eggyog.txt"
},
{ "name": "Hora dels Adeus", "file": "Hora_dels_Adeus.txt" },
{
"name": "House of the Rising Sun",
"file": "House_of_the_Rising_Sun_Might_delete_later_idk.txt"
},
{
"name": "Howard Shore: Concerning Hobbits (Kei)",
"file": "Howard_Shore_Concerning_Hobbits__Kei.txt"
},
{ "name": "Howl's Moving Castle", "file": "Howls_Moving_Castle.txt" },
{ "name": "How far I'll Go—Moana", "file": "How_far_Ill_GoMoana.txt" },
{
"name": "How to train your dragon theme song",
"file": "How_to_train_your_dragon_theme_song.txt"
},
{ "name": "HTTYD (Blue)", "file": "HTTYD__Blue.txt" },
{
"name": "Hungarian Folk Tales (tunfiskur)",
"file": "Hungarian_Folk_Tales__tunfiskur.txt"
},
{
"name": "Hỷ - Cát Đông Kỳ - Sky Children Music Studio (@Anhsky_)",
"file": "Hy_-_Cat_ong_Ky_-_Sky_Children_Music_Studio__Anhsky_.txt"
},
{
"name": "[IB] Marry theme - puppet (WatarDReiji)",
"file": "IB_Marry_theme_-_puppet__WatarDReiji.txt"
},
{ "name": "Twinkle Twinkle Little Star (Joyful)", "file": "Idk__Joyful.txt" },
{ "name": "Ievan Polkka", "file": "Ievan_Polkka.txt" },
{ "name": "If you’re happy ", "file": "If_youre_happy_.txt" },
{
"name": "Illusionary daytime (short) (Kiana)",
"file": "Illusionary_daytime_short__Kiana.txt"
},
{
"name": "Illusionary Daytime (GodArtz)",
"file": "Illusionary_Daytime__GodArtz.txt"
},
{
"name": "星より先に見つけてあげる (I'll find you sooner than the stars) - One Punch Man Ending Theme Song",
"file": "Ill_find_you_sooner_than_the_stars_-_One_Punch_Man_Ending_Theme_Song.txt"
},
{
"name": "星より先に見つけてあげる (I'll find you sooner than the stars) EASIER Version - One Punch Man Ending Theme Song",
"file": "Ill_find_you_sooner_than_the_stars_EASIER_Version_-_One_Punch_Man_Ending_Theme_Song.txt"
},
{
"name": "Imagine Dragons - Believer ",
"file": "Imagine_Dragons_-_Believer_.txt"
},
{
"name": "Imagining - Brian Crain (G) (FineTyler)",
"file": "Imagining_-_Brian_Crain_G__FineTyler.txt"
},
{ "name": "Im just your problem", "file": "Im_just_your_problem_1.txt" },
{ "name": "Interstellar main theme", "file": "Interstellar_main_theme.txt" },
{
"name": "IntheLandofHapiness (Calum)",
"file": "IntheLandofHapiness__Calum.txt"
},
{
"name": "In Loving Memory of Allie",
"file": "In_Loving_Memory_of_Allie.txt"
},
{
"name": "Irish Folk - Morrison's Jig (Kay)",
"file": "Irish_Folk_-_Morrisons_Jig__Kay.txt"
},
{ "name": "isabella's lullaby (Pi)", "file": "isabellas_lullaby__Pi.txt" },
{
"name": "Island of Memories - Cookie Run OST (tadaam!!#9041)",
"file": "Island_of_Memories_-_Cookie_Run_OST__tadaam9041.txt"
},
{
"name": "It's A Small World (BlueBead)",
"file": "Its_A_Small_World__BlueBead.txt"
},
{
"name": "I've Been Working on the Railroad",
"file": "Ive_Been_Working_on_the_Railroad.txt"
},
{ "name": "I see the light#1", "file": "I_see_the_light1.txt" },
{
"name": "I See the Light (Tangled) ",
"file": "I_See_the_Light_Tangled_.txt"
},
{ "name": "I See The Light (Luna)", "file": "I_See_The_Light___Luna.txt" },
{
"name": "Jaadu (Koi Mil Gaya) keys [HINDI]",
"file": "Jaadu_Koi_Mil_Gaya_keys_HINDI.txt"
},
{ "name": "Jane Maryam", "file": "Jane_Maryam.txt" },
{ "name": "Jingle Bells(short ver.)", "file": "Jingle_Bellsshort_ver.txt" },
{
"name": "Jingle Bells (easy) (nilda)",
"file": "Jingle_Bells_easy__nilda.txt"
},
{
"name": "Jingle Bells (Sakura-chan)",
"file": "Jingle_Bells_more_difficult_version__Sakura-chan.txt"
},
{ "name": "jingle bell (Ben)", "file": "jingle_bell__Ben.txt" },
{
"name": "johann strauss II - the blue danube waltz (Gabriel)",
"file": "johann_strauss_II_-_the_blue_danube_waltz___Gabriel.txt"
},
{
"name": "Joshua Fought the Battle of Jericho",
"file": "Joshua_Fought_the_Battle_of_Jericho.txt"
},
{ "name": "Jurassic Park (Page)", "file": "Jurassic_Park_Page__Page.txt" },
{ "name": "Kahoot", "file": "Kahoot-1.txt" },
{ "name": "Kaine(Salvation)", "file": "KaineSalvation.txt" },
{
"name": "kal ho na ho (HINDI Song)",
"file": "kal_ho_na_ho_HINDI_Song.txt"
},
{
"name": "Kamado tenjirou no uta- simple ",
"file": "Kamado_tenjirou_no_uta-_simple_.txt"
},
{
"name": "Kanarai- King - Main (二奶)",
"file": "Kanarai-_King_-_Main__.txt"
},
{ "name": "Kartini", "file": "Kartini.txt" },
{ "name": "Kataware Doki", "file": "Kataware_Doki.txt" },
{
"name": "kataware doki - zen (zen)",
"file": "kataware_doki_-_zen__zen.txt"
},
{
"name": "Kiki's Delivery Service (Emy)",
"file": "Kikis_Delivery_Service__Emy.txt"
},
{
"name": "Kikuo- and then you became the moon (vivi✦)",
"file": "Kikuo-_and_then_you_became_the_moon__vivi.txt"
},
{ "name": "Kimetsu", "file": "Kimetsu.txt" },
{
"name": "kimetsu no yaiba (EASY) (ccCheRry)",
"file": "kimetsu_no_yaiba_EASY__ccCheRry.txt"
},
{ "name": "KING (Kanaria)", "file": "KING_Kanaria.txt" },
{ "name": "Kirby's Pad (Wonder)", "file": "Kirbys_Pad__Wonder.txt" },
{ "name": "Kiss the rain", "file": "Kiss_the_rain.txt" },
{ "name": "kizuna ai - Main", "file": "kizuna_ai_-_Main.txt" },
{ "name": "kizuna ai - Secondary", "file": "kizuna_ai_-_Secondary.txt" },
{ "name": "Kizuna Music", "file": "Kizuna_Music.txt" },
{
"name": "Kuch Kuch hota Hai (Loop) [HINDI]",
"file": "Kuch_Kuch_hota_Hai_Loop_HINDI.txt"
},
{ "name": "Kum Ba Yah", "file": "Kum_Ba_Yah.txt" },
{
"name": "Kung Fu Panda: Oogway Ascends (Kei)",
"file": "Kung_Fu_Panda_Oogway_Ascends__Kei.txt"
},
{ "name": "Kygo - Firestone", "file": "Kygo_-_Firestone.txt" },
{
"name": "LaCampanella (Maria Eduarda)",
"file": "LaCampanella__Maria_Eduarda.txt"
},
{
"name": "Lacie - Pandora Hearts OST",
"file": "Lacie_-_Pandora_Hearts_OST.txt"
},
{ "name": "Last Christmas - Wham", "file": "Last_Christmas_-_Wham.txt" },
{ "name": "Lavender Town", "file": "lavender_Town.txt" },
{ "name": "la Cucaracha", "file": "la_Cucaracha.txt" },
{ "name": "La Vie En Rose", "file": "La_Vie_En_Rose_1.txt" },
{ "name": "忘川彼岸 (lee)", "file": "lee.txt" },
{
"name": "Legend of Zelda: Song of Time ((Cora))",
"file": "Legend_of_Zelda_Song_of_Time__Cora.txt"
},
{ "name": "Lemon", "file": "Lemon.txt" },
{
"name": "Lemon - 米津玄師 - Sky Children Music Studio",
"file": "Lemon_-__-_Sky_Children_Music_Studio.txt"
},
{ "name": "Lemon Verse", "file": "Lemon_Verse.txt" },
{ "name": "Let It Go 冰雪奇缘 烛子ikina", "file": "Let_It_Go__ikina.txt" },
{ "name": "LILIUM (Jeee)", "file": "LILIUM__Jeee.txt" },
{ "name": "Lily - Alan Walker", "file": "Lily_-_Alan_Walker.txt" },
{
"name": "line without a hook (grape juice)",
"file": "line_without_a_hook__grape_juice.txt"
},
{ "name": "Lisa-炎homura (Yung)", "file": "Lisa-homuraeasy__Yung.txt" },
{
"name": "Little do u know full ver",
"file": "Little_do_u_know_full_ver.txt"
},
{
"name": "Little Nigtmares II: Six's Music Box. (Komu. )",
"file": "Little_Nigtmares_II_Sixs_Music_Box.___Komu._.txt"
},
{
"name": "Little Soldier Boy (Leaves From The Vine) - Avatar",
"file": "Little_Soldier_Boy_Leaves_From_The_Vine_-_Avatar.txt"
},
{ "name": "Liyue - Latern Rite", "file": "Liyue_-_Latern_Rite.txt" },
{ "name": "Log driver's walts", "file": "Log_drivers_walts.txt" },
{
"name": "Loneliest Girl - Carole and Tuesday",
"file": "Loneliest_Girl_-_Carole_and_Tuesday.txt"
},
{ "name": "Lord Of The Rings CM", "file": "Lord_Of_The_Rings_CM.txt" },
{ "name": "Lost Woods (nina)", "file": "Lost_Woods__nina.txt" },
{ "name": "Love4Eva", "file": "Love4Eva.txt" },
{
"name": "Lovely (Billie Eilish, ft. Khalid) (Kontonio)",
"file": "Lovely_Billie_Eilish_ft._Khalid__Kontonio.txt"
},
{ "name": "Lovely (Kenny)", "file": "Lovely__Kenny.txt" },
{ "name": "Love is gone (Candle)", "file": "Love_is_gone__Candle.txt" },
{ "name": "Love like You", "file": "Love_like_You.txt" },
{
"name": "Love Scenario (transcribed by Maple Studio) ",
"file": "Love_Scenario_transcribed_by_Maple_Studio_.txt"
},
{ "name": "蒲公英的約定 (Luna)", "file": "Luna.txt" },
{ "name": "Luv Letter", "file": "Luv_Letter.txt" },
{ "name": "Lữ khách", "file": "Lu_khach.txt" },
{
"name": "Ly đảo chi ca (WatarDReiji)",
"file": "Ly_ao_chi_ca__WatarDReiji.txt"
},
{
"name": "Mad at Disney Ftoom~ (ftoom)",
"file": "Mad_at_Disney_Ftoom__ftoom.txt"
},
{
"name": "Mad world (easy wip) (skysyren♡)",
"file": "Mad_world_easy_wip__skysyren.txt"
},
{
"name": "Magical starsign: Space police theme (Mew101)",
"file": "Magical_starsign_Space_police_theme__Mew101.txt"
},
{
"name": "Magi: The Labyrinth of Magic",
"file": "Magi_The_Labyrinth_of_Magic.txt"
},
{
"name": "Magi: The Labyrinth of Magic Ending 1 (Enly)",
"file": "Magi_The_Labyrinth_of_Magic_Ending_1___Enly.txt"
},
{
"name": "Main Theme - Legend of Zelda",
"file": "Main_Theme_-_Legend_of_Zelda.txt"
},
{
"name": "Making Things Is Easy - Gingerpale (amitie)",
"file": "Making_Things_Is_Easy_-_Gingerpale__amitie.txt"
},
{
"name": "Mariage d'Amour - Sky Children Music Studio",
"file": "Mariage_dAmour_-_Sky_Children_Music_Studio.txt"
},
{ "name": "Maria -ukm", "file": "Maria_-ukm.txt" },
{ "name": "Married life (from UP)", "file": "Married_life_from_UP.txt" },
{ "name": "Marry had a little lamb", "file": "Marry_had_a_little_lamb.txt" },
{
"name": "Mary, did you know? (Aster)",
"file": "Mary_did_you_know___Aster.txt"
},
{ "name": "MEGALOVANIA", "file": "MEGALOVANIA (1).txt" },
{
"name": "Melancholic-大众版 (MikuDefender)",
"file": "Melancholic-__MikuDefender.txt"
},
{ "name": "Melodia up", "file": "Melodia_up.txt" },
{ "name": "Melody1", "file": "Melody1.txt" },
{ "name": "Memoria (Min)", "file": "Memoria__Min.txt" },
{ "name": "Memory - Undertale", "file": "Memory_-_Undertale.txt" },
{
"name": "Memory (from Cats the musical) (arranged by @asterstorm on instagram) (Asterstorm (Aster/ Romy))",
"file": "Memory_from_Cats_the_musical_arranged_by_asterstorm_on_instagram__Asterstorm_Aster_Romy.txt"
},
{
"name": "Merry Christmas Mr Lawrence (Intro)",
"file": "Merry_Christmas_Mr_Lawrence_Intro.txt"
},
{
"name": "Mia & Sebastian's Theme(Epilogue)",
"file": "Mia__Sebastians_ThemeEpilogue (1).txt"
},
{
"name": "Mia & Sebastian's Theme(Epilogue)",
"file": "Mia__Sebastians_ThemeEpilogue.txt"
},
{
"name": "Michael Jackson - Smooth Criminal (Specy)",
"file": "Michael_Jackson_-_Smooth_Criminal__Specy.txt"
},
{
"name": "Midori No Za - Mushishi (Julio Garcia)",
"file": "Midori_No_Za_-_Mushishi__Julio_Garcia.txt"
},
{ "name": "东方红魔乡 (MikuDefender)", "file": "MikuDefender.txt" },
{
"name": "mili - summoning 101 - Secondary",
"file": "mili_-_summoning_101_-_Secondary.txt"
},
{
"name": "mili - summoning 101 (kirial1413)",
"file": "mili_-_summoning_101__kirial1413.txt"
},
{
"name": "Minecraft- Wet Hands -C412 - Main (CupCake)",
"file": "Minecraft-_Wet_Hands_-C412_-_Main.txt"
},
{
"name": "Minecraft Theme (for Handpan Key E)",
"file": "MinecraftThemefor_Handpan_Key_E.txt"
},
{ "name": "Minecraft - Sweden", "file": "Minecraft_-_Sweden.txt" },
{
"name": "Minecraft - Sweden (Solo)",
"file": "Minecraft_-_Sweden_Solo.txt"
},
{
"name": "Minuet bwv anh 115 v3 (Audrey)",
"file": "Minuet_bwv_anh_115_v3__Audrey.txt"
},
{ "name": "Mipha's theme (easy)", "file": "Miphas_theme_easy.txt" },
{
"name": "Mitsuha's Theme (Kimi No Na wa)",
"file": "Mitsuhas_Theme_Kimi_No_Na_wa.txt"
},
{
"name": "Mitsuha's Theme(YOUR NAME)",
"file": "Mitsuhas_Theme_YOUR_NAME.txt"
},
{ "name": "Mononoke hime", "file": "Mononoke_hime.txt" },
{
"name": "Monster Hunter: Pokke Village (Mew101)",
"file": "Monster_Hunter_Pokke_Village__Mew101.txt"
},
{
"name": "Moonlight Sonata_byStarkf",
"file": "Moonlight_Sonata_byStarkf.txt"
},
{
"name": "Moonlight (The Romance of Tiger and Rose)",
"file": "Moonlight_The_Romance_of_Tiger_and_Rose.txt"
},
{ "name": "Moon - 방탄소년단 (BTS), Jin", "file": "Moon_-_BTS_Jin.txt" },
{
"name": "Morning Flower Theme (SamSung Alarm) (Swonn)",
"file": "Morning_Flower_Theme_SamSung_Alarm__Swonn.txt"
},
{
"name": "Mortal Kombat [uncogers] - Main",
"file": "Mortal_Kombat_uncogers_-_Main.txt"
},
{
"name": "Mr Loverman - Ricky Montgomery",
"file": "Mr_Loverman_-_Ricky_Montgomery.txt"
},
{ "name": "music box", "file": "music_box.txt" },
{ "name": "Music Sheet 19 (hoo)", "file": "Music_Sheet_19__hoo.txt" },
{
"name": "Music sheet 3 ( for handpan only) (CrabbyLemons)",
"file": "Music_sheet_3__for_handpan_only__CrabbyLemons.txt"
},
{ "name": "Mysterious Messenger", "file": "Mysterious_Messenger.txt" },
{
"name": "My little reason why (Howl)",
"file": "My_little_reason_why__Howl.txt"
},
{ "name": "My Princess Loel (Eve)", "file": "My_Princess_Loel__Eve.txt" },
{
"name": "Nanatsu No Taizai (Netsujou No Spectrum) (Manieri)",
"file": "Nanatsu_No_Taizai_Netsujou_No_Spectrum__Manieri.txt"
},
{ "name": "Nana de Mercedes", "file": "Nana_de_Mercedes.txt" },
{ "name": "Nang Tho", "file": "Nang_Tho.txt" },
{ "name": "Não sei", "file": "Nao_sei.txt" },
{
"name": "Naruto - Hokage's Funeral (by Marcus Bicca)",
"file": "Naruto_-_Hokages_Funeral_by_Marcus_Bicca.txt"
},
{ "name": "[Naruto] Silhouette", "file": "Naruto_Silhouette.txt" },
{ "name": "naruto (flower)", "file": "naruto__flower.txt" },
{
"name": "Nascence (Journey) (kivan)",
"file": "Nascence_Journey__kivan.txt"
},
{
"name": "Natsuhiboshi (village hidden in the stars) (GlazorDonut )",
"file": "Natsuhiboshi_village_hidden_in_the_stars__GlazorDonut_.txt"
},
{ "name": "Neo-Aspect", "file": "Neo-Aspect.txt" },
{ "name": "Never gonna give you up", "file": "Never_gonna_give_you_up.txt" },
{
"name": "Never gonna give you up (Easy)",
"file": "Never_gonna_give_you_up_Easy.txt"
},
{
"name": "Nichijou: ED 1 (Zzz) by Sleepy ",
"file": "Nichijou_ED_1_Zzz_by_Sleepy_.txt"
},
{ "name": "Nier_OST_Shadow Lord", "file": "Nier_OST_Shadow_Lord.txt" },
{
"name": "NieR Replicant-Song of the Ancients",
"file": "NieR_Replicant-Song_of_the_Ancients.txt"
},
{
"name": "Night Market- Stardew Valley (Zoya)",
"file": "Night_Market-_Stardew_Valley___Zoya.txt"
},
{
"name": "Niko and the World Machine (Peeps)",
"file": "Niko_and_the_World_Machine__Peeps.txt"
},
{ "name": "Nisekoi: CLICK (Silua)", "file": "Nisekoi_CLICK__Silua.txt" },
{ "name": "想见你 (no)", "file": "no.txt" },
{
"name": "Noble Maiden Fair (A Mhaighdean Bhan Uasal)",
"file": "Noble_Maiden_Fair_A_Mhaighdean_Bhan_Uasal.txt"
},
{ "name": "Nocturne OP.9 NO.2", "file": "Nocturne_OP.9_NO.2.txt" },
{ "name": "Nổi nhớ tựa ngân hà", "file": "Noi_nho_tua_ngan_ha.txt" },
{
"name": "Nokia Arabic Ringtone (Sink)",
"file": "Nokia_Arabic_Ringtone__Sink.txt"
},
{ "name": "Ode to Joy", "file": "Ode_to_joy.txt" },
{ "name": "Ode to Joy - Hard", "file": "Ode_to_Joy_-_Hard.txt" },
{ "name": "Ode to l’man", "file": "Ode_to_lman.txt" },
{ "name": "Oh Susanna", "file": "Oh_Susanna.txt" },
{ "name": "Old town road (❤️)", "file": "Old_town_road__.txt" },
{
"name": "Omae Wa Mou - SCSM",
"file": "Omae_Wa_Mou_-_Sky_Children_Music_Studio.txt"
},
{
"name": "Om Shanti Om [HINDI] (imam)",
"file": "Om_Shanti_Om_HINDI__imam.txt"
},
{
"name": "Once Upon A December Cover (Intro) (Once Upon a December (intro))",
"file": "Once_Upon_A_December_Cover_Intro__Once_Upon_a_December_intro.txt"
},
{
"name": "ONEUS: Valkyrie (WIP by Winter) (Winter)",
"file": "ONEUS_Valkyrie_WIP_by_Winter__Winter.txt"
},
{
"name": "One Flower One Sword 【一花一剑】天官赐福 TGCF Donghua (k)",
"file": "One_Flower_One_Sword__TGCF_Donghua__k.txt"
},
{ "name": "one punch man (Alas)", "file": "one_punch_man__Alas.txt" },
{
"name": "One Republic - Secrets (. ❛ ᴗ ❛.) (Yusup)",
"file": "One_Republic_-_Secrets_.___.__Yusup.txt"
},
{
"name": "One Summer's Day (ellie ( Fox Mask Cover ))",
"file": "One_Summers_Day__ellie__Fox_Mask_Cover_.txt"
},
{
"name": "One Summer Day - Spirited Away OST - Freestyle Ver",
"file": "One_Summer_Day_-_Spirited_Away_OST_-_Freestyle_Ver.txt"
},
{ "name": "On My Way", "file": "On_My_Way.txt" },
{
"name": "OpenTTD - Plain Simple Relax Song",
"file": "OpenTTD_-_Plain_Simple_Relax_Song.txt"
},
{
"name": "四月是你的谎言 简易 orange easy 烛子ikina",
"file": "orange_easy_ikina.txt"
},
{
"name": "Our world full of sorrows (Nothing lasts forever) (Grey_Sky)",
"file": "Our_world_full_of_sorrows_Nothing_lasts_forever___Grey_Sky.txt"
},
{ "name": "Owl City Fireflies", "file": "Owl_City_Fireflies.txt" },
{ "name": "O Holy Night", "file": "O_Holy_Night.txt" },
{ "name": "O Pica Pau", "file": "O_Pica_Pau.txt" },
{
"name": "Parting at the River of Three Crossings",
"file": "Parting_at_the_River_of_Three_Crossings.txt"
},
{
"name": "Patchwork Staccato - Hatsune Miku (sui0348)",
"file": "Patchwork_Staccato_-_Hatsune_Miku_sui0348.txt"
},
{
"name": "Piano Sonata No.16 in C Major, K545 (1st Mvt) (Gabriel)",
"file": "Piano_Sonata_No.16_in_C_Major_K545_1st_Mvt__Gabriel.txt"
},
{
"name": "Piranha plant lullaby (Gabriel Trương)",
"file": "Piranha_plant_lullaby__Gabriel_Truong.txt"
},
{
"name": "piratas del caribe (Angel juega sky)",
"file": "piratas_del_caribe__Angel_juega_sky.txt"
},
{
"name": "Pizza Mozzarella (randomjojofan)",
"file": "Pizza_Mozzarella__randomjojofan.txt"
},
{ "name": "Point the star", "file": "Point_the_star.txt" },
{
"name": "Pokemon - Littleroot Town (律皮MerodP)",
"file": "Pokemon_-_Littleroot_Town__MerodP.txt"
},
{ "name": "Pokemon Center", "file": "Pokemon_Center.txt" },
{
"name": "Pokemon Center (Theme) (Alex☆)",
"file": "Pokemon_Center_Theme__Alex.txt"