-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchants.prod.json
More file actions
1466 lines (1466 loc) · 67.4 KB
/
chants.prod.json
File metadata and controls
1466 lines (1466 loc) · 67.4 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
[
{
"chantname": "Samayapuram",
"chanturl": "https://audio.jukehost.co.uk/c08Y9BVNVypRbYFYpyaaFQ0yJ5waFGn0",
"category": "Amman",
"textualOrigin": "Devotional hymn to Samayapuram Mariamman. Traditional Tamil composition.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Gayatri Mantra",
"chanturl": "https://audio.jukehost.co.uk/t5GXnjWEuZI86VUdKFqF2Mn0VavFz3QV",
"category": "Gayatri",
"textualOrigin": "From Rigveda (Mandala 3.62.10). Among the oldest known mantras. Entirely public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Hanuman Chaleesa",
"chanturl": "https://audio.jukehost.co.uk/MMqW837zMk4yqDWHfuZVIvGmg51FJ5Ip",
"category": "Hanuman",
"textualOrigin": "Hanuman Chalisa composed by Tulsidas (~16th century CE). Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Hanuman Mantra",
"chanturl": "https://audio.jukehost.co.uk/5T9NOPYC16aOcElxjpCdwRa5bPj0xOW2",
"category": "Hanuman",
"textualOrigin": "Traditional Mantra.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Kanakadhara Stotram",
"chanturl": "https://audio.jukehost.co.uk/PBuSxEhsDU7tNsj3Fi0prBQ2lFMoMEsv",
"category": "Lakshmi",
"textualOrigin": "Kanakadhara Stotram by Adi Shankaracharya (~8th century CE). Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Lakshmyashtottaram",
"chanturl": "https://audio.jukehost.co.uk/Wus9pTJq4uMD2czlmMjolr7dMMDxhsSX",
"category": "Lakshmi",
"textualOrigin": "Traditional Ashtottaram. Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Kandaranubooti",
"chanturl": "https://audio.jukehost.co.uk/NXFDXsBsS7MJJa8cy3QfMg6l1X5xYhLM",
"category": "Murugan",
"textualOrigin": "Tamil composition by Arunagirinathar (~15th century CE). Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Kandashastikavacham",
"chanturl": "https://audio.jukehost.co.uk/gNA2eYlUQRJRdvLiM1W2BPMamkjUhAbH",
"category": "Murugan",
"textualOrigin": "Tamil composition by Devaraya Swamigal (~19th century CE). Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 001",
"chanturl": "https://audio.jukehost.co.uk/MDSLBDACvPN34Zx0kAdweIKAqNkukxWW",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 1.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 002",
"chanturl": "https://audio.jukehost.co.uk/iER5fmxYJW24OdGWYjF3gFMzk0iP3JuU",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 2.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 003",
"chanturl": "https://audio.jukehost.co.uk/FlNO41VqUtyf1cb61JJAkIJdyPMYie4m",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 3.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 004",
"chanturl": "https://audio.jukehost.co.uk/SJ7Ql1Pielo5WchvU1vHPaynRm6OLCa8",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 4.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 005",
"chanturl": "https://audio.jukehost.co.uk/hM6RrzF26lVYJ70lB3iDo4xLGMCgdNeM",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 5.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 006",
"chanturl": "https://audio.jukehost.co.uk/6s8NmWeNDCzDpL5EevDmmpwiJzSTFOlc",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 6.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 007",
"chanturl": "https://audio.jukehost.co.uk/o1HTpBvxPvXYj7eDrEuAATvkDNNauIHb",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 7.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 008",
"chanturl": "https://audio.jukehost.co.uk/0au8yHH1xu8R6a2YxfooWXvBdgXjmchM",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 8.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 009",
"chanturl": "https://audio.jukehost.co.uk/nLsTiXhD58wUH6Td4D6RW9wka8M5kmmg",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 9.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 010",
"chanturl": "https://audio.jukehost.co.uk/daQ4OpbixsvB44OJoGbXmYBCCz0VD1cD",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 10.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 011",
"chanturl": "https://audio.jukehost.co.uk/s8N8JIWqs3KZanttRCnOV4T20tPelD4u",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 11.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 012",
"chanturl": "https://audio.jukehost.co.uk/OxpxJiH0mzdV3iIrl7TCxsbcNMXHA1yr",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 12.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 013",
"chanturl": "https://audio.jukehost.co.uk/8WUMvvzLHySyUbTOH4b8O75Ls3E3PEpM",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 13.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 014",
"chanturl": "https://audio.jukehost.co.uk/HXrh4R3Jj5FZrwp4k29ljYz8skchXSu1",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 14.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 015",
"chanturl": "https://audio.jukehost.co.uk/anYK5lLu2parKuFo89aAW5W49eeOFThj",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 15.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 016",
"chanturl": "https://audio.jukehost.co.uk/0NT77cVDgpkPTbFj7njk7ntT6Emm0kCQ",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 16.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 017",
"chanturl": "https://audio.jukehost.co.uk/dcJ3ganKoVIWU4vxDpOQR4jQOJgEriaV",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 17.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 018",
"chanturl": "https://audio.jukehost.co.uk/IfaTMmocVtDXSoUJgkqCR2Mkdjwe88pv",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 18.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 019",
"chanturl": "https://audio.jukehost.co.uk/R3s6vtaGidgmkEFYZ5kpCBfvWsxADh63",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 19.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 020",
"chanturl": "https://audio.jukehost.co.uk/OPhDxADsIwxuqdpfON2ksbDqrkuXjYET",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 20.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 021",
"chanturl": "https://audio.jukehost.co.uk/2ONrVA25yDYGT9Tbc5rI2qmlxjBg204T",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 21.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 022",
"chanturl": "https://audio.jukehost.co.uk/vPBGrPbLWlIJrkOrVi8SrYnSJv8kYBfz",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 22.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 023",
"chanturl": "https://audio.jukehost.co.uk/qKQuRwaHSs2FvX5gLLycJY2MUhKsRZDi",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 23.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 024",
"chanturl": "https://audio.jukehost.co.uk/Vx4f4KgGDGwyJyrsZT3yEPXRAY7TrWQm",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 24.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 025",
"chanturl": "https://audio.jukehost.co.uk/3vjyYjPcOHGQTIT9wvnmDTE1suSCajRR",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 25.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 026",
"chanturl": "https://audio.jukehost.co.uk/3aMJ77XuKqwFbnv5XXkPRmDoGC7NQjDP",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 26.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 027",
"chanturl": "https://audio.jukehost.co.uk/ZkdX8BALRfyAjDqzrOWQVTZq9FjIZP5W",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 27.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 028",
"chanturl": "https://audio.jukehost.co.uk/KD2DgwH3Yf45DFjwidk9MOgj2BlGpwN1",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 28.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 029",
"chanturl": "https://audio.jukehost.co.uk/KWSssoAI2zW4EHdyEnW73Go0DdLV15lU",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 29.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 030",
"chanturl": "https://audio.jukehost.co.uk/rgThLQwkIUEw6N3DmosX3CJL1wXQP1VV",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 30.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 031",
"chanturl": "https://audio.jukehost.co.uk/j97urX5Yjib3xD7HwvCmy2wjubGmqRKs",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 31.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 032",
"chanturl": "https://audio.jukehost.co.uk/1KQ1LacX6aU1EeCKBM6XGU809nsfEEx6",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 32.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 033",
"chanturl": "https://audio.jukehost.co.uk/KeFvAXWDLMqxapafXTDhpal6xABwDbty",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 33.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 034",
"chanturl": "https://audio.jukehost.co.uk/gMKEDbF5Q2M8dTSaV9v7bSQd7s1MxxKG",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 34.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 035",
"chanturl": "https://audio.jukehost.co.uk/enu6l4wBEy0rSexGs58R6WFCABqt5dj4",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 35.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 036",
"chanturl": "https://audio.jukehost.co.uk/lJyhKJOHX9tAPQmAU4xcR0Mr7zssMYXb",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 36.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 037",
"chanturl": "https://audio.jukehost.co.uk/6yV0IZW8EVbc69TmXHJrvC6uub03cYoe",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 37.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 038",
"chanturl": "https://audio.jukehost.co.uk/zldILETOS5VumGUPRPBeRoh2J4yMTLJ8",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 38.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 039",
"chanturl": "https://audio.jukehost.co.uk/RXpLoHJTXGR5B1ZzBIzA7DYgR0Rw7ct5",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 39.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 040",
"chanturl": "https://audio.jukehost.co.uk/SFomK1jeUdvWyW3B1joi8di3Edflxbrq",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 40.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 041",
"chanturl": "https://audio.jukehost.co.uk/cwK39DdsGxs8J5ahaObt3KdOUoKQikSQ",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 41.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 042",
"chanturl": "https://audio.jukehost.co.uk/cwK39DdsGxs8J5ahaObt3KdOUoKQikSQ",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 42.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 043",
"chanturl": "https://audio.jukehost.co.uk/HidIdlWHghRsjnsxkszmAdn52v6j5Ldb",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 43.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 044",
"chanturl": "https://audio.jukehost.co.uk/O7yQD83yt9JeDl7lsaTMc4Sr3D3stloB",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 44.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 045",
"chanturl": "https://audio.jukehost.co.uk/lH8k8EMbTaXKttfr8Tcjl1XzuD4j00FG",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 45.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 046",
"chanturl": "https://audio.jukehost.co.uk/fMwlzFAmeoAwknt86FS3slI3ZZQ08OAp",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 46.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 047",
"chanturl": "https://audio.jukehost.co.uk/tkhQTp6KDl8EDAdBNnJNLe6DzbgQUTIP",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 47.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 048",
"chanturl": "https://audio.jukehost.co.uk/KRU8oWnay7RAbkyWPmvfzqWIOq0f1K8S",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 48.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 049",
"chanturl": "https://audio.jukehost.co.uk/yYVEQPXT7xXSbCTHUX7rEKvPGks9ndLF",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 49.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 050",
"chanturl": "https://audio.jukehost.co.uk/KUbwjbfKCdOjcBmXdA95nzVg56UMRmB1",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 50.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 051",
"chanturl": "https://audio.jukehost.co.uk/YLrcFA5Rief9CQB9M3L07JpZA4sl1uQN",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 51.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 052",
"chanturl": "https://audio.jukehost.co.uk/WmBVaysSvwpDIsGh7X74M04OmiLQDU5c",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 52.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 053",
"chanturl": "https://audio.jukehost.co.uk/ovGcM8MgDDwnKKXliE3GDY7LqJsxXSl1",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 53.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 054",
"chanturl": "https://audio.jukehost.co.uk/u9E10bCGrBvc23rtALFZJHhZ9DXLgORY",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 54.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 055",
"chanturl": "https://audio.jukehost.co.uk/hEIPJ4eWXuyFk8gth9LkEbteUJZQmoAh",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 55.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 056",
"chanturl": "https://audio.jukehost.co.uk/x133A0bj1IjGjM78GLj8lcaSFMsYOc6h",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 56.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 057",
"chanturl": "https://audio.jukehost.co.uk/AJjuFlFGF9DitJlyHHJnNSVhKuRnwLBd",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 57.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 058",
"chanturl": "https://audio.jukehost.co.uk/69uUJ2SaLSP9OEWSq5sLVkPWeh3PpmSM",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 58.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 059",
"chanturl": "https://audio.jukehost.co.uk/C9LSV2wym7RzkburXRd9JaRePVdjdlGh",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 59.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 060",
"chanturl": "https://audio.jukehost.co.uk/XNMpc9QN5Cepc8yGG4M1FPYLsWOF9NDn",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 60.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 061",
"chanturl": "https://audio.jukehost.co.uk/QhBUibs364Z3UIYIitcMq6JlnCLx9GtA",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 61.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 062",
"chanturl": "https://audio.jukehost.co.uk/d1kUKI5vPjeYTh3OuapEjSwSkSiAey7S",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 62.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 063",
"chanturl": "https://audio.jukehost.co.uk/Dy5xnVT4N80xiQUgLeFe9V0wHccU2JL5",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 63.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 064",
"chanturl": "https://audio.jukehost.co.uk/4kHgrqfbria67eC0WXHxCxfMxBJZM1zf",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 64.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 065",
"chanturl": "https://audio.jukehost.co.uk/AmjpLTXZloFpQ2A7Hr6SDITo3kiXI4bF",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 65.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 066",
"chanturl": "https://audio.jukehost.co.uk/er7RcbFd63Be76W9yZCD0yDUUdngG0Mo",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 66.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 067",
"chanturl": "https://audio.jukehost.co.uk/eDQhXGL1s0KhzY957EGfSKDtRwolXBlZ",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 67.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 068",
"chanturl": "https://audio.jukehost.co.uk/3fqPdEisi2gYS8j1pkIHjuuqtenBdxc0",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 68.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 069",
"chanturl": "https://audio.jukehost.co.uk/xA0vnWU9dWM2QxGCmLMJjKYlGGuPgrCE",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 69.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 070",
"chanturl": "https://audio.jukehost.co.uk/zGRZnQGtpVZHvGvyC7Sf1k6F3Tof1Nfx",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 70.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 071",
"chanturl": "https://audio.jukehost.co.uk/7BM7z7wJ3uprzQtOsc4eAQPBg98aHUm0",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 71.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 072",
"chanturl": "https://audio.jukehost.co.uk/uSdBkzCjgHoW7QjLdgDZF52MYDOeLQv2",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 72.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 073",
"chanturl": "https://audio.jukehost.co.uk/z1w4nPT6oVnY0KoCtomX09u0UUnjKlx2",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 73.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 074",
"chanturl": "https://audio.jukehost.co.uk/SeDjw8o1RZcl9c8A98VRt0TgnZ8Vc8Mb",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 74.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 075",
"chanturl": "https://audio.jukehost.co.uk/wMReYzHl9kykd8BhkRzlpj83g7u38rcB",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 75.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 076",
"chanturl": "https://audio.jukehost.co.uk/zXtMBx5sTYWH8N978LUubS45OLscvrAP",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 76.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 077",
"chanturl": "https://audio.jukehost.co.uk/OFU2UhMY95PHzk7J87wy8y3BqfGmtFSX",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 77.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 078",
"chanturl": "https://audio.jukehost.co.uk/FRxe9CYf2xcjiLGO33npfIHw4ECsZdQP",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 78.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 079",
"chanturl": "https://audio.jukehost.co.uk/6OxtG8ee7aBmbBTYEUlgUPO3anyJnAJm",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 79.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 080",
"chanturl": "https://audio.jukehost.co.uk/WqDhX31SBbYI3i2AvHJuObVw8j8Qn9if",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 80.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 081",
"chanturl": "https://audio.jukehost.co.uk/VmqHcmP6MEZu721R3znTln279TzjTNyN",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 81.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 082",
"chanturl": "https://audio.jukehost.co.uk/YlFeYchjwrUmiF2DTcNtapnoUWYN74uu",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 82.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 083",
"chanturl": "https://audio.jukehost.co.uk/ZDUSu9H1oGNaLVIgPmOI605bWzqQwZ6D",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 83.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 084",
"chanturl": "https://audio.jukehost.co.uk/eq25nWFUZYho1eI4aOKcl9TEFH8eXqE7",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 84.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 085",
"chanturl": "https://audio.jukehost.co.uk/u2DhCZTsocp6ESKTdGexMwG1JYqoT2BC",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 85.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 086",
"chanturl": "https://audio.jukehost.co.uk/BiaiMUHuMZIAj2ExEtV0NT8C5ZQt6tag",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 86.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 087",
"chanturl": "https://audio.jukehost.co.uk/7uqfKwG58DFb1xo7n4QercdbvtMrXOme",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 87.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 088",
"chanturl": "https://audio.jukehost.co.uk/2rVgVb0oC9sTr1NvFhrC3JuRIR08EOzO",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 88.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 089",
"chanturl": "https://audio.jukehost.co.uk/F9WXx3szGgMY4EsmDfYte8zk5t1VLZ5t",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 89.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 090",
"chanturl": "https://audio.jukehost.co.uk/0p2oQNYFr5eu5xrmEm9VPZVBjnrYF1HY",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 90.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 091",
"chanturl": "https://audio.jukehost.co.uk/k3U7r54qN3QwUtrqbqAyFzw6QT5iFI0w",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 91.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 092",
"chanturl": "https://audio.jukehost.co.uk/OyJBAGQIREsS6PcWnbXurEgL9qBSzOK2",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 92.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 093",
"chanturl": "https://audio.jukehost.co.uk/re25WSAVb2p7wQbV57OfjS35GX0TuniC",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 93.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 094",
"chanturl": "https://audio.jukehost.co.uk/WSv7UUsaQKBrW1rtO8Q6BC0lSlIiL06S",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 94.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 095",
"chanturl": "https://audio.jukehost.co.uk/RUyxhdWVwIklwO66GRx59E9o16x1YuAc",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 95.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 096",
"chanturl": "https://audio.jukehost.co.uk/1YaZ0GrEGkJ43SYnSb72YpdXd1iQw1g4",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 96.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 097",
"chanturl": "https://audio.jukehost.co.uk/kby7beJfK5cUJM56dTZ71DeIaminknMw",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 97.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 098",
"chanturl": "https://audio.jukehost.co.uk/NINwbuJUV5l4zEHIPtdcvcTaa3pBLSwe",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 98.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 099",
"chanturl": "https://audio.jukehost.co.uk/Y5pHpou5MWYWCn4Md7MWWzcgnCl3mno9",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 99.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Narayaneeyam 100",
"chanturl": "https://audio.jukehost.co.uk/ZBULtRfL8pIdp6dZG8R3RPa1v7aO3RF8",
"category": "Vishnu",
"textualOrigin": "Composed by Melpathur Narayana Bhattathiri (~16th century CE). Dasakam 100.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Dasharatha Stotram",
"chanturl": "https://audio.jukehost.co.uk/EJoH2TmJUUngkh6e9oeVYSNB4HT37do0",
"category": "Shani",
"textualOrigin": "Navagraha stotra from Puranic tradition. Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Neelanchana",
"chanturl": "https://audio.jukehost.co.uk/5Z3J5BOH3W6Q63nxsvJOtt3OymiL3Fr5",
"category": "Shani",
"textualOrigin": "Navagraha stotra from Puranic tradition. Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Aadityahrudayam",
"chanturl": "https://audio.jukehost.co.uk/VoH5DnORFgZRex4sKs2AbceOeqKlH0qp",
"category": "Surya",
"textualOrigin": "From Valmiki Ramayana (Yuddha Kanda). Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Aadityahrudayam Core",
"chanturl": "https://audio.jukehost.co.uk/D0P7UVJCHn3GuIRr2n5Tei7krOsdTsr6",
"category": "Surya",
"textualOrigin": "From Valmiki Ramayana (Yuddha Kanda). Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Aadityahrudayam Dhyanam",
"chanturl": "https://audio.jukehost.co.uk/Lf3UbWApGIiuyOgaynK4ZYdvrPbXBIaK",
"category": "Surya",
"textualOrigin": "From Valmiki Ramayana (Yuddha Kanda). Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Aadityahrudayam Phala",
"chanturl": "https://audio.jukehost.co.uk/z4NeuVuVAK1YVCNohXHvUgHEOby1DCvY",
"category": "Surya",
"textualOrigin": "From Valmiki Ramayana (Yuddha Kanda). Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Annapoorna Stotram",
"chanturl": "https://audio.jukehost.co.uk/ihY1QveC1yu1nysvAirmx8nL6UTOabEs",
"category": "Parvathy",
"textualOrigin": "Annapoorna Stotram by Adi Shankaracharya. Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Mylai Karpagam",
"chanturl": "https://audio.jukehost.co.uk/M1771b42JXDRCQMxargcNUnxxlOEmPX0",
"category": "Parvathy",
"textualOrigin": "Tamil devotional composition. Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Varuna",
"chanturl": "https://audio.jukehost.co.uk/jSD80g799XCDH94QuxrigxAKCNkCT5Fm",
"category": "Varuna",
"textualOrigin": "Vedic hymn to Varuna from Rigveda. Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Sivapuranam",
"chanturl": "https://audio.jukehost.co.uk/Okr9pKcHxzrbo7pSt2YDZES2mHTfNppQ",
"category": "Shiva",
"textualOrigin": "Sivapuranam by Manikkavasagar (~9th century CE). Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Rudram Chamakam",
"chanturl": "https://audio.jukehost.co.uk/brUfX4SVzEqKpf1dhUonPaT6wS8lmRnc",
"category": "Shiva",
"textualOrigin": "From Krishna Yajurveda. Public domain.",
"likelyRecordingSource": "Likely SVBC (Sri Venkateswara Bhakti Channel) — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Triambakam",
"chanturl": "https://audio.jukehost.co.uk/lUhTnDctQMycPSlaNlcnjPSL3pEpdYwM",
"category": "Shiva",
"textualOrigin": "Mahamrityunjaya Mantra from Rigveda. Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Kaamaasikaashtakam",
"chanturl": "https://audio.jukehost.co.uk/ObXgOL2pLsvl96Skykkwkz1Ft8AXNiAY",
"category": "Narasimha",
"textualOrigin": "Traditional Vaishnava stotra. Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Karavalambam",
"chanturl": "https://audio.jukehost.co.uk/S5z9P9hrknUQZeQW6OhwlwyVNYQWaj6C",
"category": "Narasimha",
"textualOrigin": "Traditional Vaishnava stotra. Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Sahasranamam",
"chanturl": "https://audio.jukehost.co.uk/OwMfV5p0UOZlfvueBKX3am2lBg1Qi76r",
"category": "Narasimha",
"textualOrigin": "Traditional Vaishnava stotra. Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Sri Lakshmi Narasimha Infection Control",
"chanturl": "https://audio.jukehost.co.uk/s1EfOF2G61WpwQ11VyNaHjfvxAfWKWep",
"category": "Narasimha",
"textualOrigin": "Traditional Vaishnava stotra. Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"
},
{
"chantname": "Ugramveeram",
"chanturl": "https://audio.jukehost.co.uk/KaAInd7LyYWXntpxFP4KTwK98AKbeRt9",
"category": "Narasimha",
"textualOrigin": "Traditional Vaishnava stotra. Public domain.",
"likelyRecordingSource": "Recording artist/publisher unknown — verify before distribution",
"copyrightStatus": "Verify Recording"