-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsongs.json
More file actions
7448 lines (7448 loc) · 372 KB
/
Copy pathsongs.json
File metadata and controls
7448 lines (7448 loc) · 372 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
{
"table": {
"songs": {
"song": [
{
"date": "July 27, 1940",
"artist": "<a href=\"/wiki/Tommy_Dorsey\" title=\"Tommy Dorsey\">Tommy Dorsey</a>",
"title": "\"<a href=\"/wiki/I%27ll_Never_Smile_Again\" title=\"I'll Never Smile Again\">I'll Never Smile Again</a>\"",
"duration": "12"
},
{
"date": "October 19, 1940",
"artist": "<a href=\"/wiki/Bing_Crosby\" title=\"Bing Crosby\">Bing Crosby</a>",
"title": "\"<a href=\"/wiki/Only_Forever\" title=\"Only Forever\">Only Forever</a>\"",
"duration": " 9"
},
{
"date": "December 21, 1940",
"artist": "<a href=\"/wiki/Artie_Shaw\" title=\"Artie Shaw\">Artie Shaw</a>",
"title": "\"<a href=\"/wiki/Frenesi\" title=\"Frenesi\">Frenesi</a>\"",
"duration": "12"
},
{
"date": "March 15, 1941",
"artist": "<a href=\"/wiki/Glenn_Miller\" title=\"Glenn Miller\">Glenn Miller</a>",
"title": "\"<a href=\"/wiki/The_Song_of_the_Volga_Boatmen\" title=\"The Song of the Volga Boatmen\">Song of the Volga Boatmen</a>\"",
"duration": " 1"
},
{
"date": "March 22, 1941",
"artist": "<a href=\"/wiki/Artie_Shaw\" title=\"Artie Shaw\">Artie Shaw</a>",
"title": "\"<a href=\"/wiki/Frenesi\" title=\"Frenesi\">Frenesi</a>\"",
"duration": " 1"
},
{
"date": "March 29, 1941",
"artist": "<a href=\"/wiki/Jimmy_Dorsey\" title=\"Jimmy Dorsey\">Jimmy Dorsey</a>",
"title": "\"<a href=\"/wiki/Amapola_(song)\" title=\"Amapola (song)\">Amapola (Pretty Little Poppy)</a>\"",
"duration": "10"
},
{
"date": "June 7, 1941",
"artist": "<a href=\"/wiki/Jimmy_Dorsey\" title=\"Jimmy Dorsey\">Jimmy Dorsey</a>",
"title": "\"<a href=\"/wiki/My_Sister_and_I_(song)\" title=\"My Sister and I (song)\">My Sister and I</a>\"",
"duration": " 1"
},
{
"date": "June 14, 1941",
"artist": "<a href=\"/wiki/Jimmy_Dorsey\" title=\"Jimmy Dorsey\">Jimmy Dorsey</a>",
"title": "\"<a href=\"/wiki/Maria_Elena\" title=\"Maria Elena\">Maria Elena</a>\"",
"duration": " 1"
},
{
"date": "June 21, 1941",
"artist": "<a href=\"/wiki/Sammy_Kaye\" title=\"Sammy Kaye\">Sammy Kaye</a>",
"title": "\"<a href=\"/wiki/Daddy_(Sammy_Kaye_song)\" title=\"Daddy (Sammy Kaye song)\">Daddy</a>\"",
"duration": " 1"
},
{
"date": "June 28, 1941",
"artist": "<a href=\"/wiki/Jimmy_Dorsey\" title=\"Jimmy Dorsey\">Jimmy Dorsey</a>",
"title": "\"<a href=\"/wiki/My_Sister_and_I_(song)\" title=\"My Sister and I (song)\">My Sister and I</a>\"",
"duration": " 1"
},
{
"date": "July 5, 1941",
"artist": "<a href=\"/wiki/Jimmy_Dorsey\" title=\"Jimmy Dorsey\">Jimmy Dorsey</a>",
"title": "\"<a href=\"/wiki/Maria_Elena\" title=\"Maria Elena\">Maria Elena</a>\"",
"duration": " 1"
},
{
"date": "July 12, 1941",
"artist": "<a href=\"/wiki/Sammy_Kaye\" title=\"Sammy Kaye\">Sammy Kaye</a>",
"title": "\"<a href=\"/wiki/Daddy_(Sammy_Kaye_song)\" title=\"Daddy (Sammy Kaye song)\">Daddy</a>\"",
"duration": " 7"
},
{
"date": "August 30, 1941",
"artist": "<a href=\"/wiki/Jimmy_Dorsey\" title=\"Jimmy Dorsey\">Jimmy Dorsey</a>",
"title": "\"<a href=\"/wiki/Green_Eyes_(Aquellos_Ojos_Verdes)\" title=\"Green Eyes (Aquellos Ojos Verdes)\">Green Eyes (Aquellos Ojos Verdes)</a>\"",
"duration": " 4"
},
{
"date": "September 27, 1941",
"artist": "<a href=\"/wiki/Jimmy_Dorsey\" title=\"Jimmy Dorsey\">Jimmy Dorsey</a>",
"title": "\"<a href=\"/wiki/Blue_Champagne\" title=\"Blue Champagne\" class=\"mw-redirect\">Blue Champagne</a>\"",
"duration": " 1"
},
{
"date": "October 4, 1941",
"artist": "<a href=\"/wiki/Freddy_Martin\" title=\"Freddy Martin\">Freddy Martin</a>",
"title": "\"<a href=\"/wiki/Piano_Concerto_No._1_(Tchaikovsky)\" title=\"Piano Concerto No. 1 (Tchaikovsky)\">Piano Concerto in B Flat</a>\"",
"duration": " 8"
},
{
"date": "November 29, 1941",
"artist": "<a href=\"/wiki/Glenn_Miller\" title=\"Glenn Miller\">Glenn Miller</a>",
"title": "\"<a href=\"/wiki/Chattanooga_Choo_Choo\" title=\"Chattanooga Choo Choo\">Chattanooga Choo Choo</a>\"",
"duration": " 3"
},
{
"date": "December 20, 1941",
"artist": "<a href=\"/wiki/Glenn_Miller\" title=\"Glenn Miller\">Glenn Miller</a>",
"title": "\"<a href=\"/wiki/Elmer%27s_Tune\" title=\"Elmer's Tune\">Elmer's Tune</a>\"",
"duration": " 1"
},
{
"date": "December 27, 1941",
"artist": "<a href=\"/wiki/Glenn_Miller\" title=\"Glenn Miller\">Glenn Miller</a>",
"title": "\"<a href=\"/wiki/Chattanooga_Choo_Choo\" title=\"Chattanooga Choo Choo\">Chattanooga Choo Choo</a>\"",
"duration": " 6"
},
{
"date": "February 7, 1942",
"artist": "<a href=\"/wiki/Glenn_Miller\" title=\"Glenn Miller\">Glenn Miller</a>",
"title": "\"<a href=\"/wiki/A_String_of_Pearls_(song)\" title=\"A String of Pearls (song)\">A String of Pearls</a>\"",
"duration": " 1"
},
{
"date": "February 14, 1942",
"artist": "<a href=\"/wiki/Woody_Herman\" title=\"Woody Herman\">Woody Herman</a>",
"title": "\"<a href=\"/wiki/Blues_in_the_Night\" title=\"Blues in the Night\">Blues in the Night (My Mama Done Tol' Me)</a>\"",
"duration": " 1"
},
{
"date": "February 21, 1942",
"artist": "<a href=\"/wiki/Glenn_Miller\" title=\"Glenn Miller\">Glenn Miller</a>",
"title": "\"<a href=\"/wiki/A_String_of_Pearls_(song)\" title=\"A String of Pearls (song)\">A String of Pearls</a>\"",
"duration": " 1"
},
{
"date": "February 28, 1942",
"artist": "<a href=\"/wiki/Glenn_Miller\" title=\"Glenn Miller\">Glenn Miller</a>",
"title": "\"<a href=\"/wiki/Moonlight_Cocktail\" title=\"Moonlight Cocktail\">Moonlight Cocktail</a>\"",
"duration": "10"
},
{
"date": "May 9, 1942",
"artist": "<a href=\"/wiki/Jimmy_Dorsey\" title=\"Jimmy Dorsey\">Jimmy Dorsey</a>",
"title": "\"<a href=\"/wiki/Tangerine\" title=\"Tangerine\">Tangerine</a>\"",
"duration": " 6"
},
{
"date": "June 20, 1942",
"artist": "<a href=\"/wiki/Harry_James\" title=\"Harry James\">Harry James</a>",
"title": "\"<a href=\"/wiki/By_the_Sleepy_Lagoon\" title=\"By the Sleepy Lagoon\">Sleepy Lagoon</a>\"",
"duration": " 4"
},
{
"date": "July 18, 1942",
"artist": "<a href=\"/wiki/Kay_Kyser\" title=\"Kay Kyser\">Kay Kyser</a>",
"title": "\"<a href=\"/wiki/Jingle_Jangle_Jingle\" title=\"Jingle Jangle Jingle\">Jingle Jangle Jingle</a>\"",
"duration": " 8"
},
{
"date": "September 12, 1942",
"artist": "<a href=\"/wiki/Glenn_Miller\" title=\"Glenn Miller\">Glenn Miller</a>",
"title": "\"<a href=\"/wiki/(I%27ve_Got_a_Gal_In)_Kalamazoo\" title=\"(I've Got a Gal In) Kalamazoo\">(I've Got a Gal In) Kalamazoo</a>\"",
"duration": " 7"
},
{
"date": "October 31, 1942",
"artist": "<a href=\"/wiki/Bing_Crosby\" title=\"Bing Crosby\">Bing Crosby</a>",
"title": "\"<a href=\"/wiki/White_Christmas_(song)\" title=\"White Christmas (song)\">White Christmas</a>\"",
"duration": "11"
},
{
"date": "January 16, 1943",
"artist": "<a href=\"/wiki/Tommy_Dorsey\" title=\"Tommy Dorsey\">Tommy Dorsey</a>",
"title": "\"<a href=\"/wiki/There_Are_Such_Things\" title=\"There Are Such Things\">There Are Such Things</a>\"",
"duration": " 4"
},
{
"date": "February 13, 1943",
"artist": "<a href=\"/wiki/Harry_James\" title=\"Harry James\">Harry James</a>",
"title": "\"<a href=\"/wiki/I_Had_The_Craziest_Dream\" title=\"I Had The Craziest Dream\" class=\"mw-redirect\">I Had The Craziest Dream</a>\"",
"duration": " 2"
},
{
"date": "February 27, 1943",
"artist": "<a href=\"/wiki/Tommy_Dorsey\" title=\"Tommy Dorsey\">Tommy Dorsey</a>",
"title": "\"<a href=\"/wiki/There_Are_Such_Things\" title=\"There Are Such Things\">There Are Such Things</a>\"",
"duration": " 1"
},
{
"date": "March 6, 1943",
"artist": "<a href=\"/wiki/Harry_James\" title=\"Harry James\">Harry James</a>",
"title": "\"<a href=\"/wiki/I%27ve_Heard_That_Song_Before\" title=\"I've Heard That Song Before\">I've Heard That Song Before</a>\"",
"duration": "12"
},
{
"date": "May 29, 1943",
"artist": "<a href=\"/wiki/Glenn_Miller\" title=\"Glenn Miller\">Glenn Miller</a>",
"title": "\"<a href=\"/wiki/That_Old_Black_Magic\" title=\"That Old Black Magic\">That Old Black Magic</a>\"",
"duration": " 1"
},
{
"date": "June 5, 1943",
"artist": "<a href=\"/wiki/Harry_James\" title=\"Harry James\">Harry James</a>",
"title": "\"<a href=\"/wiki/I%27ve_Heard_That_Song_Before\" title=\"I've Heard That Song Before\">I've Heard That Song Before</a>\"",
"duration": " 1"
},
{
"date": "June 12, 1943",
"artist": "<a href=\"/wiki/Benny_Goodman\" title=\"Benny Goodman\">Benny Goodman</a>",
"title": "\"<a href=\"/wiki/Taking_A_Chance_On_Love\" title=\"Taking A Chance On Love\" class=\"mw-redirect\">Taking A Chance On Love</a>\"",
"duration": " 3"
},
{
"date": "July 3, 1943",
"artist": "<a href=\"/wiki/The_Song_Spinners\" title=\"The Song Spinners\">The Song Spinners</a>",
"title": "\"<a href=\"/wiki/The_Song_Spinners\" title=\"The Song Spinners\">Comin' In On A Wing And A Prayer</a>\"",
"duration": " 3"
},
{
"date": "July 24, 1943",
"artist": "<a href=\"/wiki/Dick_Haymes\" title=\"Dick Haymes\">Dick Haymes</a>",
"title": "\"<a href=\"/wiki/You%27ll_Never_Know\" title=\"You'll Never Know\">You'll Never Know</a>\"",
"duration": " 4"
},
{
"date": "August 21, 1943",
"artist": "<a href=\"/wiki/Tommy_Dorsey\" title=\"Tommy Dorsey\">Tommy Dorsey</a>",
"title": "\"<a href=\"/w/index.php?title=In_The_Blue_Of_Evening&action=edit&redlink=1\" class=\"new\" title=\"In The Blue Of Evening (page does not exist)\">In The Blue Of Evening</a>\"",
"duration": " 3"
},
{
"date": "September 11, 1943",
"artist": "<a href=\"/wiki/Bing_Crosby\" title=\"Bing Crosby\">Bing Crosby</a>",
"title": "\"<a href=\"/wiki/Sunday,_Monday_Or_Always\" title=\"Sunday, Monday Or Always\" class=\"mw-redirect\">Sunday, Monday Or Always</a>\"",
"duration": " 7"
},
{
"date": "October 30, 1943",
"artist": "<a href=\"/wiki/Al_Dexter\" title=\"Al Dexter\">Al Dexter</a>",
"title": "\"<a href=\"/wiki/Pistol_Packin%27_Mama\" title=\"Pistol Packin' Mama\">Pistol Packin' Mama</a>\"",
"duration": " 1"
},
{
"date": "November 6, 1943",
"artist": "<a href=\"/wiki/Mills_Brothers\" title=\"Mills Brothers\">Mills Brothers</a>",
"title": "\"<a href=\"/wiki/Paper_Doll\" title=\"Paper Doll\" class=\"mw-redirect\">Paper Doll</a>\"",
"duration": "12"
},
{
"date": "January 29, 1944",
"artist": "<a href=\"/wiki/Glen_Gray\" title=\"Glen Gray\">Glen Gray</a>",
"title": "\"<a href=\"/w/index.php?title=My_Heart_Tells_Me_(Should_I_Believe_My_Heart)&action=edit&redlink=1\" class=\"new\" title=\"My Heart Tells Me (Should I Believe My Heart) (page does not exist)\">My Heart Tells Me (Should I Believe My Heart)</a>\"",
"duration": " 5"
},
{
"date": "March 4, 1944",
"artist": "<a href=\"/wiki/Jimmy_Dorsey\" title=\"Jimmy Dorsey\">Jimmy Dorsey</a>",
"title": "\"<a href=\"/wiki/B%C3%A9same_Mucho\" title=\"Bésame Mucho\">Besame Mucho (Kiss Me Much)</a>\"",
"duration": " 7"
},
{
"date": "April 22, 1944",
"artist": "<a href=\"/wiki/Guy_Lombardo\" title=\"Guy Lombardo\">Guy Lombardo</a>",
"title": "\"<a href=\"/wiki/It%27s_Love-Love-Love\" title=\"It's Love-Love-Love\">It's Love-Love-Love</a>\"",
"duration": " 2"
},
{
"date": "May 6, 1944",
"artist": "<a href=\"/wiki/Bing_Crosby\" title=\"Bing Crosby\">Bing Crosby</a>",
"title": "\"<a href=\"/wiki/I_Love_You_(Cole_Porter_song)\" title=\"I Love You (Cole Porter song)\">I Love You</a>\"",
"duration": " 5"
},
{
"date": "June 10, 1944",
"artist": "<a href=\"/wiki/Harry_James\" title=\"Harry James\">Harry James</a>",
"title": "\"<a href=\"/wiki/I%27ll_Get_By_(As_Long_as_I_Have_You)\" title=\"I'll Get By (As Long as I Have You)\">I'll Get By (As Long as I Have You)</a>\"",
"duration": " 3"
},
{
"date": "July 1, 1944",
"artist": "<a href=\"/wiki/Bing_Crosby\" title=\"Bing Crosby\">Bing Crosby</a>",
"title": "\"<a href=\"/wiki/I%27ll_Be_Seeing_You_(song)\" title=\"I'll Be Seeing You (song)\">I'll Be Seeing You</a>\"",
"duration": " 1"
},
{
"date": "July 8, 1944",
"artist": "<a href=\"/wiki/Harry_James\" title=\"Harry James\">Harry James</a>",
"title": "\"<a href=\"/wiki/I%27ll_Get_By_(As_Long_as_I_Have_You)\" title=\"I'll Get By (As Long as I Have You)\">I'll Get By (As Long as I Have You)</a>\"",
"duration": " 1"
},
{
"date": "July 15, 1944",
"artist": "<a href=\"/wiki/Bing_Crosby\" title=\"Bing Crosby\">Bing Crosby</a>",
"title": "\"<a href=\"/wiki/I%27ll_Be_Seeing_You_(song)\" title=\"I'll Be Seeing You (song)\">I'll Be Seeing You</a>\"",
"duration": " 3"
},
{
"date": "August 5, 1944",
"artist": "<a href=\"/wiki/Bing_Crosby\" title=\"Bing Crosby\">Bing Crosby</a>",
"title": "\"<a href=\"/wiki/Swinging_On_A_Star\" title=\"Swinging On A Star\" class=\"mw-redirect\">Swinging On A Star</a>\"",
"duration": " 9"
},
{
"date": "October 7, 1944",
"artist": "<a href=\"/wiki/Mills_Brothers\" title=\"Mills Brothers\">Mills Brothers</a>",
"title": "\"<a href=\"/wiki/You_Always_Hurt_The_One_You_Love\" title=\"You Always Hurt The One You Love\" class=\"mw-redirect\">You Always Hurt The One You Love</a>\"",
"duration": " 1"
},
{
"date": "October 14, 1944",
"artist": "<a href=\"/wiki/Dinah_Shore\" title=\"Dinah Shore\">Dinah Shore</a>",
"title": "\"<a href=\"/wiki/I%27ll_Walk_Alone\" title=\"I'll Walk Alone\">I'll Walk Alone</a>\"",
"duration": " 1"
},
{
"date": "October 21, 1944",
"artist": "<a href=\"/wiki/Mills_Brothers\" title=\"Mills Brothers\">Mills Brothers</a>",
"title": "\"<a href=\"/wiki/You_Always_Hurt_The_One_You_Love\" title=\"You Always Hurt The One You Love\" class=\"mw-redirect\">You Always Hurt The One You Love</a>\"",
"duration": " 2"
},
{
"date": "November 4, 1944",
"artist": "<a href=\"/wiki/Dinah_Shore\" title=\"Dinah Shore\">Dinah Shore</a>",
"title": "\"<a href=\"/wiki/I%27ll_Walk_Alone\" title=\"I'll Walk Alone\">I'll Walk Alone</a>\"",
"duration": " 3"
},
{
"date": "November 25, 1944",
"artist": "<a href=\"/wiki/Mills_Brothers\" title=\"Mills Brothers\">Mills Brothers</a>",
"title": "\"<a href=\"/wiki/You_Always_Hurt_The_One_You_Love\" title=\"You Always Hurt The One You Love\" class=\"mw-redirect\">You Always Hurt The One You Love</a>\"",
"duration": " 2"
},
{
"date": "December 9, 1944",
"artist": "<a href=\"/wiki/The_Ink_Spots\" title=\"The Ink Spots\">The Ink Spots</a> and <a href=\"/wiki/Ella_Fitzgerald\" title=\"Ella Fitzgerald\">Ella Fitzgerald</a>",
"title": "\"<a href=\"/w/index.php?title=I%27m_Making_Believe&action=edit&redlink=1\" class=\"new\" title=\"I'm Making Believe (page does not exist)\">I'm Making Believe</a>\"",
"duration": " 2"
},
{
"date": "December 23, 1944",
"artist": "<a href=\"/wiki/Bing_Crosby\" title=\"Bing Crosby\">Bing Crosby</a> and <a href=\"/wiki/The_Andrews_Sisters\" title=\"The Andrews Sisters\">The Andrews Sisters</a>",
"title": "\"<a href=\"/wiki/Don%27t_Fence_Me_In_(song)\" title=\"Don't Fence Me In (song)\">Don't Fence Me In</a>\"",
"duration": " 8"
},
{
"date": "February 17, 1945",
"artist": "<a href=\"/wiki/The_Andrews_Sisters\" title=\"The Andrews Sisters\">The Andrews Sisters</a>",
"title": "\"<a href=\"/wiki/Rum_and_Coca-Cola\" title=\"Rum and Coca-Cola\">Rum and Coca-Cola</a>\"",
"duration": " 7"
},
{
"date": "April 7, 1945",
"artist": "<a href=\"/wiki/Les_Brown_(bandleader)\" title=\"Les Brown (bandleader)\">Les Brown</a>",
"title": "\"<a href=\"/wiki/My_Dreams_Are_Getting_Better_All_The_Time\" title=\"My Dreams Are Getting Better All The Time\" class=\"mw-redirect\">My Dreams Are Getting Better All The Time</a>\"",
"duration": " 7"
},
{
"date": "May 26, 1945",
"artist": "<a href=\"/wiki/Les_Brown_(bandleader)\" title=\"Les Brown (bandleader)\">Les Brown</a>",
"title": "\"<a href=\"/wiki/Sentimental_Journey_(song)\" title=\"Sentimental Journey (song)\">Sentimental Journey</a>\"",
"duration": " 9"
},
{
"date": "July 28, 1945",
"artist": "<a href=\"/wiki/Johnny_Mercer\" title=\"Johnny Mercer\">Johnny Mercer</a>",
"title": "\"<a href=\"/wiki/On_the_Atchison,_Topeka_and_the_Santa_Fe\" title=\"On the Atchison, Topeka and the Santa Fe\">On the Atchison, Topeka and the Santa Fe</a>\"",
"duration": " 7"
},
{
"date": "September 15, 1945",
"artist": "<a href=\"/wiki/Perry_Como\" title=\"Perry Como\">Perry Como</a>",
"title": "\"<a href=\"/wiki/Till_the_End_of_Time_(Buddy_Kaye_and_Ted_Mossman_song)\" title=\"Till the End of Time (Buddy Kaye and Ted Mossman song)\">Till The End Of Time</a>\"",
"duration": " 9"
},
{
"date": "November 17, 1945",
"artist": "<a href=\"/wiki/Sammy_Kaye\" title=\"Sammy Kaye\">Sammy Kaye</a>",
"title": "\"<a href=\"/w/index.php?title=Chickery_Chick&action=edit&redlink=1\" class=\"new\" title=\"Chickery Chick (page does not exist)\">Chickery Chick</a>\"",
"duration": " 1"
},
{
"date": "November 24, 1945",
"artist": "<a href=\"/wiki/Harry_James\" title=\"Harry James\">Harry James</a>",
"title": "\"<a href=\"/wiki/It%27s_Been_A_Long,_Long_Time\" title=\"It's Been A Long, Long Time\" class=\"mw-redirect\">It's Been A Long, Long Time</a>\"",
"duration": " 2"
},
{
"date": "December 8, 1945",
"artist": "<a href=\"/wiki/Bing_Crosby\" title=\"Bing Crosby\">Bing Crosby</a> and <a href=\"/wiki/Les_Paul\" title=\"Les Paul\">The Les Paul Trio</a>",
"title": "\"<a href=\"/wiki/It%27s_Been_A_Long,_Long_Time\" title=\"It's Been A Long, Long Time\" class=\"mw-redirect\">It's Been A Long, Long Time</a>\"",
"duration": " 1"
},
{
"date": "December 15, 1945",
"artist": "<a href=\"/wiki/Sammy_Kaye\" title=\"Sammy Kaye\">Sammy Kaye</a>",
"title": "\"<a href=\"/w/index.php?title=Chickery_Chick&action=edit&redlink=1\" class=\"new\" title=\"Chickery Chick (page does not exist)\">Chickery Chick</a>\"",
"duration": " 1"
},
{
"date": "December 22, 1945",
"artist": "<a href=\"/wiki/Harry_James\" title=\"Harry James\">Harry James</a>",
"title": "\"<a href=\"/wiki/It%27s_Been_A_Long,_Long_Time\" title=\"It's Been A Long, Long Time\" class=\"mw-redirect\">It's Been A Long, Long Time</a>\"",
"duration": " 1"
},
{
"date": "December 29, 1945",
"artist": "<a href=\"/wiki/Sammy_Kaye\" title=\"Sammy Kaye\">Sammy Kaye</a>",
"title": "\"<a href=\"/w/index.php?title=Chickery_Chick&action=edit&redlink=1\" class=\"new\" title=\"Chickery Chick (page does not exist)\">Chickery Chick</a>\"",
"duration": " 1"
},
{
"date": "January 5, 1946",
"artist": "<a href=\"/wiki/Freddy_Martin\" title=\"Freddy Martin\">Freddy Martin</a>",
"title": "\"<a href=\"/wiki/Symphony\" title=\"Symphony\">Symphony</a>\"",
"duration": " 2"
},
{
"date": "January 19, 1946",
"artist": "<a href=\"/wiki/Bing_Crosby\" title=\"Bing Crosby\">Bing Crosby</a> and <a href=\"/wiki/Carmen_Cavallaro\" title=\"Carmen Cavallaro\">Carmen Cavallaro</a>",
"title": "\"<a href=\"/wiki/I_Can%27t_Begin_To_Tell_You\" title=\"I Can't Begin To Tell You\" class=\"mw-redirect\">I Can't Begin To Tell You</a>\"",
"duration": " 1"
},
{
"date": "January 26, 1946",
"artist": "<a href=\"/wiki/Vaughn_Monroe\" title=\"Vaughn Monroe\">Vaughn Monroe</a>",
"title": "\"<a href=\"/wiki/Let_It_Snow!_Let_It_Snow!_Let_It_Snow!\" title=\"Let It Snow! Let It Snow! Let It Snow!\">Let It Snow! Let It Snow! Let It Snow!</a>\"",
"duration": " 5"
},
{
"date": "March 2, 1946",
"artist": "<a href=\"/wiki/Betty_Hutton\" title=\"Betty Hutton\">Betty Hutton</a>",
"title": "\"<a href=\"/wiki/Doctor,_Lawyer,_Indian_Chief\" title=\"Doctor, Lawyer, Indian Chief\">Doctor, Lawyer, Indian Chief</a>\"",
"duration": " 1"
},
{
"date": "March 9, 1946",
"artist": "<a href=\"/wiki/Johnny_Mercer\" title=\"Johnny Mercer\">Johnny Mercer</a>",
"title": "\"<a href=\"/wiki/Personality_(1946_song)\" title=\"Personality (1946 song)\">Personality</a>\"",
"duration": " 1"
},
{
"date": "March 16, 1946",
"artist": "<a href=\"/wiki/Frankie_Carle\" title=\"Frankie Carle\">Frankie Carle</a>",
"title": "\"<a href=\"/w/index.php?title=Oh!_What_It_Seemed_To_Be&action=edit&redlink=1\" class=\"new\" title=\"Oh! What It Seemed To Be (page does not exist)\">Oh! What It Seemed To Be</a>\"",
"duration": " 6"
},
{
"date": "April 27, 1946",
"artist": "<a href=\"/wiki/Sammy_Kaye\" title=\"Sammy Kaye\">Sammy Kaye</a>",
"title": "\"<a href=\"/w/index.php?title=I%27m_A_Big_Girl_Now&action=edit&redlink=1\" class=\"new\" title=\"I'm A Big Girl Now (page does not exist)\">I'm A Big Girl Now</a>\"",
"duration": " 1"
},
{
"date": "May 4, 1946",
"artist": "<a href=\"/wiki/Perry_Como\" title=\"Perry Como\">Perry Como</a>",
"title": "\"<a href=\"/wiki/Prisoner_of_Love_(1931_song)\" title=\"Prisoner of Love (1931 song)\">Prisoner Of Love</a>\"",
"duration": " 3"
},
{
"date": "May 25, 1946",
"artist": "<a href=\"/wiki/The_Ink_Spots\" title=\"The Ink Spots\">The Ink Spots</a>",
"title": "\"<a href=\"/wiki/The_Gypsy\" title=\"The Gypsy\">The Gypsy</a>\"",
"duration": "10"
},
{
"date": "August 3, 1946",
"artist": "<a href=\"/wiki/Perry_Como\" title=\"Perry Como\">Perry Como</a>",
"title": "\"<a href=\"/wiki/Perry_Como\" title=\"Perry Como\">Surrender</a>\"",
"duration": " 1"
},
{
"date": "August 10, 1946",
"artist": "<a href=\"/wiki/Eddy_Howard\" title=\"Eddy Howard\">Eddy Howard</a>",
"title": "\"<a href=\"/wiki/To_Each_His_Own_(song)\" title=\"To Each His Own (song)\">To Each His Own</a>\"",
"duration": " 3"
},
{
"date": "August 31, 1946",
"artist": "<a href=\"/wiki/Freddy_Martin\" title=\"Freddy Martin\">Freddy Martin</a>",
"title": "\"<a href=\"/wiki/To_Each_His_Own_(song)\" title=\"To Each His Own (song)\">To Each His Own</a>\"",
"duration": " 2"
},
{
"date": "September 14, 1946",
"artist": "<a href=\"/wiki/Frank_Sinatra\" title=\"Frank Sinatra\">Frank Sinatra</a>",
"title": "\"<a href=\"/wiki/Five_Minutes_More\" title=\"Five Minutes More\">Five Minutes More</a>\"",
"duration": " 1"
},
{
"date": "September 21, 1946",
"artist": "<a href=\"/wiki/The_Ink_Spots\" title=\"The Ink Spots\">The Ink Spots</a>",
"title": "\"<a href=\"/wiki/To_Each_His_Own_(song)\" title=\"To Each His Own (song)\">To Each His Own</a>\"",
"duration": " 1"
},
{
"date": "September 28, 1946",
"artist": "<a href=\"/wiki/Frank_Sinatra\" title=\"Frank Sinatra\">Frank Sinatra</a>",
"title": "\"<a href=\"/wiki/Five_Minutes_More\" title=\"Five Minutes More\">Five Minutes More</a>\"",
"duration": " 1"
},
{
"date": "October 5, 1946",
"artist": "<a href=\"/wiki/Eddy_Howard\" title=\"Eddy Howard\">Eddy Howard</a>",
"title": "\"<a href=\"/wiki/To_Each_His_Own_(song)\" title=\"To Each His Own (song)\">To Each His Own</a>\"",
"duration": " 2"
},
{
"date": "October 19, 1946",
"artist": "<a href=\"/wiki/Frankie_Carle\" title=\"Frankie Carle\">Frankie Carle</a>",
"title": "\"<a href=\"/wiki/Rumors_Are_Flying\" title=\"Rumors Are Flying\">Rumors Are Flying</a>\"",
"duration": " 8"
},
{
"date": "December 14, 1946",
"artist": "<a href=\"/wiki/Kay_Kyser\" title=\"Kay Kyser\">Kay Kyser</a>",
"title": "\"<a href=\"/w/index.php?title=Old_Buttermilk_Sky&action=edit&redlink=1\" class=\"new\" title=\"Old Buttermilk Sky (page does not exist)\">Old Buttermilk Sky</a>\"",
"duration": " 2"
},
{
"date": "December 28, 1946",
"artist": "<a href=\"/wiki/Sammy_Kaye\" title=\"Sammy Kaye\">Sammy Kaye</a>",
"title": "\"<a href=\"/wiki/The_Old_Lamp-Lighter\" title=\"The Old Lamp-Lighter\">The Old Lamp-Lighter</a>\"",
"duration": " 7"
},
{
"date": "February 15, 1947",
"artist": "<a href=\"/wiki/Nat_King_Cole\" title=\"Nat King Cole\">The King Cole Trio</a>",
"title": "\"<a href=\"/wiki/(I_Love_You)_For_Sentimental_Reasons\" title=\"(I Love You) For Sentimental Reasons\">(I Love You) For Sentimental Reasons</a>\"",
"duration": " 1"
},
{
"date": "February 22, 1947",
"artist": "<a href=\"/wiki/Count_Basie\" title=\"Count Basie\">Count Basie</a>",
"title": "\"<a href=\"/wiki/Open_the_Door,_Richard\" title=\"Open the Door, Richard\">Open The Door, Richard!</a>\"",
"duration": " 1"
},
{
"date": "March 1, 1947",
"artist": "<a href=\"/wiki/Freddy_Martin\" title=\"Freddy Martin\">Freddy Martin</a>",
"title": "\"<a href=\"/wiki/Managua,_Nicaragua\" title=\"Managua, Nicaragua\" class=\"mw-redirect\">Managua, Nicaragua</a>\"",
"duration": " 2"
},
{
"date": "March 15, 1947",
"artist": "<a href=\"/wiki/Ted_Weems\" title=\"Ted Weems\">Ted Weems</a>",
"title": "\"<a href=\"/wiki/Heartaches_(song)\" title=\"Heartaches (song)\">Heartaches</a>\"",
"duration": "12"
},
{
"date": "June 7, 1947",
"artist": "<a href=\"/wiki/Art_Lund\" title=\"Art Lund\">Art Lund</a>",
"title": "\"<a href=\"/wiki/Mam%27selle\" title=\"Mam'selle\">Mam'selle</a>\"",
"duration": " 2"
},
{
"date": "June 21, 1947",
"artist": "<a href=\"/wiki/The_Harmonicats\" title=\"The Harmonicats\" class=\"mw-redirect\">The Harmonicats</a>",
"title": "\"<a href=\"/wiki/Peg_O%27_My_Heart\" title=\"Peg O' My Heart\" class=\"mw-redirect\">Peg O' My Heart</a>\"",
"duration": " 1"
},
{
"date": "June 28, 1947",
"artist": "<a href=\"/wiki/Perry_Como\" title=\"Perry Como\">Perry Como</a>",
"title": "\"<a href=\"/wiki/Chi-Baba,_Chi-Baba_(My_Bambino_Go_to_Sleep)\" title=\"Chi-Baba, Chi-Baba (My Bambino Go to Sleep)\">Chi-Baba, Chi-Baba (My Bambino Go to Sleep)</a>\"",
"duration": " 3"
},
{
"date": "July 19, 1947",
"artist": "<a href=\"/wiki/The_Harmonicats\" title=\"The Harmonicats\" class=\"mw-redirect\">The Harmonicats</a>",
"title": "\"<a href=\"/wiki/Peg_O%27_My_Heart\" title=\"Peg O' My Heart\" class=\"mw-redirect\">Peg O' My Heart</a>\"",
"duration": " 3"
},
{
"date": "August 9, 1947",
"artist": "<a href=\"/wiki/Tex_Williams\" title=\"Tex Williams\">Tex Williams</a>",
"title": "\"<a href=\"/wiki/Smoke!_Smoke!_Smoke!_(That_Cigarette)\" title=\"Smoke! Smoke! Smoke! (That Cigarette)\">Smoke! Smoke! Smoke! (That Cigarette)</a>\"",
"duration": " 6"
},
{
"date": "September 20, 1947",
"artist": "<a href=\"/wiki/Francis_Craig\" title=\"Francis Craig\">Francis Craig</a>",
"title": "\"<a href=\"/wiki/Near_You\" title=\"Near You\">Near You</a>\"",
"duration": "12"
},
{
"date": "December 13, 1947",
"artist": "<a href=\"/wiki/Vaughn_Monroe\" title=\"Vaughn Monroe\">Vaughn Monroe</a>",
"title": "\"<a href=\"/wiki/Ballerina\" title=\"Ballerina\" class=\"mw-redirect\">Ballerina</a>\"",
"duration": "10"
},
{
"date": "February 21, 1948",
"artist": "<a href=\"/wiki/Art_Mooney\" title=\"Art Mooney\">Art Mooney</a>",
"title": "\"<a href=\"/wiki/I%27m_Looking_Over_a_Four_Leaf_Clover\" title=\"I'm Looking Over a Four Leaf Clover\">I'm Looking Over a Four Leaf Clover</a>\"",
"duration": " 3"
},
{
"date": "March 13, 1948",
"artist": "<a href=\"/wiki/Peggy_Lee\" title=\"Peggy Lee\">Peggy Lee</a>",
"title": "\"<a href=\"/wiki/Ma%C3%B1ana_(Is_Soon_Enough_for_Me)\" title=\"Mañana (Is Soon Enough for Me)\">Mañana (Is Soon Enough for Me)</a>\"",
"duration": " 9"
},
{
"date": "May 15, 1948",
"artist": "<a href=\"/wiki/Nat_King_Cole\" title=\"Nat King Cole\">Nat King Cole</a>",
"title": "\"<a href=\"/wiki/Nature_Boy\" title=\"Nature Boy\">Nature Boy</a>\"",
"duration": " 7"
},
{
"date": "July 3, 1948",
"artist": "<a href=\"/wiki/Kay_Kyser\" title=\"Kay Kyser\">Kay Kyser</a>",
"title": "\"<a href=\"/wiki/Woody_Woodpecker#.22The_Woody_Woodpecker_Song.22\" title=\"Woody Woodpecker\">Woody Wood-Pecker</a>\"",
"duration": " 6"
},
{
"date": "August 14, 1948",
"artist": "<a href=\"/wiki/Al_Trace\" title=\"Al Trace\">Al Trace</a>",
"title": "\"<a href=\"/wiki/You_Call_Everybody_Darlin%27\" title=\"You Call Everybody Darlin'\">You Call Everybody Darlin'</a>\"",
"duration": " 2"
},
{
"date": "August 28, 1948",
"artist": "<a href=\"/wiki/Pee_Wee_Hunt\" title=\"Pee Wee Hunt\">Pee Wee Hunt</a>",
"title": "\"<a href=\"/wiki/Twelfth_Street_Rag\" title=\"Twelfth Street Rag\">Twelfth Street Rag</a>\"",
"duration": " 6"
},
{
"date": "October 9, 1948",
"artist": "<a href=\"/wiki/Margaret_Whiting\" title=\"Margaret Whiting\">Margaret Whiting</a>",
"title": "\"<a href=\"/wiki/A_Tree_In_The_Meadow\" title=\"A Tree In The Meadow\" class=\"mw-redirect\">A Tree In The Meadow</a>\"",
"duration": " 2"
},
{
"date": "October 23, 1948",
"artist": "<a href=\"/wiki/Pee_Wee_Hunt\" title=\"Pee Wee Hunt\">Pee Wee Hunt</a>",
"title": "\"<a href=\"/wiki/Twelfth_Street_Rag\" title=\"Twelfth Street Rag\">Twelfth Street Rag</a>\"",
"duration": " 2"
},
{
"date": "November 6, 1948",
"artist": "<a href=\"/wiki/Dinah_Shore\" title=\"Dinah Shore\">Dinah Shore</a>",
"title": "\"<a href=\"/wiki/Buttons_And_Bows\" title=\"Buttons And Bows\" class=\"mw-redirect\">Buttons And Bows</a>\"",
"duration": " 9"
},
{
"date": "January 8, 1949",
"artist": "<a href=\"/wiki/Spike_Jones\" title=\"Spike Jones\">Spike Jones</a>",
"title": "\"<a href=\"/wiki/All_I_Want_for_Christmas_Is_My_Two_Front_Teeth\" title=\"All I Want for Christmas Is My Two Front Teeth\">All I Want For Christmas (is My Two Front Teeth)</a>\"",
"duration": " 1"
},
{
"date": "January 15, 1949",
"artist": "<a href=\"/wiki/Dinah_Shore\" title=\"Dinah Shore\">Dinah Shore</a>",
"title": "\"<a href=\"/wiki/Buttons_And_Bows\" title=\"Buttons And Bows\" class=\"mw-redirect\">Buttons And Bows</a>\"",
"duration": " 1"
},
{
"date": "January 22, 1949",
"artist": "<a href=\"/wiki/Evelyn_Knight\" title=\"Evelyn Knight\">Evelyn Knight</a>",
"title": "\"<a href=\"/wiki/A_Little_Bird_Told_Me\" title=\"A Little Bird Told Me\">A Little Bird Told Me</a>\"",
"duration": " 7"
},
{
"date": "March 12, 1949",
"artist": "<a href=\"/wiki/Blue_Barron\" title=\"Blue Barron\">Blue Barron</a>",
"title": "\"<a href=\"/wiki/Cruising_Down_the_River\" title=\"Cruising Down the River\">Cruising Down the River</a>\"",
"duration": " 2"
},
{
"date": "April 2, 1949",
"artist": "<a href=\"/wiki/Russ_Morgan\" title=\"Russ Morgan\">Russ Morgan</a>",
"title": "\"<a href=\"/wiki/Cruising_Down_the_River\" title=\"Cruising Down the River\">Cruising Down the River</a>\"",
"duration": " 7"
},
{
"date": "May 14, 1949",
"artist": "<a href=\"/wiki/Vaughn_Monroe\" title=\"Vaughn Monroe\">Vaughn Monroe</a>",
"title": "\"<a href=\"/wiki/(Ghost)_Riders_in_the_Sky:_A_Cowboy_Legend\" title=\"(Ghost) Riders in the Sky: A Cowboy Legend\">Riders In The Sky (A Cowboy Legend)</a>\"",
"duration": "11"
},
{
"date": "July 30, 1949",
"artist": "<a href=\"/wiki/Perry_Como\" title=\"Perry Como\">Perry Como</a>",
"title": "\"<a href=\"/wiki/Some_Enchanted_Evening\" title=\"Some Enchanted Evening\">Some Enchanted Evening</a>\"",
"duration": " 5"
},
{
"date": "September 3, 1949",
"artist": "<a href=\"/wiki/Vic_Damone\" title=\"Vic Damone\">Vic Damone</a>",
"title": "\"<a href=\"/wiki/You%27re_Breaking_My_Heart\" title=\"You're Breaking My Heart\">You're Breaking My Heart</a>\"",
"duration": " 4"
},
{
"date": "October 1, 1949",
"artist": "<a href=\"/wiki/Frankie_Laine\" title=\"Frankie Laine\">Frankie Laine</a>",
"title": "\"<a href=\"/wiki/That_Lucky_Old_Sun\" title=\"That Lucky Old Sun\">That Lucky Old Sun</a>\"",
"duration": " 8"
},
{
"date": "November 26, 1949",
"artist": "<a href=\"/wiki/Frankie_Laine\" title=\"Frankie Laine\">Frankie Laine</a>",
"title": "\"<a href=\"/wiki/Mule_Train\" title=\"Mule Train\">Mule Train</a>\"",
"duration": " 6"
},
{
"date": "January 7, 1950",
"artist": "<a href=\"/wiki/Gene_Autry\" title=\"Gene Autry\">Gene Autry</a>",
"title": "\"<a href=\"/wiki/Rudolph_the_Red-Nosed_Reindeer_(song)\" title=\"Rudolph the Red-Nosed Reindeer (song)\">Rudolph, The Red-nosed Reindeer</a>\"",
"duration": " 1"
},
{
"date": "January 14, 1950",
"artist": "<a href=\"/wiki/The_Andrews_Sisters\" title=\"The Andrews Sisters\">The Andrews Sisters</a>",
"title": "\"<a href=\"/wiki/I_Can_Dream,_Can%27t_I\" title=\"I Can Dream, Can't I\" class=\"mw-redirect\">I Can Dream, Can't I</a>\"",
"duration": " 4"
},
{
"date": "February 11, 1950",
"artist": "<a href=\"/wiki/Ames_Brothers\" title=\"Ames Brothers\">Ames Brothers</a>",
"title": "\"<a href=\"/wiki/Rag_Mop\" title=\"Rag Mop\">Rag Mop</a>\"",
"duration": " 1"
},
{
"date": "February 18, 1950",
"artist": "<a href=\"/wiki/Red_Foley\" title=\"Red Foley\">Red Foley</a>",
"title": "\"<a href=\"/wiki/Chattanoogie_Shoe_Shine_Boy\" title=\"Chattanoogie Shoe Shine Boy\">Chattanoogie Shoe Shine Boy</a>\"",
"duration": " 4"
},
{
"date": "March 18, 1950",
"artist": "<a href=\"/wiki/Teresa_Brewer\" title=\"Teresa Brewer\">Teresa Brewer</a>",
"title": "\"<a href=\"/wiki/Music!_Music!_Music!\" title=\"Music! Music! Music!\">Music! Music! Music!</a>\"",
"duration": " 4"
},
{
"date": "April 15, 1950",
"artist": "<a href=\"/wiki/Eileen_Barton\" title=\"Eileen Barton\">Eileen Barton</a>",
"title": "\"<a href=\"/wiki/If_I_Knew_You_Were_Comin%27_I%27d%27ve_Baked_a_Cake\" title=\"If I Knew You Were Comin' I'd've Baked a Cake\">If I Knew You Were Comin' I'd've Baked a Cake</a>\"",
"duration": " 2"
},
{
"date": "April 29, 1950",
"artist": "<a href=\"/wiki/Anton_Karas\" title=\"Anton Karas\">Anton Karas</a>",
"title": "\"<a href=\"/wiki/The_Third_Man_Theme\" title=\"The Third Man Theme\">The Third Man Theme</a>\"",
"duration": "11"
},
{
"date": "July 15, 1950",
"artist": "<a href=\"/wiki/Nat_King_Cole\" title=\"Nat King Cole\">Nat King Cole</a>",
"title": "\"<a href=\"/wiki/Mona_Lisa\" title=\"Mona Lisa\">Mona Lisa</a>\"",
"duration": " 5"
},
{
"date": "August 19, 1950",
"artist": "<a href=\"/wiki/Gordon_Jenkins\" title=\"Gordon Jenkins\">Gordon Jenkins</a> and <a href=\"/wiki/The_Weavers\" title=\"The Weavers\">The Weavers</a>",
"title": "\"<a href=\"/wiki/Goodnight_Irene\" title=\"Goodnight Irene\" class=\"mw-redirect\">Goodnight Irene</a>\"",
"duration": "13"
},
{
"date": "November 18, 1950",
"artist": "<a href=\"/wiki/Sammy_Kaye\" title=\"Sammy Kaye\">Sammy Kaye</a>",
"title": "\"<a href=\"/wiki/Harbor_Lights\" title=\"Harbor Lights\">Harbor Lights</a>\"",
"duration": " 2"
},
{
"date": "December 2, 1950",
"artist": "<a href=\"/wiki/Phil_Harris\" title=\"Phil Harris\">Phil Harris</a>",
"title": "\"<a href=\"/wiki/The_Thing_(song)\" title=\"The Thing (song)\">The Thing</a>\"",
"duration": " 4"
},
{
"date": "December 30, 1950",
"artist": "<a href=\"/wiki/Patti_Page\" title=\"Patti Page\">Patti Page</a>",
"title": "\"<a href=\"/wiki/The_Tennessee_Waltz\" title=\"The Tennessee Waltz\" class=\"mw-redirect\">The Tennessee Waltz</a>\"",
"duration": " 9"
},
{
"date": "March 3, 1951",
"artist": "<a href=\"/wiki/Perry_Como\" title=\"Perry Como\">Perry Como</a>",
"title": "\"<a href=\"/wiki/If_(They_Made_Me_a_King)\" title=\"If (They Made Me a King)\">If</a>\"",
"duration": " 6"
},
{
"date": "March 10, 1951",
"artist": "<a href=\"/wiki/Mario_Lanza\" title=\"Mario Lanza\">Mario Lanza</a>",
"title": "\"<a href=\"/wiki/Be_My_Love\" title=\"Be My Love\">Be My Love</a>\"",
"duration": " 1"
},
{
"date": "April 21, 1951",
"artist": "<a href=\"/wiki/Les_Paul\" title=\"Les Paul\">Les Paul</a> and <a href=\"/wiki/Mary_Ford\" title=\"Mary Ford\">Mary Ford</a>",
"title": "\"<a href=\"/wiki/How_High_The_Moon\" title=\"How High The Moon\" class=\"mw-redirect\">How High The Moon</a>\"",
"duration": " 9"
},
{
"date": "June 23, 1951",
"artist": "Nat King Cole",
"title": "\"<a href=\"/wiki/Too_Young_(popular_song)\" title=\"Too Young (popular song)\">Too Young</a>\"",
"duration": " 5"
},
{
"date": "July 28, 1951",
"artist": "<a href=\"/wiki/Rosemary_Clooney\" title=\"Rosemary Clooney\">Rosemary Clooney</a>",
"title": "\"<a href=\"/wiki/Come_On-a_My_House\" title=\"Come On-a My House\">Come On-a My House</a>\"",
"duration": " 6"
},
{
"date": "September 8, 1951",
"artist": "<a href=\"/wiki/Tony_Bennett\" title=\"Tony Bennett\">Tony Bennett</a>",
"title": "\"<a href=\"/wiki/Because_of_You_(1940_song)\" title=\"Because of You (1940 song)\">Because Of You</a>\"",
"duration": " 8"
},
{
"date": "November 3, 1951",
"artist": "Tony Bennett",
"title": "\"<a href=\"/wiki/Cold,_Cold_Heart\" title=\"Cold, Cold Heart\">Cold, Cold Heart</a>\"",
"duration": " 6"
},
{
"date": "December 15, 1951",
"artist": "<a href=\"/wiki/Eddy_Howard\" title=\"Eddy Howard\">Eddy Howard</a>",
"title": "\"<a href=\"/wiki/Sin\" title=\"Sin\">Sin</a>\"",
"duration": " 2"
},
{
"date": "December 29, 1951",
"artist": "<a href=\"/wiki/Johnnie_Ray\" title=\"Johnnie Ray\">Johnnie Ray</a> and <a href=\"/wiki/The_Four_Lads\" title=\"The Four Lads\">The Four Lads</a>",
"title": "\"<a href=\"/wiki/Cry\" title=\"Cry\" class=\"mw-redirect\">Cry</a>\"",
"duration": "11"
},
{
"date": "March 15, 1952",
"artist": "<a href=\"/wiki/Kay_Starr\" title=\"Kay Starr\">Kay Starr</a>",
"title": "\"<a href=\"/wiki/Wheel_of_Fortune_(1952_song)\" title=\"Wheel of Fortune (1952 song)\" class=\"mw-redirect\">Wheel Of Fortune</a>\"",
"duration": " 9"
},
{
"date": "May 17, 1952",
"artist": "<a href=\"/wiki/Leroy_Anderson\" title=\"Leroy Anderson\">Leroy Anderson</a>",
"title": "\"<a href=\"/wiki/Blue_Tango\" title=\"Blue Tango\">Blue Tango</a>\"",
"duration": " 5"
},
{
"date": "June 21, 1952",
"artist": "<a href=\"/wiki/Al_Martino\" title=\"Al Martino\">Al Martino</a>",
"title": "\"<a href=\"/wiki/Here_In_My_Heart\" title=\"Here In My Heart\" class=\"mw-redirect\">Here In My Heart</a>\"",
"duration": " 2"
},
{
"date": "July 5, 1952",
"artist": "<a href=\"/wiki/Percy_Faith\" title=\"Percy Faith\">Percy Faith</a>",
"title": "\"<a href=\"/wiki/Delicado\" title=\"Delicado\">Delicado</a>\"",
"duration": " 1"
},
{
"date": "July 12, 1952",
"artist": "<a href=\"/wiki/Vera_Lynn\" title=\"Vera Lynn\">Vera Lynn</a>",
"title": "\"<a href=\"/wiki/Auf_Wiederseh%27n_Sweetheart\" title=\"Auf Wiederseh'n Sweetheart\">Auf Wiederseh'n Sweetheart</a>\"",
"duration": " 9"
},
{
"date": "September 13, 1952",
"artist": "<a href=\"/wiki/Jo_Stafford\" title=\"Jo Stafford\">Jo Stafford</a>",
"title": "\"<a href=\"/wiki/You_Belong_to_Me_(1952_song)\" title=\"You Belong to Me (1952 song)\">You Belong To Me</a>\"",
"duration": " 5"
},
{
"date": "October 18, 1952",
"artist": "Patti Page",
"title": "\"<a href=\"/wiki/I_Went_To_Your_Wedding\" title=\"I Went To Your Wedding\" class=\"mw-redirect\">I Went To Your Wedding</a>\"",
"duration": " 5"
},
{
"date": "November 22, 1952",
"artist": "<a href=\"/wiki/Johnny_Standley\" title=\"Johnny Standley\">Johnny Standley</a>",
"title": "\"<a href=\"/wiki/It%27s_in_the_Book\" title=\"It's in the Book\">It's In The Book (parts 1 & 2)</a>\"",
"duration": " 1"
},
{
"date": "November 29, 1952",
"artist": "<a href=\"/wiki/Joni_James\" title=\"Joni James\">Joni James</a>",
"title": "\"<a href=\"/wiki/Why_Don%27t_You_Believe_Me\" title=\"Why Don't You Believe Me\" class=\"mw-redirect\">Why Don't You Believe Me</a>\"",
"duration": " 4"
},
{
"date": "December 27, 1952",
"artist": "<a href=\"/wiki/Jimmy_Boyd\" title=\"Jimmy Boyd\">Jimmy Boyd</a>",
"title": "\"<a href=\"/wiki/I_Saw_Mommy_Kissing_Santa_Claus\" title=\"I Saw Mommy Kissing Santa Claus\">I Saw Mommy Kissing Santa Claus</a>\"",
"duration": " 2"
},
{
"date": "January 10, 1953",
"artist": "Perry Como",
"title": "\"<a href=\"/wiki/Don%27t_Let_the_Stars_Get_in_Your_Eyes\" title=\"Don't Let the Stars Get in Your Eyes\">Don't Let the Stars Get in Your Eyes</a>\"",
"duration": " 5"
},
{
"date": "February 14, 1953",
"artist": "Teresa Brewer",
"title": "\"<a href=\"/wiki/Till_I_Waltz_Again_With_You\" title=\"Till I Waltz Again With You\" class=\"mw-redirect\">Till I Waltz Again With You</a>\"",
"duration": " 5"
},
{
"date": "March 21, 1953",
"artist": "Patti Page",
"title": "\"<a href=\"/wiki/The_Doggie_In_The_Window\" title=\"The Doggie In The Window\" class=\"mw-redirect\">The Doggie In The Window</a>\"",
"duration": " 8"
},
{
"date": "May 16, 1953",
"artist": "Percy Faith",
"title": "\"<a href=\"/wiki/The_Song_From_Moulin_Rouge_(Where_Is_Your_Heart)\" title=\"The Song From Moulin Rouge (Where Is Your Heart)\" class=\"mw-redirect\">The Song From Moulin Rouge (Where Is Your Heart)</a>\"",
"duration": "10"
},
{
"date": "July 25, 1953",
"artist": "<a href=\"/wiki/Eddie_Fisher_(singer)\" title=\"Eddie Fisher (singer)\">Eddie Fisher</a>",
"title": "\"<a href=\"/wiki/I%27m_Walking_Behind_You\" title=\"I'm Walking Behind You\">I'm Walking Behind You</a>\"",
"duration": " 2"
},
{
"date": "August 8, 1953",
"artist": "Les Paul and Mary Ford",
"title": "\"<a href=\"/wiki/Vaya_con_Dios_(song)\" title=\"Vaya con Dios (song)\">Vaya Con Dios (May God Be With You)</a>\"",
"duration": "11"
},
{
"date": "October 10, 1953",
"artist": "<a href=\"/wiki/Stan_Freberg\" title=\"Stan Freberg\">Stan Freberg</a>",
"title": "\"<a href=\"/wiki/St._George_And_The_Dragonet\" title=\"St. George And The Dragonet\" class=\"mw-redirect\">St. George And The Dragonet</a>\"",
"duration": " 4"
},
{
"date": "November 21, 1953",
"artist": "Tony Bennett",
"title": "\"<a href=\"/wiki/Rags_To_Riches\" title=\"Rags To Riches\" class=\"mw-redirect\">Rags To Riches</a>\"",
"duration": " 6"
},
{
"date": "January 2, 1954",
"artist": "Eddie Fisher",
"title": "\"<a href=\"/wiki/O_mein_Papa\" title=\"O mein Papa\">Oh! My Pa-pa (O Mein Papa)</a>\"",
"duration": " 8"
},
{
"date": "February 27, 1954",
"artist": "<a href=\"/wiki/Doris_Day\" title=\"Doris Day\">Doris Day</a>",
"title": "\"<a href=\"/wiki/Secret_Love_(Doris_Day_song)\" title=\"Secret Love (Doris Day song)\">Secret Love</a>\"",
"duration": " 3"
},
{
"date": "March 13, 1954",
"artist": "Jo Stafford",
"title": "\"<a href=\"/wiki/Make_Love_to_Me_(1954_song)\" title=\"Make Love to Me (1954 song)\">Make Love To Me!</a>\"",
"duration": " 3"
},
{
"date": "April 10, 1954",
"artist": "Perry Como",
"title": "\"<a href=\"/wiki/Wanted_(Perry_Como_song)\" title=\"Wanted (Perry Como song)\">Wanted</a>\"",
"duration": " 8"
},
{
"date": "June 5, 1954",
"artist": "<a href=\"/wiki/Kitty_Kallen\" title=\"Kitty Kallen\">Kitty Kallen</a>",
"title": "\"<a href=\"/wiki/Little_Things_Mean_A_Lot\" title=\"Little Things Mean A Lot\" class=\"mw-redirect\">Little Things Mean A Lot</a>\"",
"duration": " 9"
},
{
"date": "August 7, 1954",
"artist": "<a href=\"/wiki/The_Crew-Cuts\" title=\"The Crew-Cuts\">The Crew-Cuts</a>",
"title": "\"<a href=\"/wiki/Sh-Boom\" title=\"Sh-Boom\">Sh-Boom</a>\"",
"duration": " 7"
},
{
"date": "September 25, 1954",
"artist": "Rosemary Clooney",
"title": "\"<a href=\"/wiki/Hey_There\" title=\"Hey There\">Hey There</a>\"",
"duration": " 6"
},
{
"date": "November 6, 1954",
"artist": "Rosemary Clooney",
"title": "\"<a href=\"/wiki/This_Ole_House\" title=\"This Ole House\">This Ole House</a>\"",
"duration": " 1"
},
{
"date": "November 13, 1954",
"artist": "Eddie Fisher",
"title": "\"<a href=\"/wiki/I_Need_You_Now_(1954_song)\" title=\"I Need You Now (1954 song)\">I Need You Now</a>\"",
"duration": " 3"
},
{
"date": "December 4, 1954",
"artist": "<a href=\"/wiki/The_Chordettes\" title=\"The Chordettes\">The Chordettes</a>",
"title": "\"<a href=\"/wiki/Mr._Sandman\" title=\"Mr. Sandman\">Mr. Sandman</a>\"",
"duration": " 7"
},
{
"date": "January 22, 1955",
"artist": "<a href=\"/wiki/Joan_Weber\" title=\"Joan Weber\">Joan Weber</a>",
"title": "\"<a href=\"/wiki/Let_Me_Go,_Lover!\" title=\"Let Me Go, Lover!\">Let Me Go, Lover!</a>\"",
"duration": " 2"
},