-
Notifications
You must be signed in to change notification settings - Fork 31
/
codes.json
20001 lines (20001 loc) · 777 KB
/
codes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[{
"0P0000XVRM": "Franklin India Liquid Super Institutional Direct Weekly Dividend Payout"
}, {
"0P0001I2M7": "Franklin India Liquid Unclaimed Dividend Plan Growth"
}, {
"0P00005UXL": "Franklin India Liquid Institutional Weekly Dividend Payout"
}, {
"0P0001BA6F": "Franklin India Liquid-Super Institutional Plan Weekly Dividend Reinvestment"
}, {
"0P0001BA6E": "Franklin India Liquid Super Institutional Direct Weekly Dividend Reinvestment"
}, {
"0P0001IESO": "Franklin India Liquid Unclaimed Dividend Investor Education Plan Growth"
}, {
"0P0001BA6G": "Franklin India Liquid Weekly Dividend Reinvestment"
}, {
"0P00005UXN": "Franklin India Liquid-Super Institutional Plan - Growth"
}, {
"0P00005UXJ": "Franklin India Liquid Institutional Daily Dividend Reinvestment"
}, {
"0P00005UXH": "Franklin India Liquid Daily Dividend Reinvestment"
}, {
"0P0001BA6D": "Franklin India Liquid Institutional Weekly Dividend Reinvestment"
}, {
"0P00005UXO": "Franklin India Liquid-Super Institutional Plan Weekly Dividend Payout"
}, {
"0P0000NPC7": "LIC of India - Market Plus Growth"
}, {
"0P0000XX0C": "HDFC Standard Life - Pension Super Plus Fund 2012"
}, {
"0P00005WIX": "Templeton India Equity Income Fund Growth"
}, {
"0P0000XVQS": "Templeton India Equity Income Fund - Direct - Growth"
}, {
"0P0000XVQR": "Templeton India Equity Income Fund Direct Dividend Payout"
}, {
"0P0001BBF2": "Templeton India Equity Income Fund Dividend Reinvestment"
}, {
"0P00005WIW": "Templeton India Equity Income Fund Dividend Payout"
}, {
"0P0001BBF1": "Templeton India Equity Income Fund Direct Dividend Reinvestment"
}, {
"0P0000TFRQ": "Aditya Birla Sun Life - Foresight 5P Fund - I"
}, {
"0P00009PUI": "DSP World Gold Fund Dividend Payout"
}, {
"0P0001BA15": "DSP World Gold Fund Direct Plan Dividend Reinvestment"
}, {
"0P0001BA16": "DSP World Gold Fund Dividend Reinvestment"
}, {
"0P00009PUU": "DSP World Gold Fund Growth"
}, {
"0P0000XW39": "DSP World Gold Fund - Direct Plan - Growth"
}, {
"0P0000XW38": "DSP World Gold Fund Direct Plan Dividend Payout"
}, {
"0P0001BBGS": "UTI Equity Fund Regular Plan Dividend Reinvestment"
}, {
"0P0000XVSO": "UTI Equity Fund - Growth Option - Direct"
}, {
"0P0001BBGR": "UTI Equity Fund Direct Income Reinvestment"
}, {
"0P00005UYJ": "UTI Equity Fund Regular Plan Growth"
}, {
"0P00005UYI": "UTI Equity Fund Regular Plan Dividend Payout"
}, {
"0P0000XVST": "UTI Equity Fund Direct Income Payout"
}, {
"0P0000NNDJ": "Aditya Birla Sun Life - Individual Maximiser Fund"
}, {
"0P0001B9OC": "Aditya Birla Sun Life Income Fund Dividend Reinvestment Direct Plan"
}, {
"0P00015F9K": "Aditya Birla Sun Life Income Fund Dividend Payout Regular Plan"
}, {
"0P00015FQG": "Aditya Birla Sun Life Income Fund Dividend Payout Direct Plan"
}, {
"0P0000XVX1": "Aditya Birla Sun Life Income Fund Quarterly Dividend Payout Direct Plan"
}, {
"0P0000XVX0": "Aditya Birla Sun Life Income Fund Growth Direct Plan"
}, {
"0P00005V5C": "Aditya Birla Sun Life Income Fund Regular Plan Growth"
}, {
"0P0000JXFJ": "Aditya Birla Sun Life Income Fund Discipline Advantage Plan"
}, {
"0P0001B9OD": "Aditya Birla Sun Life Income Fund Quarterly Dividend Reinvestment Direct Plan"
}, {
"0P00005V5D": "Aditya Birla Sun Life Income Fund Regular Plan Quarterly Dividend Payout"
}, {
"0P0001B9OE": "Aditya Birla Sun Life Income Fund Dividend Reinvestment Regular Plan"
}, {
"0P0001B9OF": "Aditya Birla Sun Life Income Fund Regular Plan Quarterly Dividend Reinvestment"
}, {
"0P0000XVK1": "SBI Magnum Global Fund Direct Dividend Payout"
}, {
"0P00005UR8": "SBI Magnum Global Fund Regular Growth"
}, {
"0P0001BB7Y": "SBI Magnum Global Fund Regular Dividend Reinvestment"
}, {
"0P0001BB7X": "SBI Magnum Global Fund Direct Dividend Reinvestment"
}, {
"0P0000XVK5": "SBI Magnum Global Fund Direct Growth"
}, {
"0P00005UR7": "SBI Magnum Global Fund Regular Dividend Payout"
}, {
"0P0000XUYI": "ICICI Prudential Regular Savings Fund Direct Plan Growth"
}, {
"0P0001BAEV": "ICICI Prudential Regular Savings Fund Half Yearly Dividend Reinvestment"
}, {
"0P00005UMZ": "ICICI Prudential Regular Savings Fund Monthly Dividend Payout"
}, {
"0P0000XUYH": "ICICI Prudential Regular Savings Fund Direct Plan Half Yearly Dividend Payout"
}, {
"0P0000XUYJ": "ICICI Prudential Regular Savings Fund Direct Plan Quarterly Dividend Payout"
}, {
"0P0001BAEW": "ICICI Prudential Regular Savings Fund Monthly Dividend Reinvestment"
}, {
"0P0000XUYK": "ICICI Prudential Regular Savings Fund Direct Plan Monthly Dividend Payout"
}, {
"0P0000P3MA": "ICICI Prudential Regular Savings Fund Half Yearly Dividend Payout"
}, {
"0P00005UMY": "ICICI Prudential Regular Savings Fund Growth"
}, {
"0P0001BAEX": "ICICI Prudential Regular Savings Fund Quarterly Dividend Reinvestment"
}, {
"0P0001BAEU": "ICICI Prudential Regular Savings Fund Direct Plan Quarterly Dividend Reinvestment"
}, {
"0P0001BAES": "ICICI Prudential Regular Savings Fund Direct Plan Half Yearly Dividend Reinvestment"
}, {
"0P0001BAET": "ICICI Prudential Regular Savings Fund Direct Plan Monthly Dividend Reinvestment"
}, {
"0P0000P3M9": "ICICI Prudential Regular Savings Fund Quarterly Dividend Payout"
}, {
"0P0000NPK3": "Reliance Life Equity Fund 3"
}, {
"0P0001BBHP": "UTI Infrastructure Fund-Direct Income Reinvestment"
}, {
"0P0000XVT2": "UTI Infrastructure Fund-Growth Option- Direct"
}, {
"0P00005UZV": "UTI Infrastructure Fund Regular Plan Dividend Payout"
}, {
"0P0000XVSW": "UTI Infrastructure Fund-Direct Income Payout"
}, {
"0P0001BBHQ": "UTI Infrastructure Fund Regular Plan Dividend Reinvestment"
}, {
"0P00005UZX": "UTI Infrastructure Fund Regular Plan Growth"
}, {
"0P0000NPE9": "PNB Met Life - Multiplier"
}, {
"0P0000NQW6": "ICICI Prudential Life - Dynamic P/E Fund"
}, {
"0P00008TT2": "IDFC Large Cap Fund Growth"
}, {
"0P0001BAKL": "IDFC Large Cap Fund Direct Plan Dividend Reinvestment"
}, {
"0P0001BAKK": "IDFC Large Cap Fund Dividend Reinvestment"
}, {
"0P00008THT": "IDFC Large Cap Fund Dividend Payout"
}, {
"0P0000XV0H": "IDFC Large Cap Fund Direct Plan Growth"
}, {
"0P0000XWC9": "IDFC Large Cap Fund Direct Plan Dividend Payout"
}, {
"0P0001BA07": "DSP Equity Opportunities Fund Dividend Reinvestment"
}, {
"0P0000XW2G": "DSP Equity Opportunities Fund - Direct Plan - Growth"
}, {
"0P0000XW2F": "DSP Equity Opportunities Fund Direct Plan Dividend Payout"
}, {
"0P0001BA06": "DSP Equity Opportunities Fund Direct Plan Dividend Reinvestment"
}, {
"0P00005V9W": "DSP Equity Opportunities Fund Growth"
}, {
"0P00005V9X": "DSP Equity Opportunities Fund Dividend Payout"
}, {
"0P0000XW85": "HDFC Long Term Advantage Fund -Direct Plan - Growth Option"
}, {
"0P0001BA86": "HDFC Long Term Advantage Fund -Direct Plan Dividend Reinvestment Option"
}, {
"0P00005V0J": "HDFC Long Term Advantage Fund Dividend Payout"
}, {
"0P0000XW84": "HDFC Long Term Advantage Fund -Direct Plan Dividend Payout Option"
}, {
"0P0001BA87": "HDFC Long Term Advantage Fund Dividend Reinvestment"
}, {
"0P00005V0K": "HDFC Long Term Advantage Fund Growth"
}, {
"0P0000NNDV": "Aditya Birla Sun Life - Group Fixed Interest Fund"
}, {
"0P00009J3B": "HDFC Mid-Cap Opportunities Fund Dividend Payout"
}, {
"0P00009J3K": "HDFC Mid-Cap Opportunities Fund Growth"
}, {
"0P0001BA8J": "HDFC Mid-Cap Opportunities Fund Dividend Reinvestment"
}, {
"0P0000XW8F": "HDFC Mid-Cap Opportunities Fund -Direct Plan - Growth Option"
}, {
"0P0000XW8E": "HDFC Mid-Cap Opportunities Fund -Direct Plan Dividend Payout Option"
}, {
"0P0001BA8I": "HDFC Mid-Cap Opportunities Fund -Direct Plan Dividend Reinvestment Option"
}, {
"0P00005V03": "UTI Master Equity Unit Scheme Dividend Payout"
}, {
"0P0001BEQ0": "UTI Master Equity Unit Scheme Dividend Reinvestment"
}, {
"0P0000NRF6": "SBI Life - Index Fund"
}, {
"0P0001BA8N": "HDFC Hybrid Debt Quarterly Dividend Reinvestment"
}, {
"0P0000XW8G": "HDFC Hybrid Debt Direct Plan Growth Option"
}, {
"0P0000XW8J": "HDFC Hybrid Debt Direct Plan Quarterly Dividend Payout Option"
}, {
"0P0001BA8L": "HDFC Hybrid Debt Direct Plan Quarterly Dividend Reinvestment Option"
}, {
"0P0000XW8I": "HDFC Hybrid Debt Direct Plan Monthly Dividend Payout Option"
}, {
"0P00005WMY": "HDFC Hybrid Debt Growth"
}, {
"0P00005WMZ": "HDFC Hybrid Debt Monthly Dividend Payout"
}, {
"0P00005WN0": "HDFC Hybrid Debt Quarterly Dividend Payout"
}, {
"0P0001BA8K": "HDFC Hybrid Debt Direct Plan Monthly Dividend Reinvestment Option"
}, {
"0P0001BA8M": "HDFC Hybrid Debt Monthly Dividend Reinvestment"
}, {
"0P0000NNZM": "Kotak Mahindra Old Mutual Life - Kotak Dynamic Bond Fund"
}, {
"0P0001BB2V": "Nippon India Floating Rate Fund Direct Plan Monthly Dividend Reinvestment Plan"
}, {
"0P0001BB2Z": "Nippon India Floating Rate Fund Monthly Dividend Reinvestment"
}, {
"0P0001BB2U": "Nippon India Floating Rate Fund Direct Plan Dividend Reinvestment"
}, {
"0P0000XVDH": "Nippon India Floating Rate Fund Direct Plan Growth Plan"
}, {
"0P00005UOR": "Nippon India Floating Rate Fund Monthly Dividend Payout"
}, {
"0P0000XVDM": "Nippon India Floating Rate Fund Direct Plan Daily Dividend Reinvestment Plan"
}, {
"0P0001CMV6": "Nippon India Floating Rate Fund Quarterly Dividend Reinvestment"
}, {
"0P00005UOT": "Nippon India Floating Rate Fund Growth"
}, {
"0P0001BB30": "Nippon India Floating Rate Fund Weekly Dividend Reinvestment"
}, {
"0P0000ZN0V": "Nippon India Floating Rate Fund Direct Plan Dividend Payout"
}, {
"0P0001BB2X": "Nippon India Floating Rate Fund Direct Plan Weekly Dividend Reinvestment Plan"
}, {
"0P0000XXYI": "Nippon India Floating Rate Fund Direct Plan Quarterly Dividend Payout Plan"
}, {
"0P00005UOU": "Nippon India Floating Rate Fund Weekly Dividend Payout"
}, {
"0P00005UOS": "Nippon India Floating Rate Fund Daily Dividend Reinvestment"
}, {
"0P0001BB2W": "Nippon India Floating Rate Fund Direct Plan Quarterly Dividend Reinvestment Plan"
}, {
"0P0000XXYD": "Nippon India Floating Rate Fund Direct Plan Monthly Dividend Payout Plan"
}, {
"0P0001BB2Y": "Nippon India Floating Rate Fund Dividend Reinvestment"
}, {
"0P0000ZN4C": "Nippon India Floating Rate Fund Dividend Payout"
}, {
"0P0000V8K2": "Nippon India Floating Rate Fund Quarterly Dividend Payout"
}, {
"0P0000XX0N": "Nippon India Floating Rate Fund Direct Plan Weekly Dividend Payout Plan"
}, {
"0P00005WRA": "JM Value Fund Growth"
}, {
"0P0000XV3T": "JM Value Fund (Direct) Dividend Payout Option"
}, {
"0P0001BARC": "JM Value Fund Dividend Reinvestment"
}, {
"0P0001BARB": "JM Value Fund (Direct) Dividend Reinvestment Option"
}, {
"0P00009PUE": "JM Value Fund Dividend Payout"
}, {
"0P0000XV3W": "JM Value Fund (Direct) - Growth Option"
}, {
"0P0001IQ8P": "Tata Focused Equity Fund Regular Dividend Sweep"
}, {
"0P0001IQ8N": "Tata Focused Equity Fund Regular Dividend Payout"
}, {
"0P0001IQ8J": "Tata Focused Equity Fund Direct Dividend Payout"
}, {
"0P0001IQ8K": "Tata Focused Equity Fund Direct Dividend Reinvestment"
}, {
"0P0001IQ8I": "Tata Focused Equity Fund Direct Growth"
}, {
"0P0001IQ8O": "Tata Focused Equity Fund Regular Dividend Reinvestment"
}, {
"0P0001IQ8M": "Tata Focused Equity Fund Regular Growth"
}, {
"0P0001IQ8L": "Tata Focused Equity Fund Direct Dividend Sweep"
}, {
"0P00005WEZ": "SBI Bluechip Fund Regular Dividend Payout"
}, {
"0P0000XVJL": "SBI Bluechip Fund Direct Dividend Payout"
}, {
"0P0001BB6V": "SBI Bluechip Fund Direct Dividend Reinvestment"
}, {
"0P0000XVJQ": "SBI Bluechip Fund Direct Growth"
}, {
"0P0001BB6W": "SBI Bluechip Fund Regular Dividend Reinvestment"
}, {
"0P0000NPDV": "PNB Met Life - Flexi Cap Fund"
}, {
"0P0000XVWD": "Aditya Birla Sun Life Equity Fund Growth Direct Plan"
}, {
"0P0001B9NQ": "Aditya Birla Sun Life Equity Fund Dividend Reinvestment Direct Plan"
}, {
"0P0000XVWC": "Aditya Birla Sun Life Equity Fund Dividend Payout Direct Plan"
}, {
"0P0001B9NR": "Aditya Birla Sun Life Equity Fund Dividend Reinvestment"
}, {
"0P00005V62": "Aditya Birla Sun Life Equity Fund Growth"
}, {
"0P00005X31": "Aditya Birla Sun Life Equity Fund Dividend Payout"
}, {
"0P0001B9KT": "Axis Liquid Fund Direct Plan Weekly Dividend Reinvestment Option"
}, {
"0P0000M0QW": "Axis Liquid Fund Weekly Dividend Payout"
}, {
"0P0000Y1BR": "Axis Liquid Fund Direct Plan Weekly Dividend Payout Option"
}, {
"0P0000M0QX": "Axis Liquid Fund Monthly Dividend Payout"
}, {
"0P0001B9KW": "Axis Liquid Retail Weekly Dividend Reinvestment"
}, {
"0P0000Y0I9": "Axis Liquid Fund Direct Plan Monthly Dividend Payout Option"
}, {
"0P0001B9KU": "Axis Liquid Fund Monthly Dividend Reinvestment"
}, {
"0P0000NG9C": "Axis Liquid Retail Weekly Dividend Payout"
}, {
"0P0000NG99": "Axis Liquid Retail Daily Dividend Reinvestment"
}, {
"0P0000NG9B": "Axis Liquid Retail Monthly Dividend Payout"
}, {
"0P0001B9KV": "Axis Liquid Retail Monthly Dividend Reinvestment"
}, {
"0P0000M0QV": "Axis Liquid Fund Growth"
}, {
"0P0000M0QY": "Axis Liquid Fund Daily Dividend Reinvestment"
}, {
"0P0000NG9A": "Axis Liquid Retail Growth"
}, {
"0P0000XVU9": "Axis Liquid Fund Direct Plan Daily Dividend Reinvestment Option"
}, {
"0P0001B9KS": "Axis Liquid Fund Direct Plan Monthly Dividend Reinvestment Option"
}, {
"0P0001B9KX": "Axis Liquid Fund Weekly Dividend Reinvestment"
}, {
"0P0000XVUB": "Axis Liquid Fund Direct Plan Growth Option"
}, {
"0P0000VSYU": "HDFC Standard Life - Group Life Defensive Managed Fund"
}, {
"0P0000NRRP": "Max Life - High Growth Fund"
}, {
"0P0000V7DT": "India First Life - Debt Fund 1"
}, {
"0P0000XV56": "Edelweiss Large & Mid Fund Direct Plan Dividend Payout Option"
}, {
"0P00009J3Z": "Edelweiss Large & Mid Fund - Growth"
}, {
"0P00009J3U": "Edelweiss Large & Mid Fund Dividend Payout"
}, {
"0P0001BA1Y": "Edelweiss Large & Mid Fund Dividend Reinvestment"
}, {
"0P0001BA1X": "Edelweiss Large & Mid Fund Direct Plan Dividend Reinvestment Option"
}, {
"0P0000XV57": "Edelweiss Large & Mid Fund - Direct Plan - Growth Option"
}, {
"0P00005UO8": "ICICI Prudential Exports and Services Fund Growth"
}, {
"0P0000XUZ0": "ICICI Prudential Exports and Services Fund Direct Plan Dividend Payout"
}, {
"0P0001BACO": "ICICI Prudential Exports and Services Fund Dividend Reinvestment"
}, {
"0P0000XUZ1": "ICICI Prudential Exports and Services Fund Direct Plan Growth"
}, {
"0P00005UO7": "ICICI Prudential Exports and Services Fund Dividend Payout"
}, {
"0P0001BACN": "ICICI Prudential Exports and Services Fund Direct Plan Dividend Reinvestment"
}, {
"0P0000XV8H": "L&T Tax Advantage Fund Direct Plan Dividend Payout Option"
}, {
"0P0000XV8K": "L&T Tax Advantage Fund Direct Plan Growth Option"
}, {
"0P00005VCS": "L&T Tax Advantage Fund Growth"
}, {
"0P0001BAVY": "L&T Tax Advantage Fund Direct Plan Dividend Reinvestment Option"
}, {
"0P00005VCT": "L&T Tax Advantage Fund Dividend Payout"
}, {
"0P0001BAW1": "L&T Tax Advantage Fund Dividend Reinvestment"
}, {
"0P0000XW1M": "DSP Equity Fund - Direct Plan - Growth"
}, {
"0P0000XW1L": "DSP Equity Fund Direct Plan Dividend Payout"
}, {
"0P0001B9Z7": "DSP Equity Fund Dividend Reinvestment"
}, {
"0P0001B9Z6": "DSP Equity Fund Direct Plan Dividend Reinvestment"
}, {
"0P00009J3N": "DSP Equity Fund Growth"
}, {
"0P00005V93": "DSP Equity Fund Dividend Payout"
}, {
"0P0000NNG5": "IDBI Federal Life - Equity Growth Fund"
}, {
"0P0000NNFC": "HDFC Standard Life - Growth Fund Investment Pension II"
}, {
"0P0000NPEH": "PNB Met Life - Virtue Fund II"
}, {
"0P00005WFC": "SBI Large & Midcap Fund Regular Dividend Payout"
}, {
"0P00005WFD": "SBI Large & Midcap Fund Regular Growth"
}, {
"0P0001BB8N": "SBI Large & Midcap Fund Direct Dividend Reinvestment"
}, {
"0P0000XVL5": "SBI Large & Midcap Fund Direct Growth"
}, {
"0P0000XVL0": "SBI Large & Midcap Fund Direct Dividend Payout"
}, {
"0P0001BB8O": "SBI Large & Midcap Fund Regular Dividend Reinvestment"
}, {
"0P0000VSYQ": "HDFC Standard Life - Group Life Defensive Managed Fund II"
}, {
"0P0000NPCM": "LIC of India - Health Plus"
}, {
"0P0000XW2L": "DSP Midcap Fund Direct Plan Dividend Payout"
}, {
"0P00008TMN": "DSP Midcap Fund Growth"
}, {
"0P0000XW2M": "DSP Midcap Fund - Direct Plan - Growth"
}, {
"0P00008TEZ": "DSP Midcap Fund Dividend Payout"
}, {
"0P0001BA0C": "DSP Midcap Fund Direct Plan Dividend Reinvestment"
}, {
"0P0001BA0D": "DSP Midcap Fund Dividend Reinvestment"
}, {
"0P0001BAQV": "JM Arbitrage Fund (Direct) Monthly Dividend Reinvestment Option"
}, {
"0P0001BAQT": "JM Arbitrage Fund (Direct) Dividend Reinvestment Option"
}, {
"0P00008TGA": "JM Arbitrage Fund Dividend Payout"
}, {
"0P0001BAQZ": "JM Arbitrage Fund Monthly Dividend Reinvestment Option"
}, {
"0P00016GYY": "JM Arbitrage Fund Monthly Dividend Payout Option"
}, {
"0P0001BAR0": "JM Arbitrage Fund Quarterly Dividend Reinvestment Option"
}, {
"0P0000XV3S": "JM Arbitrage Fund (Direct) - Growth Option"
}, {
"0P00016GZ0": "JM Arbitrage Fund Half Yearly Dividend Payout Option"
}, {
"0P00013MAM": "JM Arbitrage Fund Bonus"
}, {
"0P00016GZ1": "JM Arbitrage Fund (Direct) Half Yearly Dividend Payout Option"
}, {
"0P0001HXY7": "JM Arbitrage Fund Bonus Option - Bonus Units"
}, {
"0P00008TMW": "JM Arbitrage Fund Growth"
}, {
"0P0001BAQU": "JM Arbitrage Fund (Direct) Half Yearly Dividend Reinvestment Option"
}, {
"0P00013LLY": "JM Arbitrage Fund (Direct) - Bonus Option"
}, {
"0P0001BAQS": "JM Arbitrage Fund (Direct) Annual Dividend Reinvestment Option"
}, {
"0P00016GZ4": "JM Arbitrage Fund (Direct) Quarterly Dividend Payout Option"
}, {
"0P0001BAQY": "JM Arbitrage Fund Half Yearly Dividend Reinvestment Option"
}, {
"0P0001551U": "JM Arbitrage Fund Annual Bonus Option - Principal Units"
}, {
"0P0001BAQX": "JM Arbitrage Fund Dividend Reinvestment"
}, {
"0P0001551Y": "JM Arbitrage Fund (Direct) - Half Yearly Bonus Option - Principal Units"
}, {
"0P0001551Z": "JM Arbitrage Fund (Direct) - Annual Bonus Option"
}, {
"0P00015521": "JM Arbitrage Fund (Direct) - Quarterly Bonus Option - Principal Units"
}, {
"0P0000XV3O": "JM Arbitrage Fund (Direct) Dividend Payout Option"
}, {
"0P00016GYX": "JM Arbitrage Fund Annual Dividend Payout Option"
}, {
"0P00016GZ3": "JM Arbitrage Fund (Direct) Annual Dividend Payout Option"
}, {
"0P0001551X": "JM Arbitrage Fund Half Yearly Bonus Option - Principal Units"
}, {
"0P0001BAQR": "JM Arbitrage Fund Annual Dividend Reinvestment Option"
}, {
"0P0001BAQW": "JM Arbitrage Fund (Direct) Quarterly Dividend Reinvestment Option"
}, {
"0P0001551W": "JM Arbitrage Fund Quarterly Bonus Option - Principal Units"
}, {
"0P00015O8V": "LIC MF Banking & Financial Services Fund Direct Growth"
}, {
"0P0001E4VL": "Mahindra Credit Risk Yojana Regular Dividend payout"
}, {
"0P0001BAKA": "IDFC Dynamic Bond Fund Direct Plan Half Yearly Dividend Reinvestment"
}, {
"0P0001ENI9": "Nippon India Fixed Horizon Fund XXXIX Series 8 Direct Dividend"
}, {
"0P0001F9QK": "Aditya BSL Fixed Term Plan Series RU Regular Growth"
}, {
"0P0001LG8R": "TrustMF Banking & PSU Debt Dire"
}, {
"0P0000Z1JH": "IIFL Dynamic Bond Fund Regular Bonus"
}, {
"0P00019SSU": "UTI Dual Advantage Fixed Term Fund Series IV-IV (1997 Days) - Direct Plan - Dividend Option"
}, {
"0P0001BAY6": "Mahindra Dhan Sanchay Equity Savings Yojana Regular Plan Dividend Reinvestment"
}, {
"0P0001B9LQ": "Baroda Credit Risk Fund Plan A Regular Monthly Dividend Reinvestment"
}, {
"0P0001I2LS": "BOI AXA Liquid Fund Unclaimed Dividend Upto 3 years"
}, {
"0P000174O2": "Essel Large & Mid Cap Fund Direct Growth"
}, {
"0P0001ECFN": "BNP Paribas India Consumption Direct Dividend Payout"
}, {
"0P0001BL91": "BNP Paribas Focused 25 Equity Direct Dividend Payout"
}, {
"0P0001H22V": "Mirae Asset Fixed Maturity Plan - Series III - 1122 Days Direct Cumulative"
}, {
"0P0001EBWP": "UTI Corporate Bond Fund Direct Flexi Dividend Reinvestment"
}, {
"0P0001BAYD": "Mirae Asset Emerging Bluechip Fund Direct Plan Dividend Reinvestment"
}, {
"0P000150PP": "Aditya Birla Sun Life Equity Savings Fund Regular Plan Growth"
}, {
"0P0001NB9N": "ICICI Prudential PSU Bond Plus "
}, {
"0P0001784T": "Tata India Consumer Fund Direct Dividend Payout"
}, {
"0P0000ADK8": "LIC MF Infrastructure Fund Dividend Payout"
}, {
"0P0001DJC4": "Nippon India Nivesh Lakshya Fund - Direct Plan - Dividend Reinvestment"
}, {
"0P0001I34U": "Tata Corporate Bond Fund Regular Plan Weekly Dividend Segregated Portfolio 1 Reinvestment"
}, {
"0P0001BAI5": "IDBI Nifty Index Fund Direct Dividend Reinvestment"
}, {
"0P0001BAUQ": "L&T Equity Savings Monthly Dividend Reinvestment"
}, {
"0P0000PUU8": "IDBI Ultra Short Term Growth"
}, {
"0P0001EI9P": "Kotak Fixed Maturity Plan Series 246 Regular Growth"
}, {
"0P0001J6FU": "IDFC Emerging Businesses Fund D"
}, {
"0P0001I6E4": "Sundaram Equity Fund Direct Dividend Reinvestment"
}, {
"0P0001KUJG": "Edelweiss MSCI India Domestic &"
}, {
"0P0001BB9I": "SBI Small Cap Fund Regular Plan Dividend Reinvestment"
}, {
"0P0001H1AP": "DSP Fixed Maturity Plan Series 251 38 Month Regular Dividend Payout"
}, {
"0P0001BBGQ": "UTI Dynamic Bond Fund Regular Plan Half Yearly Dividend Reinvestment Option"
}, {
"0P0001GZMA": "Edelweiss Banking and PSU Debt Fund Direct Plan Fortnightly Dividend Option"
}, {
"0P0001ACDY": "Indiabulls Value Fund Regular Plan Monthly Dividend Payout Option"
}, {
"0P0001DJCH": "Aditya BSL Fixed Term Plan Series QF Direct Growth"
}, {
"0P0001H07J": "UTI Fixed Term Income Fund Series XXXI-VIII 1153 Days Direct Maturity Dividend Payout"
}, {
"0P0001N4D5": "Baroda Business Cycle Fund Regu"
}, {
"0P0001M4EY": "Aditya Birla Sun Life Multi-Cap"
}, {
"0P0001ITOT": "Aditya Birla Sun Life Credit Risk Fund Segregated Portfolio 1 Regular Plan Dividend Payout"
}, {
"0P0001JMZC": "Motilal Oswal S&P 500 Index Fun"
}, {
"0P0001LVSI": "IDFC Gilt 2027 Index Fund Regul"
}, {
"0P0001CJLE": "DSP Arbitrage Fund Dividend Payout"
}, {
"0P0001BA4A": "Franklin India Banking & PSU Debt Fund Dividend Reinvestment"
}, {
"0P0001B9SD": "BOI AXA Tax Advantage Regular Dividend Reinvestment"
}, {
"0P0001ITWP": "Principal Midcap Fund Direct Gr"
}, {
"0P0001EI15": "HDFC Balanced Adv Growth"
}, {
"0P00017850": "Tata India Pharma & Healthcare Fund Regular Dividend Payout"
}, {
"0P0001N0BH": "SBI Fixed Maturity Plan (FMP) -"
}, {
"0P00014KAV": "IIFL Focused Equity Fund Direct Dividend Payout"
}, {
"0P0001DDMY": "Nippon India Fixed Horizon Fund XXXVII Series 9 Regular Dividend"
}, {
"0P0001DZDR": "Kotak Balanced Advantage Fund Direct Growth"
}, {
"0P0001HSAJ": "Sundaram Ultra Short Term Fund Direct Monthly Dividend Reinvestment"
}, {
"0P0000XVGJ": "Invesco India Banking & PSU Debt Fund - Direct Plan Daily Dividend Reinvestment"
}, {
"0P0001FIFS": "UTI Fixed Term Income Fund Series XXXI-III 1174 Days Direct Annual Dividend"
}, {
"0P0001FDXF": "Aditya BSL Fixed Term Plan Series RX Regular Dividend Payout"
}, {
"0P0001MS8Z": "Invesco India Medium Duration F"
}, {
"0P0001FFE5": "DSP Overnight Fund Regular Weekly Dividend Reinvestment"
}, {
"0P0000XW06": "Canara Robeco Consumer Trends Fund - Direct Plan - Growth"
}, {
"0P000148GS": "ICICI Prudential Constant Maturity Gilt Dividend Payout"
}, {
"0P0001KO9K": "Principal Large Cap Fund Direct"
}, {
"0P00013OLN": "Axis Credit Risk Fund Regular Monthly Dividend Payout"
}, {
"0P0001FUC6": "ICICI Prudential Fixed Maturity Plan Series 85 1156 Days Plan F Regular Quarterly Dividend Payout"
}, {
"0P0001B9MT": "Baroda Treasury Advantage Regular Weekly Dividend Reinvestment"
}, {
"0P0001HB15": "UTI-Fixed Term Income Fund - Series XXXI - XIII (1127 days) Regular Maturity Dividend Payout"
}, {
"0P0001I38H": "Mahindra Overnight Fund Direct Growth"
}, {
"0P0001F4G7": "Indiabulls Equity Hybrid Fund Direct Growth"
}, {
"0P0001I39A": "Axis Money Market Fund Regular Annual Dividend Payout"
}, {
"0P0001J4Q9": "Indiabulls Liquid Fund Direct P"
}, {
"0P0001B9MH": "Baroda Short Term Bond Fund Plan B (Direct) Quarterly Dividend Reinvestment"
}, {
"0P0001H0BT": "ICICI PrudentiaL Fixed Maturity PLan Series 85 1156 Days Plan G Regular Half Yearly Dividen Payout"
}, {
"0P0001KWOE": "Quant ESG Equity Fund Direct Re"
}, {
"0P0001E4SJ": "Edelweiss Liquid Direct Annual Dividend Payout"
}, {
"0P0001J1BQ": "Invesco India Overnight Fund Di"
}, {
"0P0000ZK6X": "Indiabulls Short Term Fund Direct Monthly Dividend Payout"
}, {
"0P0001BBDB": "Tata India Consumer Fund Regular Dividend Reinvestment"
}, {
"0P0001EI9O": "Kotak Fixed Maturity Plan Series 245 Direct Dividend"
}, {
"0P0001IYM7": "ICICI Prudential Fixed Maturity"
}, {
"0P0001BAFO": "ICICI Prudential Ultra Short Term Fund Half Yearly Dividend Reinvestment"
}, {
"0P0001HCC0": "ITI Liquid Fund Regular Monthly Dividend Reinvestment"
}, {
"0P0000XVDS": "Nippon India Gold Savings Fund - Direct Plan - Growth"
}, {
"0P0001KUJH": "Edelweiss MSCI India Domestic &"
}, {
"0P0000CNVD": "UTI Fixed Income Interval Fund Half Yearly II Regular Dividend Payout"
}, {
"0P0001FI5B": "Edelweiss Small Cap Fund Direct Dividend Reinvestment"
}, {
"0P0001GZ0E": "Nippon India Fixed Horizon Fund - XXXX - Series 19 Direct Dividend Payout"
}, {
"0P0001HO3L": "ICICI Prudential MNC Fund Direct Growth"
}, {
"0P0001FE9Z": "YES Liquid Dir Monthly DR"
}, {
"0P0001ENB1": "Aditya BSL Fixed Term Plan Series QR Direct Growth"
}, {
"0P0000PUU9": "IDBI Ultra Short Term Daily Dividend Reinvestment"
}, {
"0P0001JDFX": "ICICI Prudential Fixed Maturity"
}, {
"0P0000KPO3": "ICICI Prudential Corporate Bond Fund Fortnightly Dividend Payout"
}, {
"0P0001HCBN": "ITI Liquid Fund Direct Annually Dividend Payout"
}, {
"0P000148GW": "ICICI Prudential Constant Maturity Gilt Direct Growth"
}, {
"0P0001LSS4": "PGIM India Banking and PSU Debt"
}, {
"0P0001EBWV": "UTI Corporate Bond Fund Regular Quarterly Dividend Reinvestment"
}, {
"0P0001ITOX": "Aditya Birla Sun Life Dynamic Bond Fund SegregatedPort1 Direct Plan Growth"
}, {
"0P0000XVXW": "Aditya Birla Sun Life Pure Value Fund Growth Direct Plan"
}, {
"0P0001LMOB": "UTI Nifty200 Momentum 30 Index "
}, {
"0P0001BA3O": "Quant Focused fund Dividend Reinvestment"
}, {
"0P00014JBK": "Edelweiss Dynamic Bond Fund Direct Plan Annual Dividend Payout Option"
}, {
"0P00012D9R": "BNP Paribas Medium Term Fund Direct Growth"
}, {
"0P0001FVA8": "Aditya Birla Sun Life Retirement Fund - The 50s Plan Direct Dividend Payout"
}, {
"0P0001H3JJ": "ICICI Prudential Fixed Maturity Plan Series 85 1127 Days Plan Q Regular Half yearly Dividend Payout"
}, {
"0P0001E1W2": "IDBI Long Term Value Fund Direct Growth"
}, {
"0P0001B9TT": "Canara Robeco Ultra Short Term Fund Regular Plan- Weekly Dividend Reinvestment"
}, {
"0P0001F59Q": "Mirae Asset Equity Savings Fund Direct Dividend Payout"
}, {
"0P0001D74D": "Union Corporate Bond Fund Regul"
}, {
"0P0001BB3N": "Nippon India Index Fund Sensex Plan Annual Dividend Reinvestment"
}, {
"0P0001ER43": "HDFC FMP 1344D Oct 2018(1)-Regular Option-Quarterly Dividend Option"
}, {
"0P0000XW42": "Edelweiss Large Cap Fund Direct Plan-Dividend Payout Option"
}, {
"0P00011WHN": "UTI Banking & PSU Debt Fund Direct Quarterly Dividend Payout"
}, {
"0P0001B9ZG": "DSP Global Allocation Fund Direct Dividend Reinvestment"
}, {
"0P0000Y7XW": "IDFC Banking & PSU Debt Fund Direct Dividend Payout"
}, {
"0P0001NB9P": "ICICI Prudential PSU Bond Plus "
}, {
"0P0000PWF3": "Nippon India Index Fund - Sensex Plan - Growth"
}, {
"0P0000XV2H": "Aditya Birla Sun Life Financial Planning FOF Prudent Plan Direct Plan Dividend Payout Option"
}, {
"0P0001ENB0": "Aditya BSL Fixed Term Plan Series QR Regular Dividend"
}, {
"0P0001LVS0": "Edelweiss NIFTY PSU Bond Plus S"
}, {
"0P0001BANF": "Indiabulls Arbitrage Fund Regular Plan Yearly Dividend Reinvestment Option"
}, {
"0P0001BBHI": "UTI Credit Risk Fund Regular Plan Dividend Reinvestment"
}, {
"0P0001D8TQ": "HDFC FMP 1434D May 2018(1)-Regular Option-Quarterly Dividend Option"
}, {
"0P0000XVE9": "Nippon India Index Fund Nifty Plan Direct Plan Quarterly Dividend Payout Plan"
}, {
"0P0001ER3W": "HDFC FMP 1280D Oct 2018(1)-Regular Option-Growth Option"
}, {
"0P00019R19": "IDFC Credit Risk Fund Regular Periodic Dividend Payout"
}, {
"0P0001BAZR": "Essel Liquid Fund Regular Monthly Dividend Reinvestment"
}, {
"0P0001BACK": "ICICI Prudential Equity Savings Fund Half Yearly Dividend Reinvestment"
}, {
"0P0001N9FF": "Kotak Multicap Fund Regular Pay"
}, {
"0P0001HPM0": "UTI Fixed Term Income Fund Series XXXII-I 1126 Days Regular Annual Dividend Payout"
}, {
"0P0001KDOG": "Navi 3 in 1 Fund Direct Plan An"
}, {
"0P0001EWON": "Aditya Birla Sun Life Overnight Direct Growth"
}, {
"0P0001EKGJ": "Sundaram Money Market Direct Quarterly Dividend Sweep"
}, {
"0P0000XVDL": "Nippon India Gold Savings Fund Direct Plan Dividend Payout Option"
}, {
"0P0000XVJF": "SBI Gold Direct Plan Dividend Payout"
}, {
"0P0000POU0": "HDFC Corporate Bond Growth"
}, {
"0P0000U9KI": "DSP World Agriculture Growth"
}, {
"0P0000AEKC": "Aditya Birla Sun Life Global Real Estate Fund Dividend Payout"
}, {
"0P0000CNZI": "L&T Banking & PSU Debt fund Daily Dividend Reinvestment Option"
}, {
"0P0000ON3N": "Axis Regular Saver Fund Annual Dividend Payout"
}, {
"0P0000PUUB": "IDBI Ultra Short Term Monthly Dividend Payout"
}, {
"0P0000XUZP": "IDBI Liquid Fund Direct Daily Dividend Reinvestment"
}, {
"0P0000UDRV": "Tata Retirement Savings Conservative Fund Growth"
}, {
"0P0000SV64": "AEGON Life - Group Debt Fund"
}, {
"0P0000PUUA": "IDBI Ultra Short Term Weekly Dividend Payout"
}, {
"0P0000XV00": "IDBI Nifty Junior Index Fund Direct Growth"
}, {
"0P0000ADWI": "Aditya Birla Sun Life Pure Value Fund Growth"
}, {
"0P0000ADWQ": "JM Core 11 Fund - Growth"
}, {
"0P0000W3KT": "Taurus Banking & Financial Services Fund Dividend Payout Option"
}, {
"0P0000NOLZ": "IDFC Nifty Fund Growth"
}, {
"0P0000PTGR": "Nippon India Small Cap Fund - Growth"
}, {
"0P0000V087": "SBI Tax Advantage Fund Series II Growth"
}, {
"0P0000N9VH": "BOI AXA Manufacturing & Infra Dividend Payout"
}, {
"0P0000SBJ8": "L&T Hybrid Equity Fund Dividend Payout"
}, {
"0P0000IUDI": "Franklin India Ultra Short Bond Fund Super Institutional Weekly Dividend Reinvestment"
}, {
"0P0000OOHI": "Taurus Nifty Index Fund Dividend Payout Option"
}, {
"0P0000ADK5": "Aditya Birla Sun Life Pure Value Fund Dividend Payout"
}, {
"0P0000IX75": "Edelweiss Liquid Fund Regular Plan Monthly Dividend Payout"
}, {
"0P0000UDS0": "HDFC Gold Fund Growth"
}, {
"0P0000KPO6": "ICICI Prudential Corporate Bond Fund Weekly Dividend Payout"
}, {
"0P0000AENP": "PGIM India Insta Cash Fund Daily Dividend Reinvestment"
}, {
"0P0000XVAU": "Essel Large Cap Equity Fund Normal Direct Plan Dividend Payout Option"
}, {
"0P0000CNR9": "UTI Fixed Income Interval Fund Monthly Plan I - Regular Dividend Payout"
}, {
"0P0000RT82": "ICICI Prudential Credit Risk Fund Quarterly Dividend Payout"
}, {
"0P0000IX6S": "Canara Robeco Liquid Regular Monthly Dividend Payout"
}, {
"0P0000N0BA": "IDFC Regular Savings Fund Regular Plan Growth"
}, {
"0P0000TFOZ": "Canara Robeco Short Duration Fund Regular Monthly Dividend Payout"
}, {
"0P0000UAZS": "Essel 3 in 1 Fund Monthly Dividend Payout"
}, {
"0P0000V77Q": "IDBI Liquid Weekly Dividend Payout"
}, {
"0P0000TFYR": "Nippon India Gold Savings Fund - Growth"
}, {
"0P0000JXHI": "BOI AXA S/T Income Regular Growth"
}, {
"0P0000KRBG": "DSP World Energy Dividend Payout"
}, {
"0P0000N9YS": "Sundaram Debt Oriented Hybrid Fund Quarterly Dividend Payout"
}, {
"0P0000O3JC": "IDBI Nifty Index Growth"
}, {
"0P0000M5LY": "SBI Banking and PSU Fund Regular Plan Monthly Dividend Payout"
}, {
"0P0000XV7H": "L&T India Value Fund Direct Plan Growth Option"
}, {
"0P0000TFOY": "Canara Robeco Short Duration Fund Regular Growth"
}, {
"0P0000XV0T": "IDFC Regular Savings Fund Direct Plan Dividend Payout"
}, {
"0P0001N9T6": "SBI Fixed Maturity Plan (FMP) -"
}, {
"0P0001H3JZ": "Axis Fixed Term Plan Series 104 1112 Days Direct Quarterly Dividend Payout"
}, {
"0P0001FKYK": "SBI Debt Fund Series C - 41 (1178 Days) Direct Dividend Payout"
}, {
"0P0001K2WW": "BOI AXA Flexi Cap Fund Regular "
}, {
"0P0000TFOU": "Axis Dynamic Bond Fund Quarterly Dividend Payout"
}, {
"0P0001KUMS": "SBI Floating Rate Debt Fund Dir"
}, {
"0P0001B9T8": "Canara Robeco Liquid Regular Monthly Dividend Reinvestment"
}, {
"0P0001BAPA": "Invesco India Credit Risk Fund Regular Discretionary Dividend Reinvestment"
}, {
"0P0001BAYJ": "Mirae Asset Hybrid Equity Fund -Direct Plan-Dividend Reinvestment"
}, {
"0P0000XW14": "Canara Robeco Ultra Short Term Fund - Direct Plan- Growth option"
}, {
"0P0001H235": "UTI-Fixed Term Income Fund Series XXXI - IX 1168 Days Direct Growth"
}, {
"0P0001EP8A": "SBI Dual Advantage Fund Series XXX Direct Dividend Payout"
}, {
"0P0001EKG1": "Sundaram Money Market Regular Quarterly Dividend Payout"
}, {
"0P0001HG6G": "UTI Fixed Term Income Fund - Series XXXI-XIV 1111 Days Direct Quarterly Dividend Payout"
}, {
"0P0001B9NX": "Aditya Birla Sun Life Financial Planning FOF Prudent Dividend Reinvestment"
}, {
"0P0001F9YM": "Tata Arbitrage Fund Direct Monthly Dividend Sweep"
}, {
"0P0001F2JE": "ICICI Prudential Overnight Fund Regular Growth"
}, {
"0P0000XVW1": "Aditya Birla Sun Life Commodities Equities Fund Global Agri Plan Growth Direct Plan"
}, {
"0P0001FTM8": "HSBC Fixed Term Series 139 Regular Growth"
}, {
"0P0000IUES": "UTI Fixed Income Interval Fund Series 2 Qtly Interval Plan IV Growth"
}, {
"0P0001MK4B": "Kotak Nifty 50 Index Fund Regul"
}, {
"0P0001FIIV": "Aditya Birla Sun Life Bal Bhavishya Yojna Wealth Plan Direct Growth"
}, {
"0P0001HZ1C": "Baroda Equity Savings Fund Regular Dividend Payout"
}, {
"0P0000XUZU": "IDBI Equity Savings Direct Monthly Dividend Payout"
}, {
"0P0001J357": "Sundaram Arbitrage Fund Direct "
}, {
"0P0001EKG5": "Sundaram Money Market Direct Daily Dividend Payout"
}, {
"0P0000XW3A": "DSP World Mining Fund Direct Plan Dividend Payout"
}, {
"0P0001FAJJ": "Shriram Long Term Equity Fund Regular Dividend Payout"
}, {
"0P0001FBAO": "Nippon India Fixed Horizon Fund XXXX Series 6 Direct Dividend Payout"
}, {
"0P0000Y7XU": "IDFC Banking & PSU Debt Fund Regular Dividend Payout"
}, {
"0P00012K19": "Kotak Medium Term Regular Annual Dividend Payout"
}, {
"0P0001BA52": "Franklin India Income Opportunities Fund Dividend Reinvestment"
}, {
"0P0000KYO6": "Edelweiss Balanced Advantage Fund - Regular Plan - Growth"
}, {
"0P000101RY": "IIFL Liquid Fund Direct Growth"
}, {
"0P00011W4H": "Invesco India Feeder - Invesco Pan European Equity Fund Regular Growth"
}, {
"0P0000GBCS": "Mirae Asset Saving Fund Reg Saving Plan Monthly Dividend Payout"
}, {
"0P0001CZNU": "Essel Large & Midcap Fund-Direct Plan-Annual Dividend Reinvestment"
}, {
"0P0001EDLG": "DSP Corporate Bond Direct Monthly Dividend Reinvestment"
}, {
"0P0001KBFY": "BHARAT Bond FOF April 2031 Regu"
}, {
"0P0001EDLD": "DSP Corporate Bond Direct Dividend Reinvestment"
}, {
"0P0001KZ3O": "Mahindra Manulife Focused Equit"
}, {
"0P0001GYHA": "Axis Fixed Term Plan Series 102 1133 Days Regular Growth"
}, {
"0P0001DJQU": "IDFC Fixed Term Plan Series 152 Half Yearly Dividend"
}, {
"0P0001MSAI": "PGIM India Small Cap Fund Regul"
}, {
"0P0001B9Q8": "BNP Paribas Arbitrage Fund Regular Plan Quarterly Dividend Reinvestment"
}, {
"0P0000TFY0": "ICICI Prudential Ultra Short Term Fund Half Yearly Dividend Payout"
}, {
"0P000151C3": "UTI Credit Risk Fund Regular Plan Monthly Dividend Payout Option"
}, {
"0P0001H3K0": "Axis Fixed Term Plan Series 104 1112 Days Direct Half Yearly Dividend Payout"
}, {
"0P0001L7A6": "Baroda Banking & PSU Bond Fund "
}, {
"0P0001ESEW": "UTI Floater Dir Ann DR"
}, {
"0P0000XW1O": "DSP Focus Fund - Direct Plan - Growth"
}, {
"0P0001EPSX": "Aditya BSL Fixed Term Plan Series RH Regular Dividend"
}, {
"0P0001B9YS": "DSP Banking & PSU Debt Fund Regular Monthly Dividend Reinvestment"
}, {
"0P0001HUO6": "Nippon India Fixed Horizon Fund XLI Series 12 Direct Dividend Payout"
}, {
"0P0000GBD7": "Mirae Asset Saving Fund Reg Saving Plan Daily Dividend Reinvestment"
}, {
"0P0001EW3R": "HDFC FMP 1261D Oct 2018(1)-Direct Option-Dividend Option"
}, {
"0P0001FKYM": "SBI Debt Fund Series C - 41 (1178 Days) Regular Dividend Payout"
}, {
"0P00012IEI": "BOI AXA Equity Debt Rebalancer Direct Growth"
}, {
"0P0001BCQQ": "Axis Dynamic Equity Fund Regular Dividend Reinvestment"
}, {
"0P0001J415": "Axis ESG Equity Fund Direct Pyt"
}, {
"0P00016H70": "Mirae Asset Hybrid Equity Fund -Direct Plan-Growth"
}, {
"0P0001JFZI": "UTI Credit Risk Fund (Segregate"
}, {
"0P0001MS9G": "DSP Banking & PSU Debt Fund Reg"
}, {
"0P0001HSAQ": "Sundaram Ultra Short Term Fund Regular Daily Dividend Reinvestment"
}, {
"0P0001GY7Q": "Kotak FMP Series 263 Regular Growth"
}, {
"0P0001F1GL": "Union Value Discovery Fund Regular Growth"
}, {
"0P0001N9AR": "DSP FMP - Series 264 - 60M - 17"
}, {
"0P0001BASH": "JM Multicap Fund Dividend Reinvestment"
}, {
"0P0000XV1T": "Indiabulls Blue Chip Fund - Direct Plan - Growth Option"
}, {
"0P0001B9OT": "Aditya Birla Sun Life Medium Term Plan Quarterly Dividend Reinvestment Direct Plan"
}, {
"0P0001M4EZ": "Aditya Birla Sun Life Multi-Cap"
}, {
"0P0001BJG3": "Franklin India Ultra Short Bond Fund Direct Weekly Dividend Payout"
}, {
"0P0001EW46": "Aditya Birla SL FTP - Ser RL Direct Growth"
}, {
"0P0001FM18": "Axis Fixed Term Plan Series 101 1154 Days Regular Dividend Payout"