-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtracks.json
More file actions
1772 lines (1772 loc) · 48.6 KB
/
tracks.json
File metadata and controls
1772 lines (1772 loc) · 48.6 KB
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
[
{
"songId": "32158103",
"title": "Like It's Christmas",
"artist": "Jonas Brothers",
"album": "Like It's Christmas",
"trackId": "1OjmlSFuzYflWjSMTCyTJv",
"trackUri": "spotify:track:1OjmlSFuzYflWjSMTCyTJv",
"danceability": null,
"valence": null
},
{
"songId": "4347674",
"title": "12월의 기적 (Miracles In December)",
"artist": "EXO",
"album": "겨울 스페셜 앨범 '12월의 기적 (Miracles In December)'",
"trackId": "7HrCnwDvbtCKSZtpNDmII9",
"trackUri": "spotify:track:7HrCnwDvbtCKSZtpNDmII9",
"danceability": null,
"valence": null
},
{
"songId": "34369413",
"title": "매일 크리스마스 (Everyday Christmas)",
"artist": "다비치",
"album": "매일 크리스마스 (Everyday Christmas)",
"trackId": "3jImLeLoNu74fDyftw2Wuc",
"trackUri": "spotify:track:3jImLeLoNu74fDyftw2Wuc",
"danceability": null,
"valence": null
},
{
"songId": "3592400",
"title": "Mistletoe",
"artist": "Justin Bieber",
"album": "Under The Mistletoe (Deluxe Edition)",
"trackId": "7xapw9Oy21WpfEcib2ErSA",
"trackUri": "spotify:track:7xapw9Oy21WpfEcib2ErSA",
"danceability": null,
"valence": null
},
{
"songId": "38160685",
"title": "Santa, Can't You Hear Me",
"artist": "Kelly Clarkson",
"album": "When Christmas Comes Around… Again",
"trackId": "2O3MQ6H3gjrIWDcpeTrikT",
"trackUri": "spotify:track:2O3MQ6H3gjrIWDcpeTrikT",
"danceability": null,
"valence": null
},
{
"songId": "7963662",
"title": "Dear Santa",
"artist": "소녀시대-태티서 (Girls' Generation-TTS)",
"album": "Dear Santa - X-Mas Special",
"trackId": "7khMBZeWJMPIyHehQ5aXuf",
"trackUri": "spotify:track:7khMBZeWJMPIyHehQ5aXuf",
"danceability": null,
"valence": null
},
{
"songId": "32156032",
"title": "Last Christmas",
"artist": "WHAM!",
"album": "George Michael & Wham! Last Christmas: The Original Motion Picture Soundtrack (영화 '라스트 크리스마스' OST)",
"trackId": "2FRnf9qhLbvw8fu4IBXx78",
"trackUri": "spotify:track:2FRnf9qhLbvw8fu4IBXx78",
"danceability": null,
"valence": null
},
{
"songId": "5493429",
"title": "Text Me Merry Christmas (Feat. Kristen Bell)",
"artist": "Straight No Chaser",
"album": "Under The Influence: Holiday Edition",
"trackId": "2Pc3sIt3654ULen1qDRWXv",
"trackUri": "spotify:track:2Pc3sIt3654ULen1qDRWXv",
"danceability": null,
"valence": null
},
{
"songId": "32995675",
"title": "Christmas Without You",
"artist": "Ava Max",
"album": "Christmas Without You",
"trackId": "1QLZKzC2pjP4ySf4ALrNhm",
"trackUri": "spotify:track:1QLZKzC2pjP4ySf4ALrNhm",
"danceability": null,
"valence": null
},
{
"songId": "30781482",
"title": "Merry & Happy",
"artist": "TWICE (트와이스)",
"album": "Merry & Happy",
"trackId": "59TGiILFEI1NYSFcxyFiUZ",
"trackUri": "spotify:track:59TGiILFEI1NYSFcxyFiUZ",
"danceability": null,
"valence": null
},
{
"songId": "4354180",
"title": "겨울 고백",
"artist": "성시경",
"album": "Jelly Christmas 2013",
"trackId": "6webl3T8AHe174NGjpV60R",
"trackUri": "spotify:track:6webl3T8AHe174NGjpV60R",
"danceability": null,
"valence": null
},
{
"songId": "7979764",
"title": "화이트(WHITE) (Feat. 박재범)",
"artist": "다비치",
"album": "D-MAKE",
"trackId": "4Zgxp4V4mKGhekxUqad25W",
"trackUri": "spotify:track:4Zgxp4V4mKGhekxUqad25W",
"danceability": null,
"valence": null
},
{
"songId": "30784187",
"title": "This Christmas",
"artist": "태연 (TAEYEON)",
"album": "This Christmas - Winter is Coming",
"trackId": "6eAMa0e7WCbjM7ivbAhvkq",
"trackUri": "spotify:track:6eAMa0e7WCbjM7ivbAhvkq",
"danceability": null,
"valence": null
},
{
"songId": "3614360",
"title": "It's Beginning to Look a Lot like Christmas",
"artist": "Michael Buble",
"album": "Christmas",
"trackId": "5a1iz510sv2W9Dt1MvFd5R",
"trackUri": "spotify:track:5a1iz510sv2W9Dt1MvFd5R",
"danceability": null,
"valence": null
},
{
"songId": "4322520",
"title": "Underneath The Tree",
"artist": "Kelly Clarkson",
"album": "Wrapped In Red (Deluxe Version)",
"trackId": "3nAp4IvdMPPWEH9uuXFFV5",
"trackUri": "spotify:track:3nAp4IvdMPPWEH9uuXFFV5",
"danceability": null,
"valence": null
},
{
"songId": "32160237",
"title": "Make It To Christmas",
"artist": "Alessia Cara",
"album": "Make It To Christmas",
"trackId": "6RS6rcjnWrdfVuu2U2W2dj",
"trackUri": "spotify:track:6RS6rcjnWrdfVuu2U2W2dj",
"danceability": null,
"valence": null
},
{
"songId": "38328177",
"title": "HERO (From the Film “소방관”)",
"artist": "박효신",
"album": "HERO (From the Film “소방관”)",
"trackId": "5hse7JC8DFwZInsvw1Dobl",
"trackUri": "spotify:track:5hse7JC8DFwZInsvw1Dobl",
"danceability": null,
"valence": null
},
{
"songId": "34941788",
"title": "살기 위해서",
"artist": "순순희",
"album": "살기 위해서",
"trackId": "2BnTrafo86hmIwWSPwmvKH",
"trackUri": "spotify:track:2BnTrafo86hmIwWSPwmvKH",
"danceability": null,
"valence": null
},
{
"songId": "30877002",
"title": "눈사람",
"artist": "정승환",
"album": "그리고 봄",
"trackId": "6HgeeiHqVpxxFCB0bjBRT6",
"trackUri": "spotify:track:6HgeeiHqVpxxFCB0bjBRT6",
"danceability": null,
"valence": null
},
{
"songId": "38311902",
"title": "거짓말의 반대말만 할게요",
"artist": "이창섭",
"album": "거짓말의 반대말만 할게요 (비밀 사이 X 이창섭(LEECHANGSUB))",
"trackId": "0jmR8cd6Ro14pAQY1M5cIe",
"trackUri": "spotify:track:0jmR8cd6Ro14pAQY1M5cIe",
"danceability": null,
"valence": null
},
{
"songId": "38300904",
"title": "toxic till the end",
"artist": "로제 (ROSÉ)",
"album": "rosie",
"trackId": "1z5ebC9238uGoBgzYyvGpQ",
"trackUri": "spotify:track:1z5ebC9238uGoBgzYyvGpQ",
"danceability": null,
"valence": null
},
{
"songId": "38300902",
"title": "3am",
"artist": "로제 (ROSÉ)",
"album": "rosie",
"trackId": "3y4q6bBdbXsTIaPiwiiUfy",
"trackUri": "spotify:track:3y4q6bBdbXsTIaPiwiiUfy",
"danceability": null,
"valence": null
},
{
"songId": "38300903",
"title": "two years",
"artist": "로제 (ROSÉ)",
"album": "rosie",
"trackId": "4HxGH28DitgAuuKpEVrLzN",
"trackUri": "spotify:track:4HxGH28DitgAuuKpEVrLzN",
"danceability": null,
"valence": null
},
{
"songId": "38300905",
"title": "drinks or coffee",
"artist": "로제 (ROSÉ)",
"album": "rosie",
"trackId": "3fpWkbEZMP1BgOOfymwoaS",
"trackUri": "spotify:track:3fpWkbEZMP1BgOOfymwoaS",
"danceability": null,
"valence": null
},
{
"songId": "38300907",
"title": "gameboy",
"artist": "로제 (ROSÉ)",
"album": "rosie",
"trackId": "77n3jFGqPPxYrEGwrWylNv",
"trackUri": "spotify:track:77n3jFGqPPxYrEGwrWylNv",
"danceability": null,
"valence": null
},
{
"songId": "38275988",
"title": "Winter Ahead (with 박효신)",
"artist": "V",
"album": "Winter Ahead (with 박효신)",
"trackId": "7G7mSV4BebkoHWwKTDvXu9",
"trackUri": "spotify:track:7G7mSV4BebkoHWwKTDvXu9",
"danceability": null,
"valence": null
},
{
"songId": "3053259",
"title": "미리 메리 크리스마스 (Feat. 천둥 Of MBLAQ)",
"artist": "아이유",
"album": "Real",
"trackId": "6I9Y6PHTWv72fgQV3tIHt0",
"trackUri": "spotify:track:6I9Y6PHTWv72fgQV3tIHt0",
"danceability": null,
"valence": null
},
{
"songId": "3973781",
"title": "크리스마스니까",
"artist": "성시경",
"album": "Jelly Christmas 2012 HEART PROJECT",
"trackId": "1oWe4At8PLglBRAeQVcglM",
"trackUri": "spotify:track:1oWe4At8PLglBRAeQVcglM",
"danceability": null,
"valence": null
},
{
"songId": "4365842",
"title": "Last Christmas",
"artist": "Ariana Grande",
"album": "Christmas Kisses",
"trackId": "5xDrO9DEDJGUQGfyoHvgDJ",
"trackUri": "spotify:track:5xDrO9DEDJGUQGfyoHvgDJ",
"danceability": null,
"valence": null
},
{
"songId": "1489805",
"title": "Must Have Love",
"artist": "SG 워너비",
"album": "SG워너비 & 브라운아이드걸스 싱글",
"trackId": "5f3TJj7s2R0CmffNXTneF7",
"trackUri": "spotify:track:5f3TJj7s2R0CmffNXTneF7",
"danceability": null,
"valence": null
},
{
"songId": "30717645",
"title": "Snowman",
"artist": "Sia",
"album": "Everyday Is Christmas (Snowman Deluxe Edition)",
"trackId": "7uoFMmxln0GPXQ0AcCBXRq",
"trackUri": "spotify:track:7uoFMmxln0GPXQ0AcCBXRq",
"danceability": 0.717,
"valence": 0.339
},
{
"songId": "14776",
"title": "All I Want for Christmas Is You",
"artist": "Mariah Carey",
"album": "Merry Christmas (Deluxe Anniversary Edition)",
"trackId": "1bCQIvugIRkL0yLG5cvQcZ",
"trackUri": "spotify:track:1bCQIvugIRkL0yLG5cvQcZ",
"danceability": 0.504,
"valence": 0.352
},
{
"songId": "34360855",
"title": "눈이 오잖아(Feat.헤이즈)",
"artist": "이무진",
"album": "눈이 오잖아(Feat.헤이즈)",
"trackId": "2vA5M8uXee4amGQajyUMFR",
"trackUri": "spotify:track:2vA5M8uXee4amGQajyUMFR",
"danceability": 0.574,
"valence": 0.176
},
{
"songId": "5475060",
"title": "Santa Tell Me",
"artist": "Ariana Grande",
"album": "Santa Tell Me",
"trackId": "0lizgQ7Qw35od7CYaoMBZb",
"trackUri": "spotify:track:0lizgQ7Qw35od7CYaoMBZb",
"danceability": 0.525,
"valence": 0.592
},
{
"songId": "30461396",
"title": "무제(無題) (Untitled, 2014)",
"artist": "G-DRAGON",
"album": "권지용",
"trackId": "16BS342F89MDqouSxgLaUK",
"trackUri": "spotify:track:16BS342F89MDqouSxgLaUK",
"danceability": 0.583,
"valence": 0.263
},
{
"songId": "38242510",
"title": "HOME SWEET HOME (feat. 태양, 대성)",
"artist": "G-DRAGON",
"album": "HOME SWEET HOME (feat. 태양, 대성)",
"trackId": "0Cu8JdYvV9DdmzLzhxaZLH",
"trackUri": "spotify:track:0Cu8JdYvV9DdmzLzhxaZLH",
"danceability": 0.633,
"valence": 0.408
},
{
"songId": "38244575",
"title": "number one girl",
"artist": "로제 (ROSÉ)",
"album": "number one girl",
"trackId": "02CrqOYzrJR8fYOffhvRZZ",
"trackUri": "spotify:track:02CrqOYzrJR8fYOffhvRZZ",
"danceability": 0.288,
"valence": 0.135
},
{
"songId": "38231442",
"title": "그걸 사랑이라고 말하지마",
"artist": "다비치",
"album": "Stitch",
"trackId": "2FyMzBBr9xI0GL2du2KJsI",
"trackUri": "spotify:track:2FyMzBBr9xI0GL2du2KJsI",
"danceability": 0.438,
"valence": 0.163
},
{
"songId": "38222733",
"title": "Letter To Myself",
"artist": "태연 (TAEYEON)",
"album": "Letter To Myself - The 6th Mini Album",
"trackId": "1Uxr0oBXAZRuLkAz27TkLc",
"trackUri": "spotify:track:1Uxr0oBXAZRuLkAz27TkLc",
"danceability": 0.57,
"valence": 0.213
},
{
"songId": "38220900",
"title": "Running Wild",
"artist": "진",
"album": "Happy",
"trackId": "4p7DTkyrKqT98xlIwYYfXz",
"trackUri": "spotify:track:4p7DTkyrKqT98xlIwYYfXz",
"danceability": 0.487,
"valence": 0.317
},
{
"songId": "4352438",
"title": "첫 눈",
"artist": "EXO",
"album": "겨울 스페셜 앨범 '12월의 기적 (Miracles In December)'",
"trackId": "2VNpT9fRk1kyksT0S4coZR",
"trackUri": "spotify:track:2VNpT9fRk1kyksT0S4coZR",
"danceability": 0.636,
"valence": 0.814
},
{
"songId": "38221779",
"title": "멈추지 않아",
"artist": "PLAVE",
"album": "열혈사제2 OST Part.2",
"trackId": "1riEr6o3obQxrQRFmD9Sed",
"trackUri": "spotify:track:1riEr6o3obQxrQRFmD9Sed",
"danceability": 0.61,
"valence": 0.739
},
{
"songId": "38195515",
"title": "너와의 모든 지금",
"artist": "재쓰비 (JAESSBEE)",
"album": "너와의 모든 지금",
"trackId": "04HGddGSz9qgxiFJkR7oMy",
"trackUri": "spotify:track:04HGddGSz9qgxiFJkR7oMy",
"danceability": 0.709,
"valence": 0.697
},
{
"songId": "38212122",
"title": "나였으면",
"artist": "HYNN (박혜원)",
"album": "나였으면",
"trackId": "21fr9bngcjBuIpjh0DTAjp",
"trackUri": "spotify:track:21fr9bngcjBuIpjh0DTAjp",
"danceability": 0.416,
"valence": 0.263
},
{
"songId": "38161297",
"title": "DRIP",
"artist": "BABYMONSTER",
"album": "DRIP",
"trackId": "198zDKzyktXRG1PGpidY9h",
"trackUri": "spotify:track:198zDKzyktXRG1PGpidY9h",
"danceability": 0.862,
"valence": 0.704
},
{
"songId": "38196177",
"title": "When I'm With You",
"artist": "NCT DREAM",
"album": "DREAMSCAPE",
"trackId": "2wzhZgSDjWgwB618a6eeua",
"trackUri": "spotify:track:2wzhZgSDjWgwB618a6eeua",
"danceability": 0.751,
"valence": 0.553
},
{
"songId": "30672529",
"title": "그리워하다",
"artist": "비투비",
"album": "Brother Act.",
"trackId": "2zlgwqw8BLX2JGB76LIFeF",
"trackUri": "spotify:track:2zlgwqw8BLX2JGB76LIFeF",
"danceability": 0.633,
"valence": 0.477
},
{
"songId": "38173500",
"title": "Higher Than Heaven",
"artist": "투모로우바이투게더",
"album": "별의 장: SANCTUARY",
"trackId": "2sl9KiihxhBtc4UKIjXChC",
"trackUri": "spotify:track:2sl9KiihxhBtc4UKIjXChC",
"danceability": 0.752,
"valence": 0.762
},
{
"songId": "38173499",
"title": "Forty One Winks",
"artist": "투모로우바이투게더",
"album": "별의 장: SANCTUARY",
"trackId": "3YhKYnsBBntaTv3XQRxa69",
"trackUri": "spotify:track:3YhKYnsBBntaTv3XQRxa69",
"danceability": 0.669,
"valence": 0.392
},
{
"songId": "38006037",
"title": "GGUM",
"artist": "연준",
"album": "GGUM",
"trackId": "1QPV3QoWw3rRKPeYoX8kO8",
"trackUri": "spotify:track:1QPV3QoWw3rRKPeYoX8kO8",
"danceability": 0.874,
"valence": 0.406
},
{
"songId": "38176242",
"title": "Check Pattern",
"artist": "성진 (DAY6)",
"album": "30",
"trackId": "3bbuy0sL7miaccIfh6s86b",
"trackUri": "spotify:track:3bbuy0sL7miaccIfh6s86b",
"danceability": 0.532,
"valence": 0.266
},
{
"songId": "38173496",
"title": "Over The Moon",
"artist": "투모로우바이투게더",
"album": "별의 장: SANCTUARY",
"trackId": "3BQeCOUf7M9B7NEpx9r4qj",
"trackUri": "spotify:track:3BQeCOUf7M9B7NEpx9r4qj",
"danceability": 0.682,
"valence": 0.531
},
{
"songId": "38173495",
"title": "Heaven",
"artist": "투모로우바이투게더",
"album": "별의 장: SANCTUARY",
"trackId": "27VnLN3KUpvEdKI8n1Zyid",
"trackUri": "spotify:track:27VnLN3KUpvEdKI8n1Zyid",
"danceability": 0.753,
"valence": 0.881
},
{
"songId": "38173497",
"title": "Danger",
"artist": "투모로우바이투게더",
"album": "별의 장: SANCTUARY",
"trackId": "0A5OpWc5yZ2aSe7Xbhqo3m",
"trackUri": "spotify:track:0A5OpWc5yZ2aSe7Xbhqo3m",
"danceability": 0.849,
"valence": 0.6
},
{
"songId": "38173498",
"title": "Resist (Not Gonna Run Away)",
"artist": "투모로우바이투게더",
"album": "별의 장: SANCTUARY",
"trackId": "1ralgJao31DAneYNlYNsba",
"trackUri": "spotify:track:1ralgJao31DAneYNlYNsba",
"danceability": 0.833,
"valence": 0.649
},
{
"songId": "38068560",
"title": "Igloo",
"artist": "KISS OF LIFE",
"album": "Lose Yourself",
"trackId": "2DbDefRFJ5YOfXCKOeCJJh",
"trackUri": "spotify:track:2DbDefRFJ5YOfXCKOeCJJh",
"danceability": 0.916,
"valence": 0.873
},
{
"songId": "38170590",
"title": "바보야",
"artist": "벤",
"album": "바보야",
"trackId": "6plU8hBXEl5dpaxW3bYqnh",
"trackUri": "spotify:track:6plU8hBXEl5dpaxW3bYqnh",
"danceability": 0.486,
"valence": 0.38
},
{
"songId": "38164895",
"title": "POWER",
"artist": "G-DRAGON",
"album": "POWER",
"trackId": "4XsJiRJQAK8TWcZCn0Dxlh",
"trackUri": "spotify:track:4XsJiRJQAK8TWcZCn0Dxlh",
"danceability": 0.607,
"valence": 0.732
},
{
"songId": "38123338",
"title": "나는 반딧불",
"artist": "황가람",
"album": "나는 반딧불",
"trackId": "27QLNrvWbFcwOYr8RpOpxg",
"trackUri": "spotify:track:27QLNrvWbFcwOYr8RpOpxg",
"danceability": 0.442,
"valence": 0.418
},
{
"songId": "38147530",
"title": "산책",
"artist": "김동률",
"album": "산책",
"trackId": "1ksogiV5AnuwcejwfKpNKK",
"trackUri": "spotify:track:1ksogiV5AnuwcejwfKpNKK",
"danceability": 0.513,
"valence": 0.247
},
{
"songId": "38145736",
"title": "I'll Be There",
"artist": "진",
"album": "I'll Be There",
"trackId": "2Qcbspnftnon37jibwyvMU",
"trackUri": "spotify:track:2Qcbspnftnon37jibwyvMU",
"danceability": 0.538,
"valence": 0.736
},
{
"songId": "38048464",
"title": "네모네모",
"artist": "YENA (최예나)",
"album": "네모네모",
"trackId": "4UwsXGVppRRJpKBHy0mtyK",
"trackUri": "spotify:track:4UwsXGVppRRJpKBHy0mtyK",
"danceability": 0.66,
"valence": 0.814
},
{
"songId": "38128891",
"title": "Bloom",
"artist": "볼빨간사춘기",
"album": "Bloom",
"trackId": "6SzXlH7Xy7RlUSPx5Obbe3",
"trackUri": "spotify:track:6SzXlH7Xy7RlUSPx5Obbe3",
"danceability": 0.603,
"valence": 0.397
},
{
"songId": "37373808",
"title": "SHEESH",
"artist": "BABYMONSTER",
"album": "BABYMONS7ER",
"trackId": "1njlnn8ZKHI77Pe9szIONR",
"trackUri": "spotify:track:1njlnn8ZKHI77Pe9szIONR",
"danceability": 0.774,
"valence": 0.461
},
{
"songId": "33043504",
"title": "가을밤에 든 생각",
"artist": "잔나비",
"album": "잔나비 소곡집 I",
"trackId": "4YaKlkNVJNbrIqN82EKFsQ",
"trackUri": "spotify:track:4YaKlkNVJNbrIqN82EKFsQ",
"danceability": 0.538,
"valence": 0.365
},
{
"songId": "37497123",
"title": "Girls Never Die",
"artist": "tripleS (트리플에스)",
"album": "〈ASSEMBLE24〉",
"trackId": "45OflED18VsURGw2z0Y6Cv",
"trackUri": "spotify:track:45OflED18VsURGw2z0Y6Cv",
"danceability": 0.667,
"valence": 0.675
},
{
"songId": "37064763",
"title": "꿈",
"artist": "태연 (TAEYEON)",
"album": "웰컴투 삼달리 OST Part.3",
"trackId": "5DIooJbJaNbxidKBMbk2ts",
"trackUri": "spotify:track:5DIooJbJaNbxidKBMbk2ts",
"danceability": 0.556,
"valence": 0.331
},
{
"songId": "36910957",
"title": "Perfect Night",
"artist": "LE SSERAFIM (르세라핌)",
"album": "Perfect Night",
"trackId": "74X2u8JMVooG2QbjRxXwR8",
"trackUri": "spotify:track:74X2u8JMVooG2QbjRxXwR8",
"danceability": 0.697,
"valence": 0.502
},
{
"songId": "36430773",
"title": "퀸카 (Queencard)",
"artist": "(여자)아이들",
"album": "I feel",
"trackId": "4uOBL4DDWWVx4RhYKlPbPC",
"trackUri": "spotify:track:4uOBL4DDWWVx4RhYKlPbPC",
"danceability": 0.815,
"valence": 0.692
},
{
"songId": "33855085",
"title": "가까운 듯 먼 그대여",
"artist": "카더가든",
"album": "가까운 듯 먼 그대여",
"trackId": "7wLJ4xzxNss5abZ1kXs242",
"trackUri": "spotify:track:7wLJ4xzxNss5abZ1kXs242",
"danceability": 0.602,
"valence": 0.169
},
{
"songId": "34847378",
"title": "LOVE DIVE",
"artist": "IVE (아이브)",
"album": "LOVE DIVE",
"trackId": "0Q5VnK2DYzRyfqQRJuUtvi",
"trackUri": "spotify:track:0Q5VnK2DYzRyfqQRJuUtvi",
"danceability": 0.703,
"valence": 0.538
},
{
"songId": "35553933",
"title": "숲",
"artist": "최유리",
"album": "유영",
"trackId": "33xRp6ZX1DKraRFHR9ZDck",
"trackUri": "spotify:track:33xRp6ZX1DKraRFHR9ZDck",
"danceability": 0.406,
"valence": 0.186
},
{
"songId": "36713849",
"title": "Love Lee",
"artist": "AKMU (악뮤)",
"album": "Love Lee",
"trackId": "1qosh64U6CR5ki1g1Rf2dZ",
"trackUri": "spotify:track:1qosh64U6CR5ki1g1Rf2dZ",
"danceability": 0.914,
"valence": 0.706
},
{
"songId": "36416114",
"title": "Spicy",
"artist": "aespa",
"album": "MY WORLD - The 3rd Mini Album",
"trackId": "1ULdASrNy5rurl1TZfFaMP",
"trackUri": "spotify:track:1ULdASrNy5rurl1TZfFaMP",
"danceability": 0.757,
"valence": 0.842
},
{
"songId": "38120327",
"title": "APT.",
"artist": "로제 (ROSÉ)",
"album": "APT.",
"trackId": "5vNRhkKd0yEAg8suGBpjeY",
"trackUri": "spotify:track:5vNRhkKd0yEAg8suGBpjeY",
"danceability": 0.777,
"valence": 0.939
},
{
"songId": "38077932",
"title": "UP (KARINA Solo)",
"artist": "aespa",
"album": "SYNK : PARALLEL LINE - Special Digital Single",
"trackId": "5sjnkOfTLCLNfkkchI2re2",
"trackUri": "spotify:track:5sjnkOfTLCLNfkkchI2re2",
"danceability": 0.777,
"valence": 0.382
},
{
"songId": "38087937",
"title": "Mantra",
"artist": "제니 (JENNIE)",
"album": "Mantra",
"trackId": "7wdRGYajTjjsPnC2TVRnze",
"trackUri": "spotify:track:7wdRGYajTjjsPnC2TVRnze",
"danceability": 0.898,
"valence": 0.872
},
{
"songId": "37323944",
"title": "HAPPY",
"artist": "DAY6 (데이식스)",
"album": "Fourever",
"trackId": "1k68vKHNQXU5CHqcM7Yp7N",
"trackUri": "spotify:track:1k68vKHNQXU5CHqcM7Yp7N",
"danceability": 0.535,
"valence": 0.614
},
{
"songId": "38123332",
"title": "Whiplash",
"artist": "aespa",
"album": "Whiplash - The 5th Mini Album",
"trackId": "3coRPMnFg2dJcPu5RMloa9",
"trackUri": "spotify:track:3coRPMnFg2dJcPu5RMloa9",
"danceability": 0.863,
"valence": 0.748
},
{
"songId": "38022274",
"title": "내 이름 맑음",
"artist": "QWER",
"album": "2nd Mini Album 'Algorithm's Blossom'",
"trackId": "1lTBkwEm0wim9RsMXqtqWy",
"trackUri": "spotify:track:1lTBkwEm0wim9RsMXqtqWy",
"danceability": 0.658,
"valence": 0.737
},
{
"songId": "37323943",
"title": "Welcome to the Show",
"artist": "DAY6 (데이식스)",
"album": "Fourever",
"trackId": "3BMAWsBp4jc35mCmebC3WT",
"trackUri": "spotify:track:3BMAWsBp4jc35mCmebC3WT",
"danceability": 0.595,
"valence": 0.377
},
{
"songId": "37524037",
"title": "Supernova",
"artist": "aespa",
"album": "Armageddon - The 1st Album",
"trackId": "18nZWRpJIHzgb1SQr4ncwb",
"trackUri": "spotify:track:18nZWRpJIHzgb1SQr4ncwb",
"danceability": 0.745,
"valence": 0.363
},
{
"songId": "37884934",
"title": "Supersonic",
"artist": "프로미스나인",
"album": "Supersonic",
"trackId": "6oNLSQX8bcAdbCElZYju3v",
"trackUri": "spotify:track:6oNLSQX8bcAdbCElZYju3v",
"danceability": 0.672,
"valence": 0.415
},
{
"songId": "32061975",
"title": "어떻게 이별까지 사랑하겠어, 널 사랑하는 거지",
"artist": "AKMU (악뮤)",
"album": "항해",
"trackId": "0hqj5JBnFt1BHEz2UCFwrl",
"trackUri": "spotify:track:0hqj5JBnFt1BHEz2UCFwrl",
"danceability": 0.52,
"valence": 0.228
},
{
"songId": "31927275",
"title": "한 페이지가 될 수 있게",
"artist": "DAY6 (데이식스)",
"album": "The Book of Us : Gravity",
"trackId": "0btLaqWlXsOWLcpjE1jmIk",
"trackUri": "spotify:track:0btLaqWlXsOWLcpjE1jmIk",
"danceability": 0.51,
"valence": 0.747
},
{
"songId": "37390939",
"title": "소나기",
"artist": "이클립스 (ECLIPSE)",
"album": "선재 업고 튀어 OST Part 1",
"trackId": "1OhIn0L6iofnk5bjalWfHq",
"trackUri": "spotify:track:1OhIn0L6iofnk5bjalWfHq",
"danceability": 0.469,
"valence": 0.217
},
{
"songId": "37907939",
"title": "Pump Up The Volume!",
"artist": "PLAVE",
"album": "Pump Up The Volume!",
"trackId": "34DtDWmIUacoop6Md298vE",
"trackUri": "spotify:track:34DtDWmIUacoop6Md298vE",
"danceability": 0.66,
"valence": 0.629
},
{
"songId": "37946921",
"title": "녹아내려요",
"artist": "DAY6 (데이식스)",
"album": "Band Aid",
"trackId": "0T6J3Ipbe06lm7p3grH2bg",
"trackUri": "spotify:track:0T6J3Ipbe06lm7p3grH2bg",
"danceability": 0.471,
"valence": 0.741
},
{
"songId": "34061322",
"title": "사랑은 늘 도망가",
"artist": "임영웅",
"album": "신사와 아가씨 OST Part.2",
"trackId": "4rMEoXVYww6Xy7q9wSj4gy",
"trackUri": "spotify:track:4rMEoXVYww6Xy7q9wSj4gy",
"danceability": 0.404,
"valence": 0.36
},
{
"songId": "37248283",
"title": "WAY 4 LUV",
"artist": "PLAVE",
"album": "ASTERUM : 134-1",
"trackId": "1T6xi2QrnmwaebXGvWAjLg",
"trackUri": "spotify:track:1T6xi2QrnmwaebXGvWAjLg",
"danceability": 0.668,
"valence": 0.503
},
{
"songId": "30232719",
"title": "예뻤어",
"artist": "DAY6 (데이식스)",
"album": "Every DAY6 February",
"trackId": "3Pqp7yCHo6hbxMS0ZGc93N",
"trackUri": "spotify:track:3Pqp7yCHo6hbxMS0ZGc93N",
"danceability": 0.46,
"valence": 0.414
},
{
"songId": "38095946",
"title": "LOVE, MONEY, FAME (feat. DJ Khaled)",
"artist": "세븐틴 (SEVENTEEN)",
"album": "SEVENTEEN 12th Mini Album 'SPILL THE FEELS'",
"trackId": "145tqlcE6YFsjNfxi9K3AE",
"trackUri": "spotify:track:145tqlcE6YFsjNfxi9K3AE",
"danceability": 0.87,
"valence": 0.789
},
{
"songId": "37373234",
"title": "고민중독",
"artist": "QWER",
"album": "1st Mini Album 'MANITO'",
"trackId": "39gaUtq2z4ejJbno7tWHbL",
"trackUri": "spotify:track:39gaUtq2z4ejJbno7tWHbL",
"danceability": 0.546,
"valence": 0.678
},
{
"songId": "37563682",
"title": "How Sweet",
"artist": "NewJeans",
"album": "How Sweet",
"trackId": "38tXZcL1gZRfbqfOG0VMTH",
"trackUri": "spotify:track:38tXZcL1gZRfbqfOG0VMTH",
"danceability": 0.803,
"valence": 0.757
},
{
"songId": "37228861",
"title": "천상연",
"artist": "이창섭",
"album": "천상연 (웹툰 '선녀외전' X 이창섭 (LEE CHANGSUB))",
"trackId": "4mqfe9XrgEOSsofvq5MyjR",
"trackUri": "spotify:track:4mqfe9XrgEOSsofvq5MyjR",
"danceability": 0.353,
"valence": 0.33
},
{
"songId": "37248286",
"title": "우리 영화",
"artist": "PLAVE",
"album": "ASTERUM : 134-1",
"trackId": "2ODZujtUNxCQDfKCxCeRxZ",
"trackUri": "spotify:track:2ODZujtUNxCQDfKCxCeRxZ",
"danceability": 0.597,
"valence": 0.371
},
{
"songId": "37657039",
"title": "Small girl (feat. 도경수(D.O.))",
"artist": "이영지",
"album": "16 Fantasy",
"trackId": "1AtFSBJibfaqfiOByQCwZ5",
"trackUri": "spotify:track:1AtFSBJibfaqfiOByQCwZ5",
"danceability": 0.77,
"valence": 0.875
},
{
"songId": "37737619",
"title": "클락션 (Klaxon)",
"artist": "(여자)아이들",
"album": "I SWAY",
"trackId": "294hRgOqnGW2BemqP8D35X",
"trackUri": "spotify:track:294hRgOqnGW2BemqP8D35X",
"danceability": 0.89,
"valence": 0.801
},
{
"songId": "38104031",
"title": "내게 사랑이 뭐냐고 물어본다면",
"artist": "로이킴",
"album": "내게 사랑이 뭐냐고 물어본다면",
"trackId": "5zsMOF3yWT4U1Vw5eaMQFH",
"trackUri": "spotify:track:5zsMOF3yWT4U1Vw5eaMQFH",
"danceability": 0.372,
"valence": 0.368
},
{
"songId": "34908740",
"title": "우리들의 블루스",
"artist": "임영웅",
"album": "IM HERO",
"trackId": "2jidjmWNeRmKgLjXhW52Gz",
"trackUri": "spotify:track:2jidjmWNeRmKgLjXhW52Gz",
"danceability": 0.381,
"valence": 0.273