-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEDA_Visualisation.ipynb.txt
1471 lines (1471 loc) · 735 KB
/
EDA_Visualisation.ipynb.txt
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
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"provenance": [],
"collapsed_sections": []
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
},
"language_info": {
"name": "python"
}
},
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "6F9Bz_yZB8TT"
},
"outputs": [],
"source": [
"import requests\n",
"import pprint\n",
"\n",
"BASE_URL = \"https://ubaformapi-qyaec74aq-fastapis-build.vercel.app\"\n",
"\n",
"\n",
"def get_access_token(data):\n",
" url = BASE_URL + '/login'\n",
" headers = {\n",
" \"accept\": \"application/json\",\n",
" }\n",
" response = requests.post(url, params=data, headers=headers)\n",
" access_token = response.json()['access_token']\n",
" return access_token\n",
"\n",
"\n",
"def test_get_fromdb_owner(village_name):\n",
" url = BASE_URL + \"/api/get_data\"\n",
" signincred = {\n",
" \"AADHAR_NO\": \"***\",\n",
" \"password\": \"***\",\n",
" \"village_name\": \"None\",\n",
" \"role\": \"GOVTOff\"\n",
" }\n",
" params = {\"village_name\": f\"{village_name}\"}\n",
" headers = {\n",
" \"accept\": \"application/json\",\n",
" \"Authorization\": f\"Bearer {get_access_token(signincred)}\",\n",
" \"Content-Type\": \"application/json\",\n",
" }\n",
" response = requests.get(url=url, params=params, headers=headers)\n",
" return response.json()\n",
"\n",
"\n",
"data = test_get_fromdb_owner(\"Sehore\") # [\"Aastha\", \"Sehore\", \"string\"]\n",
"#pprint.pprint(data)\n"
]
},
{
"cell_type": "code",
"source": [
"print(data[\"data\"])"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "8DzBhAuvCTXu",
"outputId": "c867bc4a-2675-4f5d-927f-6a3656c5f046"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"{'gen_ho_info': [{'_id': '6353e6c5e10045213e4835a8', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6353e6c3e10045213e4835a6'}, {'_id': '6353f4ba5e34323ab1d52691', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6353f4ba5e34323ab1d5268f'}, {'_id': '6353fe814d4a09529d7c4601', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6353fe804d4a09529d7c45ff'}, {'_id': '63564101789e6aaf7f0ff8ce', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63564100789e6aaf7f0ff8cc'}, {'_id': '6356841c6239429e9ec61229', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6356841b6239429e9ec61227'}, {'_id': '635771f798da8b98bcddcc8c', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '635771f798da8b98bcddcc8a'}, {'_id': '63578185541ca16808edefbd', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63578184541ca16808edefbb'}, {'_id': '6357b81c267dfc8b5f2b8dba', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357b81c267dfc8b5f2b8db8'}, {'_id': '6357c46b4c76f4f25afe2d36', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357c46a4c76f4f25afe2d34'}, {'_id': '6357c4b96a86421101b0aab8', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357c4b96a86421101b0aab6'}, {'_id': '6357c735492b489bfa3e124b', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357c734492b489bfa3e1249'}, {'_id': '6357ccd9c36ac55f992f3ef2', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357ccd9c36ac55f992f3ef0'}, {'_id': '6357cf6b5d2fedc5a584cf90', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357cf6a5d2fedc5a584cf8e'}, {'_id': '6357cff95d2fedc5a584cfa0', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357cff95d2fedc5a584cf9e'}, {'_id': '6357d03bcd671b45d68ea656', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357d03bcd671b45d68ea654'}, {'_id': '6357d095cdc1e4f4ae16ca42', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357d095cdc1e4f4ae16ca40'}, {'_id': '6357d0bccdc1e4f4ae16ca53', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357d0bccdc1e4f4ae16ca51'}, {'_id': '6357d0e8cdc1e4f4ae16ca64', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357d0e8cdc1e4f4ae16ca62'}, {'_id': '6357d109e3cc3d0261f94673', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357d109e3cc3d0261f94671'}, {'_id': '6357e60e5c9b36349ae33110', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357e60e5c9b36349ae3310e'}, {'_id': '6357edccd886876adaa3327e', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357edccd886876adaa3327c'}, {'_id': '6357eef137f538cf6cf777f9', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357eef037f538cf6cf777f7'}, {'_id': '6357f109844d595746fd4e73', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357f109844d595746fd4e71'}, {'_id': '6357f15d844d595746fd4e85', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357f15c844d595746fd4e83'}, {'_id': '6357f16b844d595746fd4e96', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357f16b844d595746fd4e94'}, {'_id': '6357f60c16f2e59297778588', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357f60b16f2e59297778586'}, {'_id': '6357facd7fc70c0cb0ba4b59', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6357facc7fc70c0cb0ba4b57'}, {'_id': '6358100b0367d83c9e3ce3f3', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6358100b0367d83c9e3ce3f1'}, {'_id': '635810630367d83c9e3ce405', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '635810630367d83c9e3ce403'}, {'_id': '635810a00367d83c9e3ce417', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '635810a00367d83c9e3ce415'}, {'_id': '63581860967ab1b1de628cba', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6358185f967ab1b1de628cb8'}, {'_id': '635819662d06f7ad737f732d', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '635819652d06f7ad737f732b'}, {'_id': '6358196b5a78970cea47a878', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6358196b5a78970cea47a876'}, {'_id': '635819e65a78970cea47a888', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '635819e55a78970cea47a886'}, {'_id': '635819e82d06f7ad737f733d', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '635819e72d06f7ad737f733b'}, {'_id': '635819edd5ee746de45039c6', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '635819ecd5ee746de45039c4'}, {'_id': '63581a72d5ee746de45039d6', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63581a72d5ee746de45039d4'}, {'_id': '63581a742d06f7ad737f734d', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63581a745a78970cea47a896'}, {'_id': '63581a745a78970cea47a898', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63581a745a78970cea47a896'}, {'_id': '63581a7909f277fb51d4b912', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63581a7809f277fb51d4b910'}, {'_id': '63581b1370cdcf60ef1b8858', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63581b1370cdcf60ef1b8856'}, {'_id': '63581b5cb5ccf54f42a3299c', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63581b5bb5ccf54f42a3299a'}, {'_id': '63581baab5ccf54f42a329ae', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63581ba9b5ccf54f42a329ac'}, {'_id': '63581bbbbf490f104b895dc4', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63581bbabf490f104b895dc2'}, {'_id': '63581daf2aac1bd215a799d0', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63581dae2aac1bd215a799ce'}, {'_id': '63581db061d20d666ebd254c', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63581dab61d20d666ebd254a'}, {'_id': '63581db246a9930975397a68', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63581db146a9930975397a66'}, {'_id': '63581db24bf561302fd40202', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db280fbe76b2f1ac882', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63581db180fbe76b2f1ac880'}, {'_id': '635820704bf561302fd40218', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '6358206f4bf561302fd40216'}, {'_id': '63582070a73da3558e78da0a', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63582070a73da3558e78da08'}, {'_id': '63582075daf9147a881d293e', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63582074daf9147a881d293c'}, {'_id': '635820751e260a56ab3bc081', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63582074daf9147a881d293c'}, {'_id': '63582076941b002f4424b1e7', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63582075941b002f4424b1e5'}, {'_id': '6358207647f9eb86e30019e7', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63582075941b002f4424b1e5'}, {'_id': '635820764072210b717d7175', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '635820764072210b717d7173'}, {'_id': '635820773e0ed0491b66b3ef', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '635820764072210b717d7173'}, {'_id': '63582b532dcb5e7b99ff7f64', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63582b532dcb5e7b99ff7f62'}, {'_id': '63582c07ea95ff61fbc81436', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63582c07ea95ff61fbc81434'}, {'_id': '63583eb535eaecc64110cf77', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63583eb535eaecc64110cf75'}, {'_id': '63583eef35eaecc64110cf89', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63583eef35eaecc64110cf87'}, {'_id': '63583f3635eaecc64110cf9b', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63583f3535eaecc64110cf99'}, {'_id': '63583f7b35eaecc64110cfad', 'ho_id': 'A1', 'hoh_name': 'Dada', 'hoh_gender': 'Male', 'category': 'OBC', 'pov_status': 'BPL', 'own_house': True, 'house_type': 'pucca', 'toilet': 'Private', 'drainage_status': 'open', 'waste_collection_sys': 'doorstep', 'compost_pit': 'Individual', 'biogas_plant': 'Group', 'annual_income': 120000.0, '__id': '63583f7b35eaecc64110cfab'}], 'agri_inputs': [{'_id': '6353e6cbe10045213e4835b2', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6353e6c3e10045213e4835a6'}, {'_id': '6353f4bb5e34323ab1d5269b', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6353f4ba5e34323ab1d5268f'}, {'_id': '6353fe824d4a09529d7c460b', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6353fe804d4a09529d7c45ff'}, {'_id': '63564102789e6aaf7f0ff8d8', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63564100789e6aaf7f0ff8cc'}, {'_id': '6356841d6239429e9ec61233', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6356841b6239429e9ec61227'}, {'_id': '635771f898da8b98bcddcc96', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '635771f798da8b98bcddcc8a'}, {'_id': '63578186541ca16808edefc7', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63578184541ca16808edefbb'}, {'_id': '6357b81d267dfc8b5f2b8dc4', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357b81c267dfc8b5f2b8db8'}, {'_id': '6357c46c4c76f4f25afe2d40', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357c46a4c76f4f25afe2d34'}, {'_id': '6357c4ba6a86421101b0aac2', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357c4b96a86421101b0aab6'}, {'_id': '6357c736492b489bfa3e1255', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357c734492b489bfa3e1249'}, {'_id': '6357ccdac36ac55f992f3efc', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357ccd9c36ac55f992f3ef0'}, {'_id': '6357cf6c5d2fedc5a584cf9a', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357cf6a5d2fedc5a584cf8e'}, {'_id': '6357cffa5d2fedc5a584cfaa', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357cff95d2fedc5a584cf9e'}, {'_id': '6357d03ccd671b45d68ea660', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357d03bcd671b45d68ea654'}, {'_id': '6357d096cdc1e4f4ae16ca4c', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357d095cdc1e4f4ae16ca40'}, {'_id': '6357d0bdcdc1e4f4ae16ca5d', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357d0bccdc1e4f4ae16ca51'}, {'_id': '6357d0eacdc1e4f4ae16ca6e', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357d0e8cdc1e4f4ae16ca62'}, {'_id': '6357d10ae3cc3d0261f9467d', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357d109e3cc3d0261f94671'}, {'_id': '6357e60f5c9b36349ae3311a', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357e60e5c9b36349ae3310e'}, {'_id': '6357edced886876adaa33288', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357edccd886876adaa3327c'}, {'_id': '6357eef337f538cf6cf77803', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357eef037f538cf6cf777f7'}, {'_id': '6357f10b844d595746fd4e7d', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357f109844d595746fd4e71'}, {'_id': '6357f15e844d595746fd4e8f', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357f15c844d595746fd4e83'}, {'_id': '6357f16d844d595746fd4ea0', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357f16b844d595746fd4e94'}, {'_id': '6357f60d16f2e59297778592', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357f60b16f2e59297778586'}, {'_id': '6357face7fc70c0cb0ba4b63', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6357facc7fc70c0cb0ba4b57'}, {'_id': '6358100d0367d83c9e3ce3fd', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6358100b0367d83c9e3ce3f1'}, {'_id': '635810650367d83c9e3ce40f', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '635810630367d83c9e3ce403'}, {'_id': '635810a20367d83c9e3ce421', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '635810a00367d83c9e3ce415'}, {'_id': '63581862967ab1b1de628cc4', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6358185f967ab1b1de628cb8'}, {'_id': '635819682d06f7ad737f7337', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '635819652d06f7ad737f732b'}, {'_id': '6358196d5a78970cea47a882', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6358196b5a78970cea47a876'}, {'_id': '635819e75a78970cea47a892', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '635819e55a78970cea47a886'}, {'_id': '635819e92d06f7ad737f7347', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '635819e72d06f7ad737f733b'}, {'_id': '635819efd5ee746de45039d0', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '635819ecd5ee746de45039c4'}, {'_id': '63581a74d5ee746de45039e0', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63581a72d5ee746de45039d4'}, {'_id': '63581a762d06f7ad737f7357', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63581a745a78970cea47a896'}, {'_id': '63581a765a78970cea47a8a2', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63581a745a78970cea47a896'}, {'_id': '63581a7a09f277fb51d4b91c', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63581a7809f277fb51d4b910'}, {'_id': '63581b1570cdcf60ef1b8862', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63581b1370cdcf60ef1b8856'}, {'_id': '63581b5db5ccf54f42a329a6', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63581b5bb5ccf54f42a3299a'}, {'_id': '63581babb5ccf54f42a329b8', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63581ba9b5ccf54f42a329ac'}, {'_id': '63581bbcbf490f104b895dce', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63581bbabf490f104b895dc2'}, {'_id': '63581db02aac1bd215a799da', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63581dae2aac1bd215a799ce'}, {'_id': '63581db261d20d666ebd2556', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63581dab61d20d666ebd254a'}, {'_id': '63581db346a9930975397a72', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63581db146a9930975397a66'}, {'_id': '63581db44bf561302fd4020c', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db480fbe76b2f1ac88c', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63581db180fbe76b2f1ac880'}, {'_id': '635820724bf561302fd40222', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '6358206f4bf561302fd40216'}, {'_id': '63582072a73da3558e78da14', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63582070a73da3558e78da08'}, {'_id': '63582077daf9147a881d2948', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63582074daf9147a881d293c'}, {'_id': '635820771e260a56ab3bc08b', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63582074daf9147a881d293c'}, {'_id': '63582077941b002f4424b1f1', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63582075941b002f4424b1e5'}, {'_id': '6358207747f9eb86e30019f1', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63582075941b002f4424b1e5'}, {'_id': '635820784072210b717d717f', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '635820764072210b717d7173'}, {'_id': '635820783e0ed0491b66b3f9', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '635820764072210b717d7173'}, {'_id': '63582b542dcb5e7b99ff7f6e', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63582b532dcb5e7b99ff7f62'}, {'_id': '63582c08ea95ff61fbc81440', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63582c07ea95ff61fbc81434'}, {'_id': '63583eb735eaecc64110cf81', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63583eb535eaecc64110cf75'}, {'_id': '63583ef135eaecc64110cf93', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63583eef35eaecc64110cf87'}, {'_id': '63583f3735eaecc64110cfa5', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63583f3535eaecc64110cf99'}, {'_id': '63583f7d35eaecc64110cfb7', 'is_chemical_fertilizer_used': [True, 5.0], 'is_chemical_insecticide_used': [False, 0.0], 'is_chemical_weedice_used': [False, 0.0], 'is_chemical_organic_manuevers': [False, 0.0], 'irrigation': 'Open', 'irrigation_sys': 'Open', '__id': '63583f7b35eaecc64110cfab'}], 'source_of_energy': [{'_id': '6353e6c9e10045213e4835b0', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6353e6c3e10045213e4835a6'}, {'_id': '6353f4bb5e34323ab1d52699', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6353f4ba5e34323ab1d5268f'}, {'_id': '6353fe824d4a09529d7c4609', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6353fe804d4a09529d7c45ff'}, {'_id': '63564101789e6aaf7f0ff8d6', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63564100789e6aaf7f0ff8cc'}, {'_id': '6356841d6239429e9ec61231', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6356841b6239429e9ec61227'}, {'_id': '635771f898da8b98bcddcc94', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '635771f798da8b98bcddcc8a'}, {'_id': '63578186541ca16808edefc5', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63578184541ca16808edefbb'}, {'_id': '6357b81d267dfc8b5f2b8dc2', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357b81c267dfc8b5f2b8db8'}, {'_id': '6357c46b4c76f4f25afe2d3e', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357c46a4c76f4f25afe2d34'}, {'_id': '6357c4ba6a86421101b0aac0', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357c4b96a86421101b0aab6'}, {'_id': '6357c735492b489bfa3e1253', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357c734492b489bfa3e1249'}, {'_id': '6357ccdac36ac55f992f3efa', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357ccd9c36ac55f992f3ef0'}, {'_id': '6357cf6b5d2fedc5a584cf98', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357cf6a5d2fedc5a584cf8e'}, {'_id': '6357cffa5d2fedc5a584cfa8', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357cff95d2fedc5a584cf9e'}, {'_id': '6357d03ccd671b45d68ea65e', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357d03bcd671b45d68ea654'}, {'_id': '6357d096cdc1e4f4ae16ca4a', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357d095cdc1e4f4ae16ca40'}, {'_id': '6357d0bdcdc1e4f4ae16ca5b', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357d0bccdc1e4f4ae16ca51'}, {'_id': '6357d0e9cdc1e4f4ae16ca6c', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357d0e8cdc1e4f4ae16ca62'}, {'_id': '6357d10ae3cc3d0261f9467b', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357d109e3cc3d0261f94671'}, {'_id': '6357e60f5c9b36349ae33118', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357e60e5c9b36349ae3310e'}, {'_id': '6357edcdd886876adaa33286', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357edccd886876adaa3327c'}, {'_id': '6357eef237f538cf6cf77801', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357eef037f538cf6cf777f7'}, {'_id': '6357f10a844d595746fd4e7b', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357f109844d595746fd4e71'}, {'_id': '6357f15e844d595746fd4e8d', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357f15c844d595746fd4e83'}, {'_id': '6357f16c844d595746fd4e9e', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357f16b844d595746fd4e94'}, {'_id': '6357f60d16f2e59297778590', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357f60b16f2e59297778586'}, {'_id': '6357face7fc70c0cb0ba4b61', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6357facc7fc70c0cb0ba4b57'}, {'_id': '6358100c0367d83c9e3ce3fb', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6358100b0367d83c9e3ce3f1'}, {'_id': '635810640367d83c9e3ce40d', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '635810630367d83c9e3ce403'}, {'_id': '635810a10367d83c9e3ce41f', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '635810a00367d83c9e3ce415'}, {'_id': '63581861967ab1b1de628cc2', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6358185f967ab1b1de628cb8'}, {'_id': '635819682d06f7ad737f7335', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '635819652d06f7ad737f732b'}, {'_id': '6358196d5a78970cea47a880', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6358196b5a78970cea47a876'}, {'_id': '635819e75a78970cea47a890', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '635819e55a78970cea47a886'}, {'_id': '635819e92d06f7ad737f7345', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '635819e72d06f7ad737f733b'}, {'_id': '635819eed5ee746de45039ce', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '635819ecd5ee746de45039c4'}, {'_id': '63581a73d5ee746de45039de', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63581a72d5ee746de45039d4'}, {'_id': '63581a762d06f7ad737f7355', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63581a745a78970cea47a896'}, {'_id': '63581a765a78970cea47a8a0', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63581a745a78970cea47a896'}, {'_id': '63581a7a09f277fb51d4b91a', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63581a7809f277fb51d4b910'}, {'_id': '63581b1570cdcf60ef1b8860', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63581b1370cdcf60ef1b8856'}, {'_id': '63581b5db5ccf54f42a329a4', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63581b5bb5ccf54f42a3299a'}, {'_id': '63581babb5ccf54f42a329b6', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63581ba9b5ccf54f42a329ac'}, {'_id': '63581bbcbf490f104b895dcc', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63581bbabf490f104b895dc2'}, {'_id': '63581db02aac1bd215a799d8', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63581dae2aac1bd215a799ce'}, {'_id': '63581db161d20d666ebd2554', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63581dab61d20d666ebd254a'}, {'_id': '63581db346a9930975397a70', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63581db146a9930975397a66'}, {'_id': '63581db34bf561302fd4020a', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db380fbe76b2f1ac88a', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63581db180fbe76b2f1ac880'}, {'_id': '635820714bf561302fd40220', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '6358206f4bf561302fd40216'}, {'_id': '63582072a73da3558e78da12', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63582070a73da3558e78da08'}, {'_id': '63582076daf9147a881d2946', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63582074daf9147a881d293c'}, {'_id': '635820761e260a56ab3bc089', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63582074daf9147a881d293c'}, {'_id': '63582077941b002f4424b1ef', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63582075941b002f4424b1e5'}, {'_id': '6358207747f9eb86e30019ef', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63582075941b002f4424b1e5'}, {'_id': '635820784072210b717d717d', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '635820764072210b717d7173'}, {'_id': '635820783e0ed0491b66b3f7', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '635820764072210b717d7173'}, {'_id': '63582b542dcb5e7b99ff7f6c', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63582b532dcb5e7b99ff7f62'}, {'_id': '63582c08ea95ff61fbc8143e', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63582c07ea95ff61fbc81434'}, {'_id': '63583eb635eaecc64110cf7f', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63583eb535eaecc64110cf75'}, {'_id': '63583ef035eaecc64110cf91', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63583eef35eaecc64110cf87'}, {'_id': '63583f3735eaecc64110cfa3', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63583f3535eaecc64110cf99'}, {'_id': '63583f7d35eaecc64110cfb5', 'electricity_conn': True, 'elec_avail_perday_hour': 12, 'lighting': ['electricity'], 'cooking': ['LPG'], 'cook_chullah': 'Smokeless', 'appliances': [{'appliance_name': 'fan', 'appliance_nos': 2, 'appliance_dur': 5}, {'appliance_name': 'bulb', 'appliance_nos': 2, 'appliance_dur': 5}], '__id': '63583f7b35eaecc64110cfab'}], 'land_holding_info': [{'_id': '6353e6cae10045213e4835b1', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6353e6c3e10045213e4835a6'}, {'_id': '6353f4bb5e34323ab1d5269a', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6353f4ba5e34323ab1d5268f'}, {'_id': '6353fe824d4a09529d7c460a', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6353fe804d4a09529d7c45ff'}, {'_id': '63564102789e6aaf7f0ff8d7', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63564100789e6aaf7f0ff8cc'}, {'_id': '6356841d6239429e9ec61232', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6356841b6239429e9ec61227'}, {'_id': '635771f898da8b98bcddcc95', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '635771f798da8b98bcddcc8a'}, {'_id': '63578186541ca16808edefc6', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63578184541ca16808edefbb'}, {'_id': '6357b81d267dfc8b5f2b8dc3', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357b81c267dfc8b5f2b8db8'}, {'_id': '6357c46b4c76f4f25afe2d3f', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357c46a4c76f4f25afe2d34'}, {'_id': '6357c4ba6a86421101b0aac1', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357c4b96a86421101b0aab6'}, {'_id': '6357c736492b489bfa3e1254', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357c734492b489bfa3e1249'}, {'_id': '6357ccdac36ac55f992f3efb', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357ccd9c36ac55f992f3ef0'}, {'_id': '6357cf6c5d2fedc5a584cf99', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357cf6a5d2fedc5a584cf8e'}, {'_id': '6357cffa5d2fedc5a584cfa9', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357cff95d2fedc5a584cf9e'}, {'_id': '6357d03ccd671b45d68ea65f', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357d03bcd671b45d68ea654'}, {'_id': '6357d096cdc1e4f4ae16ca4b', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357d095cdc1e4f4ae16ca40'}, {'_id': '6357d0bdcdc1e4f4ae16ca5c', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357d0bccdc1e4f4ae16ca51'}, {'_id': '6357d0e9cdc1e4f4ae16ca6d', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357d0e8cdc1e4f4ae16ca62'}, {'_id': '6357d10ae3cc3d0261f9467c', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357d109e3cc3d0261f94671'}, {'_id': '6357e60f5c9b36349ae33119', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357e60e5c9b36349ae3310e'}, {'_id': '6357edced886876adaa33287', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357edccd886876adaa3327c'}, {'_id': '6357eef337f538cf6cf77802', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357eef037f538cf6cf777f7'}, {'_id': '6357f10b844d595746fd4e7c', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357f109844d595746fd4e71'}, {'_id': '6357f15e844d595746fd4e8e', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357f15c844d595746fd4e83'}, {'_id': '6357f16d844d595746fd4e9f', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357f16b844d595746fd4e94'}, {'_id': '6357f60d16f2e59297778591', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357f60b16f2e59297778586'}, {'_id': '6357face7fc70c0cb0ba4b62', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6357facc7fc70c0cb0ba4b57'}, {'_id': '6358100c0367d83c9e3ce3fc', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6358100b0367d83c9e3ce3f1'}, {'_id': '635810650367d83c9e3ce40e', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '635810630367d83c9e3ce403'}, {'_id': '635810a20367d83c9e3ce420', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '635810a00367d83c9e3ce415'}, {'_id': '63581861967ab1b1de628cc3', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6358185f967ab1b1de628cb8'}, {'_id': '635819682d06f7ad737f7336', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '635819652d06f7ad737f732b'}, {'_id': '6358196d5a78970cea47a881', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6358196b5a78970cea47a876'}, {'_id': '635819e75a78970cea47a891', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '635819e55a78970cea47a886'}, {'_id': '635819e92d06f7ad737f7346', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '635819e72d06f7ad737f733b'}, {'_id': '635819eed5ee746de45039cf', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '635819ecd5ee746de45039c4'}, {'_id': '63581a74d5ee746de45039df', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63581a72d5ee746de45039d4'}, {'_id': '63581a762d06f7ad737f7356', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63581a745a78970cea47a896'}, {'_id': '63581a765a78970cea47a8a1', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63581a745a78970cea47a896'}, {'_id': '63581a7a09f277fb51d4b91b', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63581a7809f277fb51d4b910'}, {'_id': '63581b1570cdcf60ef1b8861', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63581b1370cdcf60ef1b8856'}, {'_id': '63581b5db5ccf54f42a329a5', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63581b5bb5ccf54f42a3299a'}, {'_id': '63581babb5ccf54f42a329b7', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63581ba9b5ccf54f42a329ac'}, {'_id': '63581bbcbf490f104b895dcd', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63581bbabf490f104b895dc2'}, {'_id': '63581db02aac1bd215a799d9', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63581dae2aac1bd215a799ce'}, {'_id': '63581db261d20d666ebd2555', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63581dab61d20d666ebd254a'}, {'_id': '63581db346a9930975397a71', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63581db146a9930975397a66'}, {'_id': '63581db44bf561302fd4020b', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db480fbe76b2f1ac88b', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63581db180fbe76b2f1ac880'}, {'_id': '635820724bf561302fd40221', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '6358206f4bf561302fd40216'}, {'_id': '63582072a73da3558e78da13', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63582070a73da3558e78da08'}, {'_id': '63582076daf9147a881d2947', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63582074daf9147a881d293c'}, {'_id': '635820771e260a56ab3bc08a', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63582074daf9147a881d293c'}, {'_id': '63582077941b002f4424b1f0', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63582075941b002f4424b1e5'}, {'_id': '6358207747f9eb86e30019f0', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63582075941b002f4424b1e5'}, {'_id': '635820784072210b717d717e', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '635820764072210b717d7173'}, {'_id': '635820783e0ed0491b66b3f8', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '635820764072210b717d7173'}, {'_id': '63582b542dcb5e7b99ff7f6d', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63582b532dcb5e7b99ff7f62'}, {'_id': '63582c08ea95ff61fbc8143f', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63582c07ea95ff61fbc81434'}, {'_id': '63583eb735eaecc64110cf80', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63583eb535eaecc64110cf75'}, {'_id': '63583ef135eaecc64110cf92', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63583eef35eaecc64110cf87'}, {'_id': '63583f3735eaecc64110cfa4', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63583f3535eaecc64110cf99'}, {'_id': '63583f7d35eaecc64110cfb6', 'total_land': 2.0, 'irrigated_area': 0.5, 'barren_or_wasteland': 0.1, 'cultivable_area': 0.4, 'unirrigated_area': 0.3, 'uncultivable_area': 0.2, '__id': '63583f7b35eaecc64110cfab'}], 'water_source': [{'_id': '6353e6c8e10045213e4835af', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6353e6c3e10045213e4835a6'}, {'_id': '6353f4bb5e34323ab1d52698', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6353f4ba5e34323ab1d5268f'}, {'_id': '6353fe824d4a09529d7c4608', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6353fe804d4a09529d7c45ff'}, {'_id': '63564101789e6aaf7f0ff8d5', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63564100789e6aaf7f0ff8cc'}, {'_id': '6356841d6239429e9ec61230', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6356841b6239429e9ec61227'}, {'_id': '635771f898da8b98bcddcc93', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '635771f798da8b98bcddcc8a'}, {'_id': '63578186541ca16808edefc4', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63578184541ca16808edefbb'}, {'_id': '6357b81d267dfc8b5f2b8dc1', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357b81c267dfc8b5f2b8db8'}, {'_id': '6357c46b4c76f4f25afe2d3d', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357c46a4c76f4f25afe2d34'}, {'_id': '6357c4ba6a86421101b0aabf', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357c4b96a86421101b0aab6'}, {'_id': '6357c735492b489bfa3e1252', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357c734492b489bfa3e1249'}, {'_id': '6357ccdac36ac55f992f3ef9', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357ccd9c36ac55f992f3ef0'}, {'_id': '6357cf6b5d2fedc5a584cf97', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357cf6a5d2fedc5a584cf8e'}, {'_id': '6357cffa5d2fedc5a584cfa7', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357cff95d2fedc5a584cf9e'}, {'_id': '6357d03ccd671b45d68ea65d', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357d03bcd671b45d68ea654'}, {'_id': '6357d096cdc1e4f4ae16ca49', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357d095cdc1e4f4ae16ca40'}, {'_id': '6357d0bdcdc1e4f4ae16ca5a', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357d0bccdc1e4f4ae16ca51'}, {'_id': '6357d0e9cdc1e4f4ae16ca6b', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357d0e8cdc1e4f4ae16ca62'}, {'_id': '6357d10ae3cc3d0261f9467a', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357d109e3cc3d0261f94671'}, {'_id': '6357e60f5c9b36349ae33117', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357e60e5c9b36349ae3310e'}, {'_id': '6357edcdd886876adaa33285', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357edccd886876adaa3327c'}, {'_id': '6357eef237f538cf6cf77800', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357eef037f538cf6cf777f7'}, {'_id': '6357f10a844d595746fd4e7a', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357f109844d595746fd4e71'}, {'_id': '6357f15e844d595746fd4e8c', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357f15c844d595746fd4e83'}, {'_id': '6357f16c844d595746fd4e9d', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357f16b844d595746fd4e94'}, {'_id': '6357f60d16f2e5929777858f', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357f60b16f2e59297778586'}, {'_id': '6357face7fc70c0cb0ba4b60', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6357facc7fc70c0cb0ba4b57'}, {'_id': '6358100c0367d83c9e3ce3fa', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6358100b0367d83c9e3ce3f1'}, {'_id': '635810640367d83c9e3ce40c', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '635810630367d83c9e3ce403'}, {'_id': '635810a10367d83c9e3ce41e', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '635810a00367d83c9e3ce415'}, {'_id': '63581861967ab1b1de628cc1', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6358185f967ab1b1de628cb8'}, {'_id': '635819682d06f7ad737f7334', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '635819652d06f7ad737f732b'}, {'_id': '6358196c5a78970cea47a87f', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6358196b5a78970cea47a876'}, {'_id': '635819e65a78970cea47a88f', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '635819e55a78970cea47a886'}, {'_id': '635819e92d06f7ad737f7344', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '635819e72d06f7ad737f733b'}, {'_id': '635819eed5ee746de45039cd', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '635819ecd5ee746de45039c4'}, {'_id': '63581a73d5ee746de45039dd', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63581a72d5ee746de45039d4'}, {'_id': '63581a752d06f7ad737f7354', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63581a745a78970cea47a896'}, {'_id': '63581a755a78970cea47a89f', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63581a745a78970cea47a896'}, {'_id': '63581a7909f277fb51d4b919', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63581a7809f277fb51d4b910'}, {'_id': '63581b1470cdcf60ef1b885f', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63581b1370cdcf60ef1b8856'}, {'_id': '63581b5db5ccf54f42a329a3', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63581b5bb5ccf54f42a3299a'}, {'_id': '63581baab5ccf54f42a329b5', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63581ba9b5ccf54f42a329ac'}, {'_id': '63581bbcbf490f104b895dcb', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63581bbabf490f104b895dc2'}, {'_id': '63581db02aac1bd215a799d7', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63581dae2aac1bd215a799ce'}, {'_id': '63581db161d20d666ebd2553', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63581dab61d20d666ebd254a'}, {'_id': '63581db246a9930975397a6f', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63581db146a9930975397a66'}, {'_id': '63581db34bf561302fd40209', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db380fbe76b2f1ac889', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63581db180fbe76b2f1ac880'}, {'_id': '635820714bf561302fd4021f', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '6358206f4bf561302fd40216'}, {'_id': '63582071a73da3558e78da11', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63582070a73da3558e78da08'}, {'_id': '63582076daf9147a881d2945', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63582074daf9147a881d293c'}, {'_id': '635820761e260a56ab3bc088', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63582074daf9147a881d293c'}, {'_id': '63582076941b002f4424b1ee', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63582075941b002f4424b1e5'}, {'_id': '6358207747f9eb86e30019ee', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63582075941b002f4424b1e5'}, {'_id': '635820774072210b717d717c', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '635820764072210b717d7173'}, {'_id': '635820783e0ed0491b66b3f6', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '635820764072210b717d7173'}, {'_id': '63582b532dcb5e7b99ff7f6b', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63582b532dcb5e7b99ff7f62'}, {'_id': '63582c08ea95ff61fbc8143d', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63582c07ea95ff61fbc81434'}, {'_id': '63583eb635eaecc64110cf7e', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63583eb535eaecc64110cf75'}, {'_id': '63583ef035eaecc64110cf90', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63583eef35eaecc64110cf87'}, {'_id': '63583f3635eaecc64110cfa2', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63583f3535eaecc64110cf99'}, {'_id': '63583f7c35eaecc64110cfb4', 'piped_water': [True, 10], 'hand_pump': [True, 20], 'comm_water': [False, 0], 'open_well': [True, 40], 'mode_of_water_storage': 'individual', 'other_water_source': 'None', '__id': '63583f7b35eaecc64110cfab'}], 'agri_products': [{'_id': '6353e6cce10045213e4835b3', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6353e6c3e10045213e4835a6'}, {'_id': '6353f4bb5e34323ab1d5269c', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6353f4ba5e34323ab1d5268f'}, {'_id': '6353fe834d4a09529d7c460c', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6353fe804d4a09529d7c45ff'}, {'_id': '63564102789e6aaf7f0ff8d9', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63564100789e6aaf7f0ff8cc'}, {'_id': '6356841e6239429e9ec61234', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6356841b6239429e9ec61227'}, {'_id': '635771f898da8b98bcddcc97', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '635771f798da8b98bcddcc8a'}, {'_id': '63578186541ca16808edefc8', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63578184541ca16808edefbb'}, {'_id': '6357b81d267dfc8b5f2b8dc5', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357b81c267dfc8b5f2b8db8'}, {'_id': '6357c46c4c76f4f25afe2d41', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357c46a4c76f4f25afe2d34'}, {'_id': '6357c4ba6a86421101b0aac3', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357c4b96a86421101b0aab6'}, {'_id': '6357c736492b489bfa3e1256', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357c734492b489bfa3e1249'}, {'_id': '6357ccdbc36ac55f992f3efd', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357ccd9c36ac55f992f3ef0'}, {'_id': '6357cf6c5d2fedc5a584cf9b', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357cf6a5d2fedc5a584cf8e'}, {'_id': '6357cffa5d2fedc5a584cfab', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357cff95d2fedc5a584cf9e'}, {'_id': '6357d03ccd671b45d68ea661', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357d03bcd671b45d68ea654'}, {'_id': '6357d097cdc1e4f4ae16ca4d', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357d095cdc1e4f4ae16ca40'}, {'_id': '6357d0bdcdc1e4f4ae16ca5e', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357d0bccdc1e4f4ae16ca51'}, {'_id': '6357d0eacdc1e4f4ae16ca6f', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357d0e8cdc1e4f4ae16ca62'}, {'_id': '6357d10be3cc3d0261f9467e', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357d109e3cc3d0261f94671'}, {'_id': '6357e60f5c9b36349ae3311b', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357e60e5c9b36349ae3310e'}, {'_id': '6357edced886876adaa33289', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357edccd886876adaa3327c'}, {'_id': '6357eef337f538cf6cf77804', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357eef037f538cf6cf777f7'}, {'_id': '6357f10b844d595746fd4e7e', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357f109844d595746fd4e71'}, {'_id': '6357f15e844d595746fd4e90', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357f15c844d595746fd4e83'}, {'_id': '6357f16d844d595746fd4ea1', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357f16b844d595746fd4e94'}, {'_id': '6357f60e16f2e59297778593', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357f60b16f2e59297778586'}, {'_id': '6357facf7fc70c0cb0ba4b64', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6357facc7fc70c0cb0ba4b57'}, {'_id': '6358100d0367d83c9e3ce3fe', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6358100b0367d83c9e3ce3f1'}, {'_id': '635810650367d83c9e3ce410', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '635810630367d83c9e3ce403'}, {'_id': '635810a20367d83c9e3ce422', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '635810a00367d83c9e3ce415'}, {'_id': '63581862967ab1b1de628cc5', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6358185f967ab1b1de628cb8'}, {'_id': '635819692d06f7ad737f7338', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '635819652d06f7ad737f732b'}, {'_id': '6358196d5a78970cea47a883', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6358196b5a78970cea47a876'}, {'_id': '635819e75a78970cea47a893', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '635819e55a78970cea47a886'}, {'_id': '635819ea2d06f7ad737f7348', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '635819e72d06f7ad737f733b'}, {'_id': '635819efd5ee746de45039d1', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '635819ecd5ee746de45039c4'}, {'_id': '63581a74d5ee746de45039e1', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63581a72d5ee746de45039d4'}, {'_id': '63581a762d06f7ad737f7358', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63581a745a78970cea47a896'}, {'_id': '63581a765a78970cea47a8a3', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63581a745a78970cea47a896'}, {'_id': '63581a7a09f277fb51d4b91d', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63581a7809f277fb51d4b910'}, {'_id': '63581b1570cdcf60ef1b8863', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63581b1370cdcf60ef1b8856'}, {'_id': '63581b5db5ccf54f42a329a7', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63581b5bb5ccf54f42a3299a'}, {'_id': '63581babb5ccf54f42a329b9', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63581ba9b5ccf54f42a329ac'}, {'_id': '63581bbdbf490f104b895dcf', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63581bbabf490f104b895dc2'}, {'_id': '63581db12aac1bd215a799db', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63581dae2aac1bd215a799ce'}, {'_id': '63581db261d20d666ebd2557', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63581dab61d20d666ebd254a'}, {'_id': '63581db346a9930975397a73', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63581db146a9930975397a66'}, {'_id': '63581db480fbe76b2f1ac88d', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db44bf561302fd4020d', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63581db180fbe76b2f1ac880'}, {'_id': '635820724bf561302fd40223', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '6358206f4bf561302fd40216'}, {'_id': '63582072a73da3558e78da15', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63582070a73da3558e78da08'}, {'_id': '63582077daf9147a881d2949', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63582074daf9147a881d293c'}, {'_id': '635820771e260a56ab3bc08c', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63582074daf9147a881d293c'}, {'_id': '63582077941b002f4424b1f2', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63582075941b002f4424b1e5'}, {'_id': '6358207847f9eb86e30019f2', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63582075941b002f4424b1e5'}, {'_id': '635820784072210b717d7180', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '635820764072210b717d7173'}, {'_id': '635820783e0ed0491b66b3fa', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '635820764072210b717d7173'}, {'_id': '63582b542dcb5e7b99ff7f6f', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63582b532dcb5e7b99ff7f62'}, {'_id': '63582c08ea95ff61fbc81441', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63582c07ea95ff61fbc81434'}, {'_id': '63583eb735eaecc64110cf82', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63583eb535eaecc64110cf75'}, {'_id': '63583ef135eaecc64110cf94', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63583eef35eaecc64110cf87'}, {'_id': '63583f3735eaecc64110cfa6', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63583f3535eaecc64110cf99'}, {'_id': '63583f7d35eaecc64110cfb8', 'crop_name': 'rice', 'crop_area_prev_yr_acre': 0.2, 'productivity_in_quintals_per_acre': 3.0, '__id': '63583f7b35eaecc64110cfab'}], 'livestock_nos': [{'_id': '6353e6cde10045213e4835b4', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6353e6c3e10045213e4835a6'}, {'_id': '6353f4bb5e34323ab1d5269d', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6353f4ba5e34323ab1d5268f'}, {'_id': '6353fe834d4a09529d7c460d', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6353fe804d4a09529d7c45ff'}, {'_id': '63564102789e6aaf7f0ff8da', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63564100789e6aaf7f0ff8cc'}, {'_id': '6356841e6239429e9ec61235', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6356841b6239429e9ec61227'}, {'_id': '635771f898da8b98bcddcc98', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '635771f798da8b98bcddcc8a'}, {'_id': '63578187541ca16808edefc9', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63578184541ca16808edefbb'}, {'_id': '6357b81e267dfc8b5f2b8dc6', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357b81c267dfc8b5f2b8db8'}, {'_id': '6357c46c4c76f4f25afe2d42', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357c46a4c76f4f25afe2d34'}, {'_id': '6357c4bb6a86421101b0aac4', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357c4b96a86421101b0aab6'}, {'_id': '6357c736492b489bfa3e1257', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357c734492b489bfa3e1249'}, {'_id': '6357ccdbc36ac55f992f3efe', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357ccd9c36ac55f992f3ef0'}, {'_id': '6357cf6c5d2fedc5a584cf9c', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357cf6a5d2fedc5a584cf8e'}, {'_id': '6357cffa5d2fedc5a584cfac', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357cff95d2fedc5a584cf9e'}, {'_id': '6357d03dcd671b45d68ea662', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357d03bcd671b45d68ea654'}, {'_id': '6357d097cdc1e4f4ae16ca4e', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357d095cdc1e4f4ae16ca40'}, {'_id': '6357d0bdcdc1e4f4ae16ca5f', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357d0bccdc1e4f4ae16ca51'}, {'_id': '6357d0eacdc1e4f4ae16ca70', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357d0e8cdc1e4f4ae16ca62'}, {'_id': '6357d10be3cc3d0261f9467f', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357d109e3cc3d0261f94671'}, {'_id': '6357e6105c9b36349ae3311c', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357e60e5c9b36349ae3310e'}, {'_id': '6357edced886876adaa3328a', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357edccd886876adaa3327c'}, {'_id': '6357eef337f538cf6cf77805', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357eef037f538cf6cf777f7'}, {'_id': '6357f10b844d595746fd4e7f', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357f109844d595746fd4e71'}, {'_id': '6357f15f844d595746fd4e91', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357f15c844d595746fd4e83'}, {'_id': '6357f16d844d595746fd4ea2', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357f16b844d595746fd4e94'}, {'_id': '6357f60e16f2e59297778594', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357f60b16f2e59297778586'}, {'_id': '6357facf7fc70c0cb0ba4b65', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6357facc7fc70c0cb0ba4b57'}, {'_id': '6358100d0367d83c9e3ce3ff', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6358100b0367d83c9e3ce3f1'}, {'_id': '635810650367d83c9e3ce411', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '635810630367d83c9e3ce403'}, {'_id': '635810a20367d83c9e3ce423', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '635810a00367d83c9e3ce415'}, {'_id': '63581862967ab1b1de628cc6', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6358185f967ab1b1de628cb8'}, {'_id': '635819692d06f7ad737f7339', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '635819652d06f7ad737f732b'}, {'_id': '6358196e5a78970cea47a884', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6358196b5a78970cea47a876'}, {'_id': '635819e85a78970cea47a894', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '635819e55a78970cea47a886'}, {'_id': '635819ea2d06f7ad737f7349', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '635819e72d06f7ad737f733b'}, {'_id': '635819efd5ee746de45039d2', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '635819ecd5ee746de45039c4'}, {'_id': '63581a74d5ee746de45039e2', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63581a72d5ee746de45039d4'}, {'_id': '63581a772d06f7ad737f7359', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63581a745a78970cea47a896'}, {'_id': '63581a775a78970cea47a8a4', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63581a745a78970cea47a896'}, {'_id': '63581a7b09f277fb51d4b91e', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63581a7809f277fb51d4b910'}, {'_id': '63581b1570cdcf60ef1b8864', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63581b1370cdcf60ef1b8856'}, {'_id': '63581b5eb5ccf54f42a329a8', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63581b5bb5ccf54f42a3299a'}, {'_id': '63581babb5ccf54f42a329ba', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63581ba9b5ccf54f42a329ac'}, {'_id': '63581bbdbf490f104b895dd0', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63581bbabf490f104b895dc2'}, {'_id': '63581db12aac1bd215a799dc', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63581dae2aac1bd215a799ce'}, {'_id': '63581db261d20d666ebd2558', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63581dab61d20d666ebd254a'}, {'_id': '63581db446a9930975397a74', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63581db146a9930975397a66'}, {'_id': '63581db480fbe76b2f1ac88e', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db44bf561302fd4020e', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63581db180fbe76b2f1ac880'}, {'_id': '635820724bf561302fd40224', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '6358206f4bf561302fd40216'}, {'_id': '63582073a73da3558e78da16', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63582070a73da3558e78da08'}, {'_id': '63582077daf9147a881d294a', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63582074daf9147a881d293c'}, {'_id': '635820771e260a56ab3bc08d', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63582074daf9147a881d293c'}, {'_id': '63582078941b002f4424b1f3', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63582075941b002f4424b1e5'}, {'_id': '6358207847f9eb86e30019f3', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63582075941b002f4424b1e5'}, {'_id': '635820784072210b717d7181', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '635820764072210b717d7173'}, {'_id': '635820793e0ed0491b66b3fb', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '635820764072210b717d7173'}, {'_id': '63582b542dcb5e7b99ff7f70', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63582b532dcb5e7b99ff7f62'}, {'_id': '63582c08ea95ff61fbc81442', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63582c07ea95ff61fbc81434'}, {'_id': '63583eb735eaecc64110cf83', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63583eb535eaecc64110cf75'}, {'_id': '63583ef135eaecc64110cf95', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63583eef35eaecc64110cf87'}, {'_id': '63583f3835eaecc64110cfa7', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63583f3535eaecc64110cf99'}, {'_id': '63583f7d35eaecc64110cfb9', 'cows': 2, 'buffalo': 2, 'goats_and_sheeps': 0, 'calves': 1, 'bullocks': 1, 'poultry_and_ducks': 0, 'livestock_shelter': ['open'], 'avg_daily_milk_prod_litres': 5.0, 'animal_waste_or_cow_dung_kgs': 1.0, '__id': '63583f7b35eaecc64110cfab'}], 'major_problems': [{'_id': '6353e6cde10045213e4835b5', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6353e6c3e10045213e4835a6'}, {'_id': '6353f4bb5e34323ab1d5269e', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6353f4ba5e34323ab1d5268f'}, {'_id': '6353fe834d4a09529d7c460e', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6353fe804d4a09529d7c45ff'}, {'_id': '63564102789e6aaf7f0ff8db', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63564100789e6aaf7f0ff8cc'}, {'_id': '6356841e6239429e9ec61236', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6356841b6239429e9ec61227'}, {'_id': '635771f998da8b98bcddcc99', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '635771f798da8b98bcddcc8a'}, {'_id': '63578187541ca16808edefca', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63578184541ca16808edefbb'}, {'_id': '6357b81e267dfc8b5f2b8dc7', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357b81c267dfc8b5f2b8db8'}, {'_id': '6357c46c4c76f4f25afe2d43', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357c46a4c76f4f25afe2d34'}, {'_id': '6357c4bb6a86421101b0aac5', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357c4b96a86421101b0aab6'}, {'_id': '6357c736492b489bfa3e1258', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357c734492b489bfa3e1249'}, {'_id': '6357ccdbc36ac55f992f3eff', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357ccd9c36ac55f992f3ef0'}, {'_id': '6357cf6c5d2fedc5a584cf9d', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357cf6a5d2fedc5a584cf8e'}, {'_id': '6357cffa5d2fedc5a584cfad', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357cff95d2fedc5a584cf9e'}, {'_id': '6357d03dcd671b45d68ea663', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357d03bcd671b45d68ea654'}, {'_id': '6357d097cdc1e4f4ae16ca4f', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357d095cdc1e4f4ae16ca40'}, {'_id': '6357d0bdcdc1e4f4ae16ca60', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357d0bccdc1e4f4ae16ca51'}, {'_id': '6357d0eacdc1e4f4ae16ca71', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357d0e8cdc1e4f4ae16ca62'}, {'_id': '6357d10be3cc3d0261f94680', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357d109e3cc3d0261f94671'}, {'_id': '6357e6105c9b36349ae3311d', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357e60e5c9b36349ae3310e'}, {'_id': '6357edced886876adaa3328b', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357edccd886876adaa3327c'}, {'_id': '6357eef337f538cf6cf77806', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357eef037f538cf6cf777f7'}, {'_id': '6357f10b844d595746fd4e80', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357f109844d595746fd4e71'}, {'_id': '6357f15f844d595746fd4e92', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357f15c844d595746fd4e83'}, {'_id': '6357f16e844d595746fd4ea3', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357f16b844d595746fd4e94'}, {'_id': '6357f60e16f2e59297778595', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357f60b16f2e59297778586'}, {'_id': '6357facf7fc70c0cb0ba4b66', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6357facc7fc70c0cb0ba4b57'}, {'_id': '6358100d0367d83c9e3ce400', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6358100b0367d83c9e3ce3f1'}, {'_id': '635810650367d83c9e3ce412', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '635810630367d83c9e3ce403'}, {'_id': '635810a30367d83c9e3ce424', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '635810a00367d83c9e3ce415'}, {'_id': '63581862967ab1b1de628cc7', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6358185f967ab1b1de628cb8'}, {'_id': '635819692d06f7ad737f733a', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '635819652d06f7ad737f732b'}, {'_id': '6358196e5a78970cea47a885', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6358196b5a78970cea47a876'}, {'_id': '635819e85a78970cea47a895', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '635819e55a78970cea47a886'}, {'_id': '635819ea2d06f7ad737f734a', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '635819e72d06f7ad737f733b'}, {'_id': '635819efd5ee746de45039d3', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '635819ecd5ee746de45039c4'}, {'_id': '63581a74d5ee746de45039e3', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63581a72d5ee746de45039d4'}, {'_id': '63581a772d06f7ad737f735a', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63581a745a78970cea47a896'}, {'_id': '63581a775a78970cea47a8a5', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63581a745a78970cea47a896'}, {'_id': '63581a7b09f277fb51d4b91f', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63581a7809f277fb51d4b910'}, {'_id': '63581b1670cdcf60ef1b8865', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63581b1370cdcf60ef1b8856'}, {'_id': '63581b5eb5ccf54f42a329a9', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63581b5bb5ccf54f42a3299a'}, {'_id': '63581bacb5ccf54f42a329bb', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63581ba9b5ccf54f42a329ac'}, {'_id': '63581bbdbf490f104b895dd1', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63581bbabf490f104b895dc2'}, {'_id': '63581db12aac1bd215a799dd', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63581dae2aac1bd215a799ce'}, {'_id': '63581db361d20d666ebd2559', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63581dab61d20d666ebd254a'}, {'_id': '63581db446a9930975397a75', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63581db146a9930975397a66'}, {'_id': '63581db580fbe76b2f1ac88f', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db54bf561302fd4020f', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63581db180fbe76b2f1ac880'}, {'_id': '635820734bf561302fd40225', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '6358206f4bf561302fd40216'}, {'_id': '63582073a73da3558e78da17', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63582070a73da3558e78da08'}, {'_id': '63582077daf9147a881d294b', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63582074daf9147a881d293c'}, {'_id': '635820781e260a56ab3bc08e', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63582074daf9147a881d293c'}, {'_id': '63582078941b002f4424b1f4', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63582075941b002f4424b1e5'}, {'_id': '6358207847f9eb86e30019f4', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63582075941b002f4424b1e5'}, {'_id': '635820794072210b717d7182', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '635820764072210b717d7173'}, {'_id': '635820793e0ed0491b66b3fc', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '635820764072210b717d7173'}, {'_id': '63582b542dcb5e7b99ff7f71', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63582b532dcb5e7b99ff7f62'}, {'_id': '63582c09ea95ff61fbc81443', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63582c07ea95ff61fbc81434'}, {'_id': '63583eb735eaecc64110cf84', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63583eb535eaecc64110cf75'}, {'_id': '63583ef235eaecc64110cf96', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63583eef35eaecc64110cf87'}, {'_id': '63583f3835eaecc64110cfa8', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63583f3535eaecc64110cf99'}, {'_id': '63583f7e35eaecc64110cfba', 'problems': ['None'], 'Suggestions_by_villagers': ['None'], '__id': '63583f7b35eaecc64110cfab'}], 'meta': [{'_id': '6353e6c3e10045213e4835a6', 'resp_id': '8523705708935799'}, {'_id': '6353f4ba5e34323ab1d5268f', 'resp_id': '8523705708935792'}, {'_id': '6353fe804d4a09529d7c45ff', 'resp_id': '8523705708935791'}, {'_id': '63564100789e6aaf7f0ff8cc', 'resp_id': '85237057089357991'}, {'_id': '6356841b6239429e9ec61227', 'resp_id': '85237057089357992'}, {'_id': '635771f798da8b98bcddcc8a', 'resp_id': '283194308020951'}, {'_id': '63578184541ca16808edefbb', 'resp_id': '445477237436504'}, {'_id': '6357b81c267dfc8b5f2b8db8', 'resp_id': '464037672978931'}, {'_id': '6357c46a4c76f4f25afe2d34', 'resp_id': '711359135813148'}, {'_id': '6357c4b96a86421101b0aab6', 'resp_id': '374786012203713'}, {'_id': '6357c734492b489bfa3e1249', 'resp_id': '188280630183373'}, {'_id': '6357ccd9c36ac55f992f3ef0', 'resp_id': '115403962159842'}, {'_id': '6357cf6a5d2fedc5a584cf8e', 'resp_id': '954637686104458'}, {'_id': '6357cff95d2fedc5a584cf9e', 'resp_id': '647690415149399'}, {'_id': '6357d03bcd671b45d68ea654', 'resp_id': '771436699886780'}, {'_id': '6357d095cdc1e4f4ae16ca40', 'resp_id': '783175823047762'}, {'_id': '6357d0bccdc1e4f4ae16ca51', 'resp_id': '913705469118216'}, {'_id': '6357d0e8cdc1e4f4ae16ca62', 'resp_id': '361706366604272'}, {'_id': '6357d109e3cc3d0261f94671', 'resp_id': '305040848937547'}, {'_id': '6357e60e5c9b36349ae3310e', 'resp_id': '380453022074356'}, {'_id': '6357edccd886876adaa3327c', 'resp_id': '466135832026225'}, {'_id': '6357eef037f538cf6cf777f7', 'resp_id': '154013290940880'}, {'_id': '6357f109844d595746fd4e71', 'resp_id': '395251090568239'}, {'_id': '6357f15c844d595746fd4e83', 'resp_id': '542429869056119'}, {'_id': '6357f16b844d595746fd4e94', 'resp_id': '631674362638517'}, {'_id': '6357f60b16f2e59297778586', 'resp_id': '686567145746704'}, {'_id': '6357facc7fc70c0cb0ba4b57', 'resp_id': '85237057089359285'}, {'_id': '6358100b0367d83c9e3ce3f1', 'resp_id': '604024471337023'}, {'_id': '635810630367d83c9e3ce403', 'resp_id': '320165486112436'}, {'_id': '635810a00367d83c9e3ce415', 'resp_id': '899045989112072'}, {'_id': '6358185f967ab1b1de628cb8', 'resp_id': '118783174084138'}, {'_id': '635819652d06f7ad737f732b', 'resp_id': '200'}, {'_id': '6358196b5a78970cea47a876', 'resp_id': '100'}, {'_id': '635819e55a78970cea47a886', 'resp_id': '201'}, {'_id': '635819e72d06f7ad737f733b', 'resp_id': '101'}, {'_id': '635819ecd5ee746de45039c4', 'resp_id': '800'}, {'_id': '63581a72d5ee746de45039d4', 'resp_id': '328'}, {'_id': '63581a742d06f7ad737f734b', 'resp_id': '45'}, {'_id': '63581a745a78970cea47a896', 'resp_id': '726'}, {'_id': '63581a7809f277fb51d4b910', 'resp_id': '801'}, {'_id': '63581b1370cdcf60ef1b8856', 'resp_id': '143251646409019'}, {'_id': '63581b5bb5ccf54f42a3299a', 'resp_id': '455461767109171'}, {'_id': '63581ba9b5ccf54f42a329ac', 'resp_id': '544820287852342'}, {'_id': '63581bbabf490f104b895dc2', 'resp_id': '263791898829717'}, {'_id': '63581dab61d20d666ebd254a', 'resp_id': '732'}, {'_id': '63581dae2aac1bd215a799ce', 'resp_id': '982'}, {'_id': '63581db146a9930975397a66', 'resp_id': '799'}, {'_id': '63581db14bf561302fd40200', 'resp_id': '521'}, {'_id': '63581db180fbe76b2f1ac880', 'resp_id': '563'}, {'_id': '6358206f4bf561302fd40216', 'resp_id': '477'}, {'_id': '63582070a73da3558e78da08', 'resp_id': '5799'}, {'_id': '63582074daf9147a881d293c', 'resp_id': '239'}, {'_id': '635820741e260a56ab3bc07f', 'resp_id': '565'}, {'_id': '63582075941b002f4424b1e5', 'resp_id': '511'}, {'_id': '6358207547f9eb86e30019e5', 'resp_id': '873'}, {'_id': '635820764072210b717d7173', 'resp_id': '8523'}, {'_id': '635820763e0ed0491b66b3ed', 'resp_id': '769'}, {'_id': '63582b532dcb5e7b99ff7f62', 'resp_id': '8799'}, {'_id': '63582c07ea95ff61fbc81434', 'resp_id': '123323'}, {'_id': '63583eb535eaecc64110cf75', 'resp_id': '964962717684255'}, {'_id': '63583eef35eaecc64110cf87', 'resp_id': '400190652080677'}, {'_id': '63583f3535eaecc64110cf99', 'resp_id': '820756452519558'}, {'_id': '63583f7b35eaecc64110cfab', 'resp_id': '460371634161390'}], 'govt_schemes': [{'_id': '6353e6c7e10045213e4835ae', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6353e6c3e10045213e4835a6'}, {'_id': '6353f4ba5e34323ab1d52697', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6353f4ba5e34323ab1d5268f'}, {'_id': '6353fe814d4a09529d7c4607', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6353fe804d4a09529d7c45ff'}, {'_id': '63564101789e6aaf7f0ff8d4', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63564100789e6aaf7f0ff8cc'}, {'_id': '6356841c6239429e9ec6122f', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6356841b6239429e9ec61227'}, {'_id': '635771f898da8b98bcddcc92', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '635771f798da8b98bcddcc8a'}, {'_id': '63578185541ca16808edefc3', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63578184541ca16808edefbb'}, {'_id': '6357b81d267dfc8b5f2b8dc0', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357b81c267dfc8b5f2b8db8'}, {'_id': '6357c46b4c76f4f25afe2d3c', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357c46a4c76f4f25afe2d34'}, {'_id': '6357c4ba6a86421101b0aabe', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357c4b96a86421101b0aab6'}, {'_id': '6357c735492b489bfa3e1251', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357c734492b489bfa3e1249'}, {'_id': '6357ccdac36ac55f992f3ef8', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357ccd9c36ac55f992f3ef0'}, {'_id': '6357cf6b5d2fedc5a584cf96', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357cf6a5d2fedc5a584cf8e'}, {'_id': '6357cffa5d2fedc5a584cfa6', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357cff95d2fedc5a584cf9e'}, {'_id': '6357d03ccd671b45d68ea65c', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357d03bcd671b45d68ea654'}, {'_id': '6357d096cdc1e4f4ae16ca48', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357d095cdc1e4f4ae16ca40'}, {'_id': '6357d0bdcdc1e4f4ae16ca59', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357d0bccdc1e4f4ae16ca51'}, {'_id': '6357d0e9cdc1e4f4ae16ca6a', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357d0e8cdc1e4f4ae16ca62'}, {'_id': '6357d10ae3cc3d0261f94679', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357d109e3cc3d0261f94671'}, {'_id': '6357e60f5c9b36349ae33116', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357e60e5c9b36349ae3310e'}, {'_id': '6357edcdd886876adaa33284', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357edccd886876adaa3327c'}, {'_id': '6357eef237f538cf6cf777ff', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357eef037f538cf6cf777f7'}, {'_id': '6357f10a844d595746fd4e79', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357f109844d595746fd4e71'}, {'_id': '6357f15d844d595746fd4e8b', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357f15c844d595746fd4e83'}, {'_id': '6357f16c844d595746fd4e9c', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357f16b844d595746fd4e94'}, {'_id': '6357f60d16f2e5929777858e', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357f60b16f2e59297778586'}, {'_id': '6357facd7fc70c0cb0ba4b5f', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6357facc7fc70c0cb0ba4b57'}, {'_id': '6358100c0367d83c9e3ce3f9', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6358100b0367d83c9e3ce3f1'}, {'_id': '635810640367d83c9e3ce40b', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '635810630367d83c9e3ce403'}, {'_id': '635810a10367d83c9e3ce41d', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '635810a00367d83c9e3ce415'}, {'_id': '63581861967ab1b1de628cc0', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6358185f967ab1b1de628cb8'}, {'_id': '635819672d06f7ad737f7333', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '635819652d06f7ad737f732b'}, {'_id': '6358196c5a78970cea47a87e', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6358196b5a78970cea47a876'}, {'_id': '635819e65a78970cea47a88e', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '635819e55a78970cea47a886'}, {'_id': '635819e82d06f7ad737f7343', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '635819e72d06f7ad737f733b'}, {'_id': '635819eed5ee746de45039cc', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '635819ecd5ee746de45039c4'}, {'_id': '63581a73d5ee746de45039dc', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63581a72d5ee746de45039d4'}, {'_id': '63581a752d06f7ad737f7353', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63581a745a78970cea47a896'}, {'_id': '63581a755a78970cea47a89e', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63581a745a78970cea47a896'}, {'_id': '63581a7909f277fb51d4b918', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63581a7809f277fb51d4b910'}, {'_id': '63581b1470cdcf60ef1b885e', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63581b1370cdcf60ef1b8856'}, {'_id': '63581b5cb5ccf54f42a329a2', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63581b5bb5ccf54f42a3299a'}, {'_id': '63581baab5ccf54f42a329b4', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63581ba9b5ccf54f42a329ac'}, {'_id': '63581bbbbf490f104b895dca', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63581bbabf490f104b895dc2'}, {'_id': '63581daf2aac1bd215a799d6', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63581dae2aac1bd215a799ce'}, {'_id': '63581db161d20d666ebd2552', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63581dab61d20d666ebd254a'}, {'_id': '63581db246a9930975397a6e', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63581db146a9930975397a66'}, {'_id': '63581db34bf561302fd40208', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db380fbe76b2f1ac888', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63581db180fbe76b2f1ac880'}, {'_id': '635820714bf561302fd4021e', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '6358206f4bf561302fd40216'}, {'_id': '63582071a73da3558e78da10', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63582070a73da3558e78da08'}, {'_id': '63582076daf9147a881d2944', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63582074daf9147a881d293c'}, {'_id': '635820761e260a56ab3bc087', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63582074daf9147a881d293c'}, {'_id': '63582076941b002f4424b1ed', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63582075941b002f4424b1e5'}, {'_id': '6358207647f9eb86e30019ed', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63582075941b002f4424b1e5'}, {'_id': '635820774072210b717d717b', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '635820764072210b717d7173'}, {'_id': '635820773e0ed0491b66b3f5', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '635820764072210b717d7173'}, {'_id': '63582b532dcb5e7b99ff7f6a', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63582b532dcb5e7b99ff7f62'}, {'_id': '63582c08ea95ff61fbc8143c', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63582c07ea95ff61fbc81434'}, {'_id': '63583eb635eaecc64110cf7d', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63583eb535eaecc64110cf75'}, {'_id': '63583ef035eaecc64110cf8f', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63583eef35eaecc64110cf87'}, {'_id': '63583f3635eaecc64110cfa1', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63583f3535eaecc64110cf99'}, {'_id': '63583f7c35eaecc64110cfb3', 'PM_jan_dhan_yojana': 2, 'PM_ujjawala_yojana': 3, 'PM_awas_yojana': 2, 'sukanya_samriddhi_yojana': 3, 'mudra_yojana': 0, 'PM_jivan_jyoti_yojana': 0, 'PM_suraksha_bima_yojana': 0, 'atal_pension_yojana': 0, 'fasal_bima_yojana': 0, 'kaushal_vikas_yojana': 0, 'krishi_sinchai_yojana': 0, 'jan_aushadhi_yojana': 0, 'SBM_toilet': 0, 'soil_health_card': 0, 'ladli_lakshmi_yojana': 0, 'janni_suraksha_yojana': 0, 'kisan_credit_card': 0, '__id': '63583f7b35eaecc64110cfab'}], 'respondent_prof': [{'_id': '6353e6c4e10045213e4835a7', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '8523705708935799', '__id': '6353e6c3e10045213e4835a6'}, {'_id': '6353f4ba5e34323ab1d52690', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '8523705708935792', '__id': '6353f4ba5e34323ab1d5268f'}, {'_id': '6353fe814d4a09529d7c4600', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '239784792112', 'id_type': 'AC', 'id_no': '8523705708935791', '__id': '6353fe804d4a09529d7c45ff'}, {'_id': '63564100789e6aaf7f0ff8cd', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '85237057089357991', '__id': '63564100789e6aaf7f0ff8cc'}, {'_id': '6356841b6239429e9ec61228', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '85237057089357992', '__id': '6356841b6239429e9ec61227'}, {'_id': '635771f798da8b98bcddcc8b', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '283194308020951', '__id': '635771f798da8b98bcddcc8a'}, {'_id': '63578185541ca16808edefbc', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '445477237436504', '__id': '63578184541ca16808edefbb'}, {'_id': '6357b81c267dfc8b5f2b8db9', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '464037672978931', '__id': '6357b81c267dfc8b5f2b8db8'}, {'_id': '6357c46b4c76f4f25afe2d35', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '711359135813148', '__id': '6357c46a4c76f4f25afe2d34'}, {'_id': '6357c4b96a86421101b0aab7', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '374786012203713', '__id': '6357c4b96a86421101b0aab6'}, {'_id': '6357c735492b489bfa3e124a', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '188280630183373', '__id': '6357c734492b489bfa3e1249'}, {'_id': '6357ccd9c36ac55f992f3ef1', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '115403962159842', '__id': '6357ccd9c36ac55f992f3ef0'}, {'_id': '6357cf6b5d2fedc5a584cf8f', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '954637686104458', '__id': '6357cf6a5d2fedc5a584cf8e'}, {'_id': '6357cff95d2fedc5a584cf9f', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '647690415149399', '__id': '6357cff95d2fedc5a584cf9e'}, {'_id': '6357d03bcd671b45d68ea655', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '771436699886780', '__id': '6357d03bcd671b45d68ea654'}, {'_id': '6357d095cdc1e4f4ae16ca41', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '783175823047762', '__id': '6357d095cdc1e4f4ae16ca40'}, {'_id': '6357d0bccdc1e4f4ae16ca52', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '913705469118216', '__id': '6357d0bccdc1e4f4ae16ca51'}, {'_id': '6357d0e8cdc1e4f4ae16ca63', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '361706366604272', '__id': '6357d0e8cdc1e4f4ae16ca62'}, {'_id': '6357d109e3cc3d0261f94672', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '305040848937547', '__id': '6357d109e3cc3d0261f94671'}, {'_id': '6357e60e5c9b36349ae3310f', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '380453022074356', '__id': '6357e60e5c9b36349ae3310e'}, {'_id': '6357edccd886876adaa3327d', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '466135832026225', '__id': '6357edccd886876adaa3327c'}, {'_id': '6357eef137f538cf6cf777f8', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '154013290940880', '__id': '6357eef037f538cf6cf777f7'}, {'_id': '6357f109844d595746fd4e72', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '395251090568239', '__id': '6357f109844d595746fd4e71'}, {'_id': '6357f15c844d595746fd4e84', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '542429869056119', '__id': '6357f15c844d595746fd4e83'}, {'_id': '6357f16b844d595746fd4e95', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '631674362638517', '__id': '6357f16b844d595746fd4e94'}, {'_id': '6357f60c16f2e59297778587', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '686567145746704', '__id': '6357f60b16f2e59297778586'}, {'_id': '6357facc7fc70c0cb0ba4b58', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '85237057089359285', '__id': '6357facc7fc70c0cb0ba4b57'}, {'_id': '6358100b0367d83c9e3ce3f2', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '604024471337023', '__id': '6358100b0367d83c9e3ce3f1'}, {'_id': '635810630367d83c9e3ce404', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '320165486112436', '__id': '635810630367d83c9e3ce403'}, {'_id': '635810a00367d83c9e3ce416', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '899045989112072', '__id': '635810a00367d83c9e3ce415'}, {'_id': '63581860967ab1b1de628cb9', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '118783174084138', '__id': '6358185f967ab1b1de628cb8'}, {'_id': '635819652d06f7ad737f732c', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '200', '__id': '635819652d06f7ad737f732b'}, {'_id': '6358196b5a78970cea47a877', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '100', '__id': '6358196b5a78970cea47a876'}, {'_id': '635819e55a78970cea47a887', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '201', '__id': '635819e55a78970cea47a886'}, {'_id': '635819e72d06f7ad737f733c', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '101', '__id': '635819e72d06f7ad737f733b'}, {'_id': '635819edd5ee746de45039c5', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '800', '__id': '635819ecd5ee746de45039c4'}, {'_id': '63581a72d5ee746de45039d5', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '328', '__id': '63581a72d5ee746de45039d4'}, {'_id': '63581a742d06f7ad737f734c', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '45', '__id': '63581a745a78970cea47a896'}, {'_id': '63581a745a78970cea47a897', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '726', '__id': '63581a745a78970cea47a896'}, {'_id': '63581a7809f277fb51d4b911', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '801', '__id': '63581a7809f277fb51d4b910'}, {'_id': '63581b1370cdcf60ef1b8857', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '143251646409019', '__id': '63581b1370cdcf60ef1b8856'}, {'_id': '63581b5bb5ccf54f42a3299b', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '455461767109171', '__id': '63581b5bb5ccf54f42a3299a'}, {'_id': '63581ba9b5ccf54f42a329ad', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '544820287852342', '__id': '63581ba9b5ccf54f42a329ac'}, {'_id': '63581bbbbf490f104b895dc3', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '263791898829717', '__id': '63581bbabf490f104b895dc2'}, {'_id': '63581dae2aac1bd215a799cf', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '982', '__id': '63581dae2aac1bd215a799ce'}, {'_id': '63581dab61d20d666ebd254b', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '732', '__id': '63581dab61d20d666ebd254a'}, {'_id': '63581db146a9930975397a67', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '799', '__id': '63581db146a9930975397a66'}, {'_id': '63581db24bf561302fd40201', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '521', '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db280fbe76b2f1ac881', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '563', '__id': '63581db180fbe76b2f1ac880'}, {'_id': '635820704bf561302fd40217', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '477', '__id': '6358206f4bf561302fd40216'}, {'_id': '63582070a73da3558e78da09', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '7247247241', 'id_type': 'AC', 'id_no': '5799', '__id': '63582070a73da3558e78da08'}, {'_id': '63582075daf9147a881d293d', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '239', '__id': '63582074daf9147a881d293c'}, {'_id': '635820751e260a56ab3bc080', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '565', '__id': '63582074daf9147a881d293c'}, {'_id': '63582075941b002f4424b1e6', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '511', '__id': '63582075941b002f4424b1e5'}, {'_id': '6358207547f9eb86e30019e6', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '873', '__id': '63582075941b002f4424b1e5'}, {'_id': '635820764072210b717d7174', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '8523', '__id': '635820764072210b717d7173'}, {'_id': '635820763e0ed0491b66b3ee', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '769', '__id': '635820764072210b717d7173'}, {'_id': '63582b532dcb5e7b99ff7f63', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '8799', '__id': '63582b532dcb5e7b99ff7f62'}, {'_id': '63582c07ea95ff61fbc81435', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '123323', '__id': '63582c07ea95ff61fbc81434'}, {'_id': '63583eb535eaecc64110cf76', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '964962717684255', '__id': '63583eb535eaecc64110cf75'}, {'_id': '63583eef35eaecc64110cf88', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '400190652080677', '__id': '63583eef35eaecc64110cf87'}, {'_id': '63583f3535eaecc64110cf9a', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '820756452519558', '__id': '63583f3535eaecc64110cf99'}, {'_id': '63583f7b35eaecc64110cfac', 'respondents_name': 'Hemanth', 'respondents_age': 20, 'relation_w_hoh': 'Son', 'respondents_contact': '8479239724', 'id_type': 'AC', 'id_no': '460371634161390', '__id': '63583f7b35eaecc64110cfab'}], 'mig_status': [{'_id': '6353e6c6e10045213e4835ad', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6353e6c3e10045213e4835a6'}, {'_id': '6353f4ba5e34323ab1d52696', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6353f4ba5e34323ab1d5268f'}, {'_id': '6353fe814d4a09529d7c4606', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6353fe804d4a09529d7c45ff'}, {'_id': '63564101789e6aaf7f0ff8d3', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63564100789e6aaf7f0ff8cc'}, {'_id': '6356841c6239429e9ec6122e', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6356841b6239429e9ec61227'}, {'_id': '635771f798da8b98bcddcc91', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '635771f798da8b98bcddcc8a'}, {'_id': '63578185541ca16808edefc2', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63578184541ca16808edefbb'}, {'_id': '6357b81c267dfc8b5f2b8dbf', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357b81c267dfc8b5f2b8db8'}, {'_id': '6357c46b4c76f4f25afe2d3b', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357c46a4c76f4f25afe2d34'}, {'_id': '6357c4ba6a86421101b0aabd', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357c4b96a86421101b0aab6'}, {'_id': '6357c735492b489bfa3e1250', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357c734492b489bfa3e1249'}, {'_id': '6357ccdac36ac55f992f3ef7', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357ccd9c36ac55f992f3ef0'}, {'_id': '6357cf6b5d2fedc5a584cf95', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357cf6a5d2fedc5a584cf8e'}, {'_id': '6357cff95d2fedc5a584cfa5', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357cff95d2fedc5a584cf9e'}, {'_id': '6357d03bcd671b45d68ea65b', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357d03bcd671b45d68ea654'}, {'_id': '6357d096cdc1e4f4ae16ca47', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357d095cdc1e4f4ae16ca40'}, {'_id': '6357d0bccdc1e4f4ae16ca58', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357d0bccdc1e4f4ae16ca51'}, {'_id': '6357d0e8cdc1e4f4ae16ca69', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357d0e8cdc1e4f4ae16ca62'}, {'_id': '6357d10ae3cc3d0261f94678', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357d109e3cc3d0261f94671'}, {'_id': '6357e60f5c9b36349ae33115', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357e60e5c9b36349ae3310e'}, {'_id': '6357edcdd886876adaa33283', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357edccd886876adaa3327c'}, {'_id': '6357eef237f538cf6cf777fe', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357eef037f538cf6cf777f7'}, {'_id': '6357f10a844d595746fd4e78', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357f109844d595746fd4e71'}, {'_id': '6357f15d844d595746fd4e8a', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357f15c844d595746fd4e83'}, {'_id': '6357f16c844d595746fd4e9b', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357f16b844d595746fd4e94'}, {'_id': '6357f60c16f2e5929777858d', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357f60b16f2e59297778586'}, {'_id': '6357facd7fc70c0cb0ba4b5e', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6357facc7fc70c0cb0ba4b57'}, {'_id': '6358100c0367d83c9e3ce3f8', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6358100b0367d83c9e3ce3f1'}, {'_id': '635810640367d83c9e3ce40a', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '635810630367d83c9e3ce403'}, {'_id': '635810a10367d83c9e3ce41c', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '635810a00367d83c9e3ce415'}, {'_id': '63581860967ab1b1de628cbf', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6358185f967ab1b1de628cb8'}, {'_id': '635819662d06f7ad737f7332', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '635819652d06f7ad737f732b'}, {'_id': '6358196c5a78970cea47a87d', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6358196b5a78970cea47a876'}, {'_id': '635819e65a78970cea47a88d', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '635819e55a78970cea47a886'}, {'_id': '635819e82d06f7ad737f7342', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '635819e72d06f7ad737f733b'}, {'_id': '635819edd5ee746de45039cb', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '635819ecd5ee746de45039c4'}, {'_id': '63581a73d5ee746de45039db', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63581a72d5ee746de45039d4'}, {'_id': '63581a752d06f7ad737f7352', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63581a745a78970cea47a896'}, {'_id': '63581a755a78970cea47a89d', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63581a745a78970cea47a896'}, {'_id': '63581a7909f277fb51d4b917', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63581a7809f277fb51d4b910'}, {'_id': '63581b1470cdcf60ef1b885d', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63581b1370cdcf60ef1b8856'}, {'_id': '63581b5cb5ccf54f42a329a1', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63581b5bb5ccf54f42a3299a'}, {'_id': '63581baab5ccf54f42a329b3', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63581ba9b5ccf54f42a329ac'}, {'_id': '63581bbbbf490f104b895dc9', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63581bbabf490f104b895dc2'}, {'_id': '63581daf2aac1bd215a799d5', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63581dae2aac1bd215a799ce'}, {'_id': '63581db161d20d666ebd2551', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63581dab61d20d666ebd254a'}, {'_id': '63581db246a9930975397a6d', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63581db146a9930975397a66'}, {'_id': '63581db24bf561302fd40207', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db380fbe76b2f1ac887', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63581db180fbe76b2f1ac880'}, {'_id': '635820714bf561302fd4021d', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '6358206f4bf561302fd40216'}, {'_id': '63582071a73da3558e78da0f', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63582070a73da3558e78da08'}, {'_id': '63582075daf9147a881d2943', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63582074daf9147a881d293c'}, {'_id': '635820761e260a56ab3bc086', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63582074daf9147a881d293c'}, {'_id': '63582076941b002f4424b1ec', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63582075941b002f4424b1e5'}, {'_id': '6358207647f9eb86e30019ec', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63582075941b002f4424b1e5'}, {'_id': '635820774072210b717d717a', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '635820764072210b717d7173'}, {'_id': '635820773e0ed0491b66b3f4', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '635820764072210b717d7173'}, {'_id': '63582b532dcb5e7b99ff7f69', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63582b532dcb5e7b99ff7f62'}, {'_id': '63582c08ea95ff61fbc8143b', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63582c07ea95ff61fbc81434'}, {'_id': '63583eb635eaecc64110cf7c', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63583eb535eaecc64110cf75'}, {'_id': '63583ef035eaecc64110cf8e', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63583eef35eaecc64110cf87'}, {'_id': '63583f3635eaecc64110cfa0', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63583f3535eaecc64110cf99'}, {'_id': '63583f7c35eaecc64110cfb2', 'are_migrants': False, 'num_migrants': 0, 'migration_period_months': 0.0, 'years_since_migration': 0.0, '__id': '63583f7b35eaecc64110cfab'}], 'fam_info': [{'_id': '6353e6c6e10045213e4835a9', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6353e6c3e10045213e4835a6'}, {'_id': '6353e6c6e10045213e4835aa', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6353e6c3e10045213e4835a6'}, {'_id': '6353e6c6e10045213e4835ab', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6353e6c3e10045213e4835a6'}, {'_id': '6353e6c6e10045213e4835ac', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6353e6c3e10045213e4835a6'}, {'_id': '6353f4ba5e34323ab1d52692', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6353f4ba5e34323ab1d5268f'}, {'_id': '6353f4ba5e34323ab1d52693', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6353f4ba5e34323ab1d5268f'}, {'_id': '6353f4ba5e34323ab1d52694', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6353f4ba5e34323ab1d5268f'}, {'_id': '6353f4ba5e34323ab1d52695', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6353f4ba5e34323ab1d5268f'}, {'_id': '6353fe814d4a09529d7c4602', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6353fe804d4a09529d7c45ff'}, {'_id': '6353fe814d4a09529d7c4603', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6353fe804d4a09529d7c45ff'}, {'_id': '6353fe814d4a09529d7c4604', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6353fe804d4a09529d7c45ff'}, {'_id': '6353fe814d4a09529d7c4605', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6353fe804d4a09529d7c45ff'}, {'_id': '63564101789e6aaf7f0ff8cf', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63564100789e6aaf7f0ff8cc'}, {'_id': '63564101789e6aaf7f0ff8d0', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63564100789e6aaf7f0ff8cc'}, {'_id': '63564101789e6aaf7f0ff8d1', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63564100789e6aaf7f0ff8cc'}, {'_id': '63564101789e6aaf7f0ff8d2', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63564100789e6aaf7f0ff8cc'}, {'_id': '6356841c6239429e9ec6122a', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6356841b6239429e9ec61227'}, {'_id': '6356841c6239429e9ec6122b', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6356841b6239429e9ec61227'}, {'_id': '6356841c6239429e9ec6122c', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6356841b6239429e9ec61227'}, {'_id': '6356841c6239429e9ec6122d', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6356841b6239429e9ec61227'}, {'_id': '635771f798da8b98bcddcc8d', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635771f798da8b98bcddcc8a'}, {'_id': '635771f798da8b98bcddcc8e', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635771f798da8b98bcddcc8a'}, {'_id': '635771f798da8b98bcddcc8f', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635771f798da8b98bcddcc8a'}, {'_id': '635771f798da8b98bcddcc90', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635771f798da8b98bcddcc8a'}, {'_id': '63578185541ca16808edefbe', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63578184541ca16808edefbb'}, {'_id': '63578185541ca16808edefbf', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63578184541ca16808edefbb'}, {'_id': '63578185541ca16808edefc0', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63578184541ca16808edefbb'}, {'_id': '63578185541ca16808edefc1', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63578184541ca16808edefbb'}, {'_id': '6357b81c267dfc8b5f2b8dbb', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357b81c267dfc8b5f2b8db8'}, {'_id': '6357b81c267dfc8b5f2b8dbc', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357b81c267dfc8b5f2b8db8'}, {'_id': '6357b81c267dfc8b5f2b8dbd', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357b81c267dfc8b5f2b8db8'}, {'_id': '6357b81c267dfc8b5f2b8dbe', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357b81c267dfc8b5f2b8db8'}, {'_id': '6357c46b4c76f4f25afe2d37', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357c46a4c76f4f25afe2d34'}, {'_id': '6357c46b4c76f4f25afe2d38', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357c46a4c76f4f25afe2d34'}, {'_id': '6357c46b4c76f4f25afe2d39', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357c46a4c76f4f25afe2d34'}, {'_id': '6357c46b4c76f4f25afe2d3a', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357c46a4c76f4f25afe2d34'}, {'_id': '6357c4b96a86421101b0aab9', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357c4b96a86421101b0aab6'}, {'_id': '6357c4b96a86421101b0aaba', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357c4b96a86421101b0aab6'}, {'_id': '6357c4b96a86421101b0aabb', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357c4b96a86421101b0aab6'}, {'_id': '6357c4b96a86421101b0aabc', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357c4b96a86421101b0aab6'}, {'_id': '6357c735492b489bfa3e124c', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357c734492b489bfa3e1249'}, {'_id': '6357c735492b489bfa3e124d', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357c734492b489bfa3e1249'}, {'_id': '6357c735492b489bfa3e124e', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357c734492b489bfa3e1249'}, {'_id': '6357c735492b489bfa3e124f', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357c734492b489bfa3e1249'}, {'_id': '6357ccdac36ac55f992f3ef3', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357ccd9c36ac55f992f3ef0'}, {'_id': '6357ccdac36ac55f992f3ef4', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357ccd9c36ac55f992f3ef0'}, {'_id': '6357ccdac36ac55f992f3ef5', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357ccd9c36ac55f992f3ef0'}, {'_id': '6357ccdac36ac55f992f3ef6', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357ccd9c36ac55f992f3ef0'}, {'_id': '6357cf6b5d2fedc5a584cf91', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357cf6a5d2fedc5a584cf8e'}, {'_id': '6357cf6b5d2fedc5a584cf92', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357cf6a5d2fedc5a584cf8e'}, {'_id': '6357cf6b5d2fedc5a584cf93', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357cf6a5d2fedc5a584cf8e'}, {'_id': '6357cf6b5d2fedc5a584cf94', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357cf6a5d2fedc5a584cf8e'}, {'_id': '6357cff95d2fedc5a584cfa1', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357cff95d2fedc5a584cf9e'}, {'_id': '6357cff95d2fedc5a584cfa2', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357cff95d2fedc5a584cf9e'}, {'_id': '6357cff95d2fedc5a584cfa3', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357cff95d2fedc5a584cf9e'}, {'_id': '6357cff95d2fedc5a584cfa4', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357cff95d2fedc5a584cf9e'}, {'_id': '6357d03bcd671b45d68ea657', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d03bcd671b45d68ea654'}, {'_id': '6357d03bcd671b45d68ea658', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d03bcd671b45d68ea654'}, {'_id': '6357d03bcd671b45d68ea659', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d03bcd671b45d68ea654'}, {'_id': '6357d03bcd671b45d68ea65a', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d03bcd671b45d68ea654'}, {'_id': '6357d096cdc1e4f4ae16ca43', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d095cdc1e4f4ae16ca40'}, {'_id': '6357d096cdc1e4f4ae16ca44', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d095cdc1e4f4ae16ca40'}, {'_id': '6357d096cdc1e4f4ae16ca45', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d095cdc1e4f4ae16ca40'}, {'_id': '6357d096cdc1e4f4ae16ca46', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d095cdc1e4f4ae16ca40'}, {'_id': '6357d0bccdc1e4f4ae16ca54', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d0bccdc1e4f4ae16ca51'}, {'_id': '6357d0bccdc1e4f4ae16ca55', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d0bccdc1e4f4ae16ca51'}, {'_id': '6357d0bccdc1e4f4ae16ca56', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d0bccdc1e4f4ae16ca51'}, {'_id': '6357d0bccdc1e4f4ae16ca57', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d0bccdc1e4f4ae16ca51'}, {'_id': '6357d0e8cdc1e4f4ae16ca65', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d0e8cdc1e4f4ae16ca62'}, {'_id': '6357d0e8cdc1e4f4ae16ca66', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d0e8cdc1e4f4ae16ca62'}, {'_id': '6357d0e8cdc1e4f4ae16ca67', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d0e8cdc1e4f4ae16ca62'}, {'_id': '6357d0e8cdc1e4f4ae16ca68', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d0e8cdc1e4f4ae16ca62'}, {'_id': '6357d10ae3cc3d0261f94674', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d109e3cc3d0261f94671'}, {'_id': '6357d10ae3cc3d0261f94675', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d109e3cc3d0261f94671'}, {'_id': '6357d10ae3cc3d0261f94676', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d109e3cc3d0261f94671'}, {'_id': '6357d10ae3cc3d0261f94677', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357d109e3cc3d0261f94671'}, {'_id': '6357e60e5c9b36349ae33111', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357e60e5c9b36349ae3310e'}, {'_id': '6357e60e5c9b36349ae33112', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357e60e5c9b36349ae3310e'}, {'_id': '6357e60e5c9b36349ae33113', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357e60e5c9b36349ae3310e'}, {'_id': '6357e60e5c9b36349ae33114', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357e60e5c9b36349ae3310e'}, {'_id': '6357edccd886876adaa3327f', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357edccd886876adaa3327c'}, {'_id': '6357edccd886876adaa33280', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357edccd886876adaa3327c'}, {'_id': '6357edccd886876adaa33281', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357edccd886876adaa3327c'}, {'_id': '6357edccd886876adaa33282', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357edccd886876adaa3327c'}, {'_id': '6357eef137f538cf6cf777fa', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357eef037f538cf6cf777f7'}, {'_id': '6357eef137f538cf6cf777fb', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357eef037f538cf6cf777f7'}, {'_id': '6357eef137f538cf6cf777fc', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357eef037f538cf6cf777f7'}, {'_id': '6357eef137f538cf6cf777fd', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357eef037f538cf6cf777f7'}, {'_id': '6357f109844d595746fd4e74', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357f109844d595746fd4e71'}, {'_id': '6357f109844d595746fd4e75', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357f109844d595746fd4e71'}, {'_id': '6357f109844d595746fd4e76', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357f109844d595746fd4e71'}, {'_id': '6357f109844d595746fd4e77', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357f109844d595746fd4e71'}, {'_id': '6357f15d844d595746fd4e86', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357f15c844d595746fd4e83'}, {'_id': '6357f15d844d595746fd4e87', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357f15c844d595746fd4e83'}, {'_id': '6357f15d844d595746fd4e88', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357f15c844d595746fd4e83'}, {'_id': '6357f15d844d595746fd4e89', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357f15c844d595746fd4e83'}, {'_id': '6357f16c844d595746fd4e97', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357f16b844d595746fd4e94'}, {'_id': '6357f16c844d595746fd4e98', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357f16b844d595746fd4e94'}, {'_id': '6357f16c844d595746fd4e99', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357f16b844d595746fd4e94'}, {'_id': '6357f16c844d595746fd4e9a', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357f16b844d595746fd4e94'}, {'_id': '6357f60c16f2e59297778589', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357f60b16f2e59297778586'}, {'_id': '6357f60c16f2e5929777858a', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357f60b16f2e59297778586'}, {'_id': '6357f60c16f2e5929777858b', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357f60b16f2e59297778586'}, {'_id': '6357f60c16f2e5929777858c', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357f60b16f2e59297778586'}, {'_id': '6357facd7fc70c0cb0ba4b5a', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357facc7fc70c0cb0ba4b57'}, {'_id': '6357facd7fc70c0cb0ba4b5b', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357facc7fc70c0cb0ba4b57'}, {'_id': '6357facd7fc70c0cb0ba4b5c', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357facc7fc70c0cb0ba4b57'}, {'_id': '6357facd7fc70c0cb0ba4b5d', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6357facc7fc70c0cb0ba4b57'}, {'_id': '6358100b0367d83c9e3ce3f4', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6358100b0367d83c9e3ce3f1'}, {'_id': '6358100b0367d83c9e3ce3f5', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6358100b0367d83c9e3ce3f1'}, {'_id': '6358100b0367d83c9e3ce3f6', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6358100b0367d83c9e3ce3f1'}, {'_id': '6358100b0367d83c9e3ce3f7', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6358100b0367d83c9e3ce3f1'}, {'_id': '635810640367d83c9e3ce406', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635810630367d83c9e3ce403'}, {'_id': '635810640367d83c9e3ce407', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635810630367d83c9e3ce403'}, {'_id': '635810640367d83c9e3ce408', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635810630367d83c9e3ce403'}, {'_id': '635810640367d83c9e3ce409', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635810630367d83c9e3ce403'}, {'_id': '635810a10367d83c9e3ce418', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635810a00367d83c9e3ce415'}, {'_id': '635810a10367d83c9e3ce419', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635810a00367d83c9e3ce415'}, {'_id': '635810a10367d83c9e3ce41a', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635810a00367d83c9e3ce415'}, {'_id': '635810a10367d83c9e3ce41b', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635810a00367d83c9e3ce415'}, {'_id': '63581860967ab1b1de628cbb', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6358185f967ab1b1de628cb8'}, {'_id': '63581860967ab1b1de628cbc', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6358185f967ab1b1de628cb8'}, {'_id': '63581860967ab1b1de628cbd', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6358185f967ab1b1de628cb8'}, {'_id': '63581860967ab1b1de628cbe', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6358185f967ab1b1de628cb8'}, {'_id': '635819662d06f7ad737f732e', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635819652d06f7ad737f732b'}, {'_id': '635819662d06f7ad737f732f', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635819652d06f7ad737f732b'}, {'_id': '635819662d06f7ad737f7330', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635819652d06f7ad737f732b'}, {'_id': '635819662d06f7ad737f7331', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635819652d06f7ad737f732b'}, {'_id': '6358196c5a78970cea47a879', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6358196b5a78970cea47a876'}, {'_id': '6358196c5a78970cea47a87a', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6358196b5a78970cea47a876'}, {'_id': '6358196c5a78970cea47a87b', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6358196b5a78970cea47a876'}, {'_id': '6358196c5a78970cea47a87c', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6358196b5a78970cea47a876'}, {'_id': '635819e65a78970cea47a889', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635819e55a78970cea47a886'}, {'_id': '635819e65a78970cea47a88a', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635819e55a78970cea47a886'}, {'_id': '635819e65a78970cea47a88b', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635819e55a78970cea47a886'}, {'_id': '635819e65a78970cea47a88c', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635819e55a78970cea47a886'}, {'_id': '635819e82d06f7ad737f733e', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635819e72d06f7ad737f733b'}, {'_id': '635819e82d06f7ad737f733f', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635819e72d06f7ad737f733b'}, {'_id': '635819e82d06f7ad737f7340', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635819e72d06f7ad737f733b'}, {'_id': '635819e82d06f7ad737f7341', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635819e72d06f7ad737f733b'}, {'_id': '635819edd5ee746de45039c7', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635819ecd5ee746de45039c4'}, {'_id': '635819edd5ee746de45039c8', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635819ecd5ee746de45039c4'}, {'_id': '635819edd5ee746de45039c9', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635819ecd5ee746de45039c4'}, {'_id': '635819edd5ee746de45039ca', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635819ecd5ee746de45039c4'}, {'_id': '63581a73d5ee746de45039d7', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581a72d5ee746de45039d4'}, {'_id': '63581a73d5ee746de45039d8', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581a72d5ee746de45039d4'}, {'_id': '63581a73d5ee746de45039d9', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581a72d5ee746de45039d4'}, {'_id': '63581a73d5ee746de45039da', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581a72d5ee746de45039d4'}, {'_id': '63581a752d06f7ad737f734e', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581a745a78970cea47a896'}, {'_id': '63581a752d06f7ad737f734f', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581a745a78970cea47a896'}, {'_id': '63581a752d06f7ad737f7350', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581a745a78970cea47a896'}, {'_id': '63581a752d06f7ad737f7351', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581a745a78970cea47a896'}, {'_id': '63581a755a78970cea47a899', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581a745a78970cea47a896'}, {'_id': '63581a755a78970cea47a89a', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581a745a78970cea47a896'}, {'_id': '63581a755a78970cea47a89b', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581a745a78970cea47a896'}, {'_id': '63581a755a78970cea47a89c', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581a745a78970cea47a896'}, {'_id': '63581a7909f277fb51d4b913', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581a7809f277fb51d4b910'}, {'_id': '63581a7909f277fb51d4b914', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581a7809f277fb51d4b910'}, {'_id': '63581a7909f277fb51d4b915', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581a7809f277fb51d4b910'}, {'_id': '63581a7909f277fb51d4b916', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581a7809f277fb51d4b910'}, {'_id': '63581b1470cdcf60ef1b8859', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581b1370cdcf60ef1b8856'}, {'_id': '63581b1470cdcf60ef1b885a', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581b1370cdcf60ef1b8856'}, {'_id': '63581b1470cdcf60ef1b885b', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581b1370cdcf60ef1b8856'}, {'_id': '63581b1470cdcf60ef1b885c', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581b1370cdcf60ef1b8856'}, {'_id': '63581b5cb5ccf54f42a3299d', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581b5bb5ccf54f42a3299a'}, {'_id': '63581b5cb5ccf54f42a3299e', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581b5bb5ccf54f42a3299a'}, {'_id': '63581b5cb5ccf54f42a3299f', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581b5bb5ccf54f42a3299a'}, {'_id': '63581b5cb5ccf54f42a329a0', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581b5bb5ccf54f42a3299a'}, {'_id': '63581baab5ccf54f42a329af', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581ba9b5ccf54f42a329ac'}, {'_id': '63581baab5ccf54f42a329b0', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581ba9b5ccf54f42a329ac'}, {'_id': '63581baab5ccf54f42a329b1', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581ba9b5ccf54f42a329ac'}, {'_id': '63581baab5ccf54f42a329b2', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581ba9b5ccf54f42a329ac'}, {'_id': '63581bbbbf490f104b895dc5', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581bbabf490f104b895dc2'}, {'_id': '63581bbbbf490f104b895dc6', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581bbabf490f104b895dc2'}, {'_id': '63581bbbbf490f104b895dc7', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581bbabf490f104b895dc2'}, {'_id': '63581bbbbf490f104b895dc8', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581bbabf490f104b895dc2'}, {'_id': '63581daf2aac1bd215a799d1', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581dae2aac1bd215a799ce'}, {'_id': '63581daf2aac1bd215a799d2', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581dae2aac1bd215a799ce'}, {'_id': '63581daf2aac1bd215a799d3', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581dae2aac1bd215a799ce'}, {'_id': '63581daf2aac1bd215a799d4', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581dae2aac1bd215a799ce'}, {'_id': '63581db061d20d666ebd254d', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581dab61d20d666ebd254a'}, {'_id': '63581db061d20d666ebd254e', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581dab61d20d666ebd254a'}, {'_id': '63581db061d20d666ebd254f', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581dab61d20d666ebd254a'}, {'_id': '63581db061d20d666ebd2550', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581dab61d20d666ebd254a'}, {'_id': '63581db246a9930975397a69', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581db146a9930975397a66'}, {'_id': '63581db246a9930975397a6a', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581db146a9930975397a66'}, {'_id': '63581db246a9930975397a6b', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581db146a9930975397a66'}, {'_id': '63581db246a9930975397a6c', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581db146a9930975397a66'}, {'_id': '63581db24bf561302fd40203', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db24bf561302fd40204', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db24bf561302fd40205', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db24bf561302fd40206', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db280fbe76b2f1ac883', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db280fbe76b2f1ac884', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db280fbe76b2f1ac885', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581db180fbe76b2f1ac880'}, {'_id': '63581db280fbe76b2f1ac886', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63581db180fbe76b2f1ac880'}, {'_id': '635820704bf561302fd40219', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6358206f4bf561302fd40216'}, {'_id': '635820704bf561302fd4021a', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6358206f4bf561302fd40216'}, {'_id': '635820704bf561302fd4021b', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6358206f4bf561302fd40216'}, {'_id': '635820704bf561302fd4021c', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '6358206f4bf561302fd40216'}, {'_id': '63582071a73da3558e78da0b', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582070a73da3558e78da08'}, {'_id': '63582071a73da3558e78da0c', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582070a73da3558e78da08'}, {'_id': '63582071a73da3558e78da0d', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582070a73da3558e78da08'}, {'_id': '63582071a73da3558e78da0e', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582070a73da3558e78da08'}, {'_id': '63582075daf9147a881d293f', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582074daf9147a881d293c'}, {'_id': '63582075daf9147a881d2940', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582074daf9147a881d293c'}, {'_id': '63582075daf9147a881d2941', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582074daf9147a881d293c'}, {'_id': '63582075daf9147a881d2942', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582074daf9147a881d293c'}, {'_id': '635820751e260a56ab3bc082', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582074daf9147a881d293c'}, {'_id': '635820751e260a56ab3bc083', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582074daf9147a881d293c'}, {'_id': '635820751e260a56ab3bc084', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582074daf9147a881d293c'}, {'_id': '635820751e260a56ab3bc085', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582074daf9147a881d293c'}, {'_id': '63582076941b002f4424b1e8', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582075941b002f4424b1e5'}, {'_id': '63582076941b002f4424b1e9', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582075941b002f4424b1e5'}, {'_id': '63582076941b002f4424b1ea', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582075941b002f4424b1e5'}, {'_id': '63582076941b002f4424b1eb', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582075941b002f4424b1e5'}, {'_id': '6358207647f9eb86e30019e8', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582075941b002f4424b1e5'}, {'_id': '6358207647f9eb86e30019e9', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582075941b002f4424b1e5'}, {'_id': '6358207647f9eb86e30019ea', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582075941b002f4424b1e5'}, {'_id': '6358207647f9eb86e30019eb', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582075941b002f4424b1e5'}, {'_id': '635820774072210b717d7176', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635820764072210b717d7173'}, {'_id': '635820774072210b717d7177', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635820764072210b717d7173'}, {'_id': '635820774072210b717d7178', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635820764072210b717d7173'}, {'_id': '635820774072210b717d7179', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635820764072210b717d7173'}, {'_id': '635820773e0ed0491b66b3f0', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635820764072210b717d7173'}, {'_id': '635820773e0ed0491b66b3f1', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635820764072210b717d7173'}, {'_id': '635820773e0ed0491b66b3f2', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635820764072210b717d7173'}, {'_id': '635820773e0ed0491b66b3f3', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '635820764072210b717d7173'}, {'_id': '63582b532dcb5e7b99ff7f65', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582b532dcb5e7b99ff7f62'}, {'_id': '63582b532dcb5e7b99ff7f66', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582b532dcb5e7b99ff7f62'}, {'_id': '63582b532dcb5e7b99ff7f67', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582b532dcb5e7b99ff7f62'}, {'_id': '63582b532dcb5e7b99ff7f68', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582b532dcb5e7b99ff7f62'}, {'_id': '63582c08ea95ff61fbc81437', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582c07ea95ff61fbc81434'}, {'_id': '63582c08ea95ff61fbc81438', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582c07ea95ff61fbc81434'}, {'_id': '63582c08ea95ff61fbc81439', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582c07ea95ff61fbc81434'}, {'_id': '63582c08ea95ff61fbc8143a', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63582c07ea95ff61fbc81434'}, {'_id': '63583eb535eaecc64110cf78', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63583eb535eaecc64110cf75'}, {'_id': '63583eb535eaecc64110cf79', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63583eb535eaecc64110cf75'}, {'_id': '63583eb535eaecc64110cf7a', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63583eb535eaecc64110cf75'}, {'_id': '63583eb535eaecc64110cf7b', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63583eb535eaecc64110cf75'}, {'_id': '63583ef035eaecc64110cf8a', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63583eef35eaecc64110cf87'}, {'_id': '63583ef035eaecc64110cf8b', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63583eef35eaecc64110cf87'}, {'_id': '63583ef035eaecc64110cf8c', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63583eef35eaecc64110cf87'}, {'_id': '63583ef035eaecc64110cf8d', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63583eef35eaecc64110cf87'}, {'_id': '63583f3635eaecc64110cf9c', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63583f3535eaecc64110cf99'}, {'_id': '63583f3635eaecc64110cf9d', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63583f3535eaecc64110cf99'}, {'_id': '63583f3635eaecc64110cf9e', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63583f3535eaecc64110cf99'}, {'_id': '63583f3635eaecc64110cf9f', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63583f3535eaecc64110cf99'}, {'_id': '63583f7c35eaecc64110cfae', 'name': 'Mayuresh', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '1234', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63583f7b35eaecc64110cfab'}, {'_id': '63583f7c35eaecc64110cfaf', 'name': 'Anmol', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '2345', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63583f7b35eaecc64110cfab'}, {'_id': '63583f7c35eaecc64110cfb0', 'name': 'Hemanth', 'age': 20, 'sex': 'Male', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '3456', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63583f7b35eaecc64110cfab'}, {'_id': '63583f7c35eaecc64110cfb1', 'name': 'Gargi', 'age': 20, 'sex': 'Female', 'martial_status': 'U', 'education': 'College', 'schooling_status': '3 year', 'AADHAR_No': '4567', 'has_bank_acc': True, 'is_computer_literate': True, 'has_SSP': True, 'health_prob': 'None', 'has_MNREGA': True, 'SHG': True, 'occupations': 'Student', '__id': '63583f7b35eaecc64110cfab'}]}\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"data[\"data\"].keys()"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "5EyjAD6hCiIN",
"outputId": "edea3dca-4e4c-4811-94f3-40f80d73bea9"
},
"execution_count": null,
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"dict_keys(['gen_ho_info', 'agri_inputs', 'source_of_energy', 'land_holding_info', 'water_source', 'agri_products', 'livestock_nos', 'major_problems', 'meta', 'govt_schemes', 'respondent_prof', 'mig_status', 'fam_info'])"
]
},
"metadata": {},
"execution_count": 75
}
]
},
{
"cell_type": "code",
"source": [
"import pandas as pd"
],
"metadata": {
"id": "Qd2eiQXADMfe"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"#data[\"data\"][\"fam_info\"]"
],
"metadata": {
"id": "qHfOdC7OEwvd"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"#data[\"data\"]['agri_inputs']"
],
"metadata": {
"id": "hoGcWz_wC5Rv"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"import json"
],
"metadata": {
"id": "K8Kr4gGoDZyd"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"data_json = json.dumps(data['data'])"
],
"metadata": {
"id": "jfk70lGzDhkK"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"#print(data_json)"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "kf8Ur50mDssp",
"outputId": "dddc7947-4952-46c9-90f1-a599f50f5424"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"{\"gen_ho_info\": [{\"_id\": \"6353e6c5e10045213e4835a8\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6353e6c3e10045213e4835a6\"}, {\"_id\": \"6353f4ba5e34323ab1d52691\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6353f4ba5e34323ab1d5268f\"}, {\"_id\": \"6353fe814d4a09529d7c4601\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6353fe804d4a09529d7c45ff\"}, {\"_id\": \"63564101789e6aaf7f0ff8ce\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63564100789e6aaf7f0ff8cc\"}, {\"_id\": \"6356841c6239429e9ec61229\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6356841b6239429e9ec61227\"}, {\"_id\": \"635771f798da8b98bcddcc8c\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"635771f798da8b98bcddcc8a\"}, {\"_id\": \"63578185541ca16808edefbd\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63578184541ca16808edefbb\"}, {\"_id\": \"6357b81c267dfc8b5f2b8dba\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357b81c267dfc8b5f2b8db8\"}, {\"_id\": \"6357c46b4c76f4f25afe2d36\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357c46a4c76f4f25afe2d34\"}, {\"_id\": \"6357c4b96a86421101b0aab8\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357c4b96a86421101b0aab6\"}, {\"_id\": \"6357c735492b489bfa3e124b\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357c734492b489bfa3e1249\"}, {\"_id\": \"6357ccd9c36ac55f992f3ef2\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357ccd9c36ac55f992f3ef0\"}, {\"_id\": \"6357cf6b5d2fedc5a584cf90\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357cf6a5d2fedc5a584cf8e\"}, {\"_id\": \"6357cff95d2fedc5a584cfa0\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357cff95d2fedc5a584cf9e\"}, {\"_id\": \"6357d03bcd671b45d68ea656\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357d03bcd671b45d68ea654\"}, {\"_id\": \"6357d095cdc1e4f4ae16ca42\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357d095cdc1e4f4ae16ca40\"}, {\"_id\": \"6357d0bccdc1e4f4ae16ca53\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357d0bccdc1e4f4ae16ca51\"}, {\"_id\": \"6357d0e8cdc1e4f4ae16ca64\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357d0e8cdc1e4f4ae16ca62\"}, {\"_id\": \"6357d109e3cc3d0261f94673\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357d109e3cc3d0261f94671\"}, {\"_id\": \"6357e60e5c9b36349ae33110\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357e60e5c9b36349ae3310e\"}, {\"_id\": \"6357edccd886876adaa3327e\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357edccd886876adaa3327c\"}, {\"_id\": \"6357eef137f538cf6cf777f9\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357eef037f538cf6cf777f7\"}, {\"_id\": \"6357f109844d595746fd4e73\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357f109844d595746fd4e71\"}, {\"_id\": \"6357f15d844d595746fd4e85\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357f15c844d595746fd4e83\"}, {\"_id\": \"6357f16b844d595746fd4e96\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357f16b844d595746fd4e94\"}, {\"_id\": \"6357f60c16f2e59297778588\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357f60b16f2e59297778586\"}, {\"_id\": \"6357facd7fc70c0cb0ba4b59\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6357facc7fc70c0cb0ba4b57\"}, {\"_id\": \"6358100b0367d83c9e3ce3f3\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6358100b0367d83c9e3ce3f1\"}, {\"_id\": \"635810630367d83c9e3ce405\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"635810630367d83c9e3ce403\"}, {\"_id\": \"635810a00367d83c9e3ce417\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"635810a00367d83c9e3ce415\"}, {\"_id\": \"63581860967ab1b1de628cba\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6358185f967ab1b1de628cb8\"}, {\"_id\": \"635819662d06f7ad737f732d\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"635819652d06f7ad737f732b\"}, {\"_id\": \"6358196b5a78970cea47a878\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6358196b5a78970cea47a876\"}, {\"_id\": \"635819e65a78970cea47a888\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"635819e55a78970cea47a886\"}, {\"_id\": \"635819e82d06f7ad737f733d\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"635819e72d06f7ad737f733b\"}, {\"_id\": \"635819edd5ee746de45039c6\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"635819ecd5ee746de45039c4\"}, {\"_id\": \"63581a72d5ee746de45039d6\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63581a72d5ee746de45039d4\"}, {\"_id\": \"63581a742d06f7ad737f734d\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a745a78970cea47a898\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a7909f277fb51d4b912\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63581a7809f277fb51d4b910\"}, {\"_id\": \"63581b1370cdcf60ef1b8858\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63581b1370cdcf60ef1b8856\"}, {\"_id\": \"63581b5cb5ccf54f42a3299c\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63581b5bb5ccf54f42a3299a\"}, {\"_id\": \"63581baab5ccf54f42a329ae\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63581ba9b5ccf54f42a329ac\"}, {\"_id\": \"63581bbbbf490f104b895dc4\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63581bbabf490f104b895dc2\"}, {\"_id\": \"63581daf2aac1bd215a799d0\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63581dae2aac1bd215a799ce\"}, {\"_id\": \"63581db061d20d666ebd254c\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63581dab61d20d666ebd254a\"}, {\"_id\": \"63581db246a9930975397a68\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63581db146a9930975397a66\"}, {\"_id\": \"63581db24bf561302fd40202\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db280fbe76b2f1ac882\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"635820704bf561302fd40218\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"6358206f4bf561302fd40216\"}, {\"_id\": \"63582070a73da3558e78da0a\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63582070a73da3558e78da08\"}, {\"_id\": \"63582075daf9147a881d293e\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"635820751e260a56ab3bc081\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"63582076941b002f4424b1e7\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"6358207647f9eb86e30019e7\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"635820764072210b717d7175\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820773e0ed0491b66b3ef\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"63582b532dcb5e7b99ff7f64\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63582b532dcb5e7b99ff7f62\"}, {\"_id\": \"63582c07ea95ff61fbc81436\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63582c07ea95ff61fbc81434\"}, {\"_id\": \"63583eb535eaecc64110cf77\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63583eb535eaecc64110cf75\"}, {\"_id\": \"63583eef35eaecc64110cf89\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63583eef35eaecc64110cf87\"}, {\"_id\": \"63583f3635eaecc64110cf9b\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63583f3535eaecc64110cf99\"}, {\"_id\": \"63583f7b35eaecc64110cfad\", \"ho_id\": \"A1\", \"hoh_name\": \"Dada\", \"hoh_gender\": \"Male\", \"category\": \"OBC\", \"pov_status\": \"BPL\", \"own_house\": true, \"house_type\": \"pucca\", \"toilet\": \"Private\", \"drainage_status\": \"open\", \"waste_collection_sys\": \"doorstep\", \"compost_pit\": \"Individual\", \"biogas_plant\": \"Group\", \"annual_income\": 120000.0, \"__id\": \"63583f7b35eaecc64110cfab\"}], \"agri_inputs\": [{\"_id\": \"6353e6cbe10045213e4835b2\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6353e6c3e10045213e4835a6\"}, {\"_id\": \"6353f4bb5e34323ab1d5269b\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6353f4ba5e34323ab1d5268f\"}, {\"_id\": \"6353fe824d4a09529d7c460b\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6353fe804d4a09529d7c45ff\"}, {\"_id\": \"63564102789e6aaf7f0ff8d8\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63564100789e6aaf7f0ff8cc\"}, {\"_id\": \"6356841d6239429e9ec61233\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6356841b6239429e9ec61227\"}, {\"_id\": \"635771f898da8b98bcddcc96\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"635771f798da8b98bcddcc8a\"}, {\"_id\": \"63578186541ca16808edefc7\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63578184541ca16808edefbb\"}, {\"_id\": \"6357b81d267dfc8b5f2b8dc4\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357b81c267dfc8b5f2b8db8\"}, {\"_id\": \"6357c46c4c76f4f25afe2d40\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357c46a4c76f4f25afe2d34\"}, {\"_id\": \"6357c4ba6a86421101b0aac2\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357c4b96a86421101b0aab6\"}, {\"_id\": \"6357c736492b489bfa3e1255\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357c734492b489bfa3e1249\"}, {\"_id\": \"6357ccdac36ac55f992f3efc\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357ccd9c36ac55f992f3ef0\"}, {\"_id\": \"6357cf6c5d2fedc5a584cf9a\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357cf6a5d2fedc5a584cf8e\"}, {\"_id\": \"6357cffa5d2fedc5a584cfaa\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357cff95d2fedc5a584cf9e\"}, {\"_id\": \"6357d03ccd671b45d68ea660\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357d03bcd671b45d68ea654\"}, {\"_id\": \"6357d096cdc1e4f4ae16ca4c\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357d095cdc1e4f4ae16ca40\"}, {\"_id\": \"6357d0bdcdc1e4f4ae16ca5d\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357d0bccdc1e4f4ae16ca51\"}, {\"_id\": \"6357d0eacdc1e4f4ae16ca6e\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357d0e8cdc1e4f4ae16ca62\"}, {\"_id\": \"6357d10ae3cc3d0261f9467d\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357d109e3cc3d0261f94671\"}, {\"_id\": \"6357e60f5c9b36349ae3311a\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357e60e5c9b36349ae3310e\"}, {\"_id\": \"6357edced886876adaa33288\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357edccd886876adaa3327c\"}, {\"_id\": \"6357eef337f538cf6cf77803\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357eef037f538cf6cf777f7\"}, {\"_id\": \"6357f10b844d595746fd4e7d\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357f109844d595746fd4e71\"}, {\"_id\": \"6357f15e844d595746fd4e8f\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357f15c844d595746fd4e83\"}, {\"_id\": \"6357f16d844d595746fd4ea0\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357f16b844d595746fd4e94\"}, {\"_id\": \"6357f60d16f2e59297778592\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357f60b16f2e59297778586\"}, {\"_id\": \"6357face7fc70c0cb0ba4b63\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6357facc7fc70c0cb0ba4b57\"}, {\"_id\": \"6358100d0367d83c9e3ce3fd\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6358100b0367d83c9e3ce3f1\"}, {\"_id\": \"635810650367d83c9e3ce40f\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"635810630367d83c9e3ce403\"}, {\"_id\": \"635810a20367d83c9e3ce421\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"635810a00367d83c9e3ce415\"}, {\"_id\": \"63581862967ab1b1de628cc4\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6358185f967ab1b1de628cb8\"}, {\"_id\": \"635819682d06f7ad737f7337\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"635819652d06f7ad737f732b\"}, {\"_id\": \"6358196d5a78970cea47a882\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6358196b5a78970cea47a876\"}, {\"_id\": \"635819e75a78970cea47a892\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"635819e55a78970cea47a886\"}, {\"_id\": \"635819e92d06f7ad737f7347\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"635819e72d06f7ad737f733b\"}, {\"_id\": \"635819efd5ee746de45039d0\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"635819ecd5ee746de45039c4\"}, {\"_id\": \"63581a74d5ee746de45039e0\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63581a72d5ee746de45039d4\"}, {\"_id\": \"63581a762d06f7ad737f7357\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a765a78970cea47a8a2\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a7a09f277fb51d4b91c\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63581a7809f277fb51d4b910\"}, {\"_id\": \"63581b1570cdcf60ef1b8862\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63581b1370cdcf60ef1b8856\"}, {\"_id\": \"63581b5db5ccf54f42a329a6\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63581b5bb5ccf54f42a3299a\"}, {\"_id\": \"63581babb5ccf54f42a329b8\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63581ba9b5ccf54f42a329ac\"}, {\"_id\": \"63581bbcbf490f104b895dce\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63581bbabf490f104b895dc2\"}, {\"_id\": \"63581db02aac1bd215a799da\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63581dae2aac1bd215a799ce\"}, {\"_id\": \"63581db261d20d666ebd2556\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63581dab61d20d666ebd254a\"}, {\"_id\": \"63581db346a9930975397a72\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63581db146a9930975397a66\"}, {\"_id\": \"63581db44bf561302fd4020c\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db480fbe76b2f1ac88c\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"635820724bf561302fd40222\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"6358206f4bf561302fd40216\"}, {\"_id\": \"63582072a73da3558e78da14\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63582070a73da3558e78da08\"}, {\"_id\": \"63582077daf9147a881d2948\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"635820771e260a56ab3bc08b\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"63582077941b002f4424b1f1\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"6358207747f9eb86e30019f1\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"635820784072210b717d717f\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820783e0ed0491b66b3f9\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"63582b542dcb5e7b99ff7f6e\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63582b532dcb5e7b99ff7f62\"}, {\"_id\": \"63582c08ea95ff61fbc81440\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63582c07ea95ff61fbc81434\"}, {\"_id\": \"63583eb735eaecc64110cf81\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63583eb535eaecc64110cf75\"}, {\"_id\": \"63583ef135eaecc64110cf93\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63583eef35eaecc64110cf87\"}, {\"_id\": \"63583f3735eaecc64110cfa5\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63583f3535eaecc64110cf99\"}, {\"_id\": \"63583f7d35eaecc64110cfb7\", \"is_chemical_fertilizer_used\": [true, 5.0], \"is_chemical_insecticide_used\": [false, 0.0], \"is_chemical_weedice_used\": [false, 0.0], \"is_chemical_organic_manuevers\": [false, 0.0], \"irrigation\": \"Open\", \"irrigation_sys\": \"Open\", \"__id\": \"63583f7b35eaecc64110cfab\"}], \"source_of_energy\": [{\"_id\": \"6353e6c9e10045213e4835b0\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6353e6c3e10045213e4835a6\"}, {\"_id\": \"6353f4bb5e34323ab1d52699\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6353f4ba5e34323ab1d5268f\"}, {\"_id\": \"6353fe824d4a09529d7c4609\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6353fe804d4a09529d7c45ff\"}, {\"_id\": \"63564101789e6aaf7f0ff8d6\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63564100789e6aaf7f0ff8cc\"}, {\"_id\": \"6356841d6239429e9ec61231\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6356841b6239429e9ec61227\"}, {\"_id\": \"635771f898da8b98bcddcc94\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"635771f798da8b98bcddcc8a\"}, {\"_id\": \"63578186541ca16808edefc5\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63578184541ca16808edefbb\"}, {\"_id\": \"6357b81d267dfc8b5f2b8dc2\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357b81c267dfc8b5f2b8db8\"}, {\"_id\": \"6357c46b4c76f4f25afe2d3e\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357c46a4c76f4f25afe2d34\"}, {\"_id\": \"6357c4ba6a86421101b0aac0\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357c4b96a86421101b0aab6\"}, {\"_id\": \"6357c735492b489bfa3e1253\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357c734492b489bfa3e1249\"}, {\"_id\": \"6357ccdac36ac55f992f3efa\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357ccd9c36ac55f992f3ef0\"}, {\"_id\": \"6357cf6b5d2fedc5a584cf98\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357cf6a5d2fedc5a584cf8e\"}, {\"_id\": \"6357cffa5d2fedc5a584cfa8\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357cff95d2fedc5a584cf9e\"}, {\"_id\": \"6357d03ccd671b45d68ea65e\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357d03bcd671b45d68ea654\"}, {\"_id\": \"6357d096cdc1e4f4ae16ca4a\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357d095cdc1e4f4ae16ca40\"}, {\"_id\": \"6357d0bdcdc1e4f4ae16ca5b\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357d0bccdc1e4f4ae16ca51\"}, {\"_id\": \"6357d0e9cdc1e4f4ae16ca6c\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357d0e8cdc1e4f4ae16ca62\"}, {\"_id\": \"6357d10ae3cc3d0261f9467b\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357d109e3cc3d0261f94671\"}, {\"_id\": \"6357e60f5c9b36349ae33118\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357e60e5c9b36349ae3310e\"}, {\"_id\": \"6357edcdd886876adaa33286\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357edccd886876adaa3327c\"}, {\"_id\": \"6357eef237f538cf6cf77801\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357eef037f538cf6cf777f7\"}, {\"_id\": \"6357f10a844d595746fd4e7b\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357f109844d595746fd4e71\"}, {\"_id\": \"6357f15e844d595746fd4e8d\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357f15c844d595746fd4e83\"}, {\"_id\": \"6357f16c844d595746fd4e9e\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357f16b844d595746fd4e94\"}, {\"_id\": \"6357f60d16f2e59297778590\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357f60b16f2e59297778586\"}, {\"_id\": \"6357face7fc70c0cb0ba4b61\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6357facc7fc70c0cb0ba4b57\"}, {\"_id\": \"6358100c0367d83c9e3ce3fb\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6358100b0367d83c9e3ce3f1\"}, {\"_id\": \"635810640367d83c9e3ce40d\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"635810630367d83c9e3ce403\"}, {\"_id\": \"635810a10367d83c9e3ce41f\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"635810a00367d83c9e3ce415\"}, {\"_id\": \"63581861967ab1b1de628cc2\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6358185f967ab1b1de628cb8\"}, {\"_id\": \"635819682d06f7ad737f7335\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"635819652d06f7ad737f732b\"}, {\"_id\": \"6358196d5a78970cea47a880\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6358196b5a78970cea47a876\"}, {\"_id\": \"635819e75a78970cea47a890\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"635819e55a78970cea47a886\"}, {\"_id\": \"635819e92d06f7ad737f7345\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"635819e72d06f7ad737f733b\"}, {\"_id\": \"635819eed5ee746de45039ce\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"635819ecd5ee746de45039c4\"}, {\"_id\": \"63581a73d5ee746de45039de\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63581a72d5ee746de45039d4\"}, {\"_id\": \"63581a762d06f7ad737f7355\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a765a78970cea47a8a0\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a7a09f277fb51d4b91a\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63581a7809f277fb51d4b910\"}, {\"_id\": \"63581b1570cdcf60ef1b8860\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63581b1370cdcf60ef1b8856\"}, {\"_id\": \"63581b5db5ccf54f42a329a4\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63581b5bb5ccf54f42a3299a\"}, {\"_id\": \"63581babb5ccf54f42a329b6\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63581ba9b5ccf54f42a329ac\"}, {\"_id\": \"63581bbcbf490f104b895dcc\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63581bbabf490f104b895dc2\"}, {\"_id\": \"63581db02aac1bd215a799d8\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63581dae2aac1bd215a799ce\"}, {\"_id\": \"63581db161d20d666ebd2554\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63581dab61d20d666ebd254a\"}, {\"_id\": \"63581db346a9930975397a70\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63581db146a9930975397a66\"}, {\"_id\": \"63581db34bf561302fd4020a\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db380fbe76b2f1ac88a\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"635820714bf561302fd40220\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"6358206f4bf561302fd40216\"}, {\"_id\": \"63582072a73da3558e78da12\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63582070a73da3558e78da08\"}, {\"_id\": \"63582076daf9147a881d2946\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"635820761e260a56ab3bc089\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"63582077941b002f4424b1ef\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"6358207747f9eb86e30019ef\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"635820784072210b717d717d\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820783e0ed0491b66b3f7\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"63582b542dcb5e7b99ff7f6c\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63582b532dcb5e7b99ff7f62\"}, {\"_id\": \"63582c08ea95ff61fbc8143e\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63582c07ea95ff61fbc81434\"}, {\"_id\": \"63583eb635eaecc64110cf7f\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63583eb535eaecc64110cf75\"}, {\"_id\": \"63583ef035eaecc64110cf91\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63583eef35eaecc64110cf87\"}, {\"_id\": \"63583f3735eaecc64110cfa3\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63583f3535eaecc64110cf99\"}, {\"_id\": \"63583f7d35eaecc64110cfb5\", \"electricity_conn\": true, \"elec_avail_perday_hour\": 12, \"lighting\": [\"electricity\"], \"cooking\": [\"LPG\"], \"cook_chullah\": \"Smokeless\", \"appliances\": [{\"appliance_name\": \"fan\", \"appliance_nos\": 2, \"appliance_dur\": 5}, {\"appliance_name\": \"bulb\", \"appliance_nos\": 2, \"appliance_dur\": 5}], \"__id\": \"63583f7b35eaecc64110cfab\"}], \"land_holding_info\": [{\"_id\": \"6353e6cae10045213e4835b1\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6353e6c3e10045213e4835a6\"}, {\"_id\": \"6353f4bb5e34323ab1d5269a\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6353f4ba5e34323ab1d5268f\"}, {\"_id\": \"6353fe824d4a09529d7c460a\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6353fe804d4a09529d7c45ff\"}, {\"_id\": \"63564102789e6aaf7f0ff8d7\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63564100789e6aaf7f0ff8cc\"}, {\"_id\": \"6356841d6239429e9ec61232\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6356841b6239429e9ec61227\"}, {\"_id\": \"635771f898da8b98bcddcc95\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"635771f798da8b98bcddcc8a\"}, {\"_id\": \"63578186541ca16808edefc6\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63578184541ca16808edefbb\"}, {\"_id\": \"6357b81d267dfc8b5f2b8dc3\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357b81c267dfc8b5f2b8db8\"}, {\"_id\": \"6357c46b4c76f4f25afe2d3f\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357c46a4c76f4f25afe2d34\"}, {\"_id\": \"6357c4ba6a86421101b0aac1\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357c4b96a86421101b0aab6\"}, {\"_id\": \"6357c736492b489bfa3e1254\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357c734492b489bfa3e1249\"}, {\"_id\": \"6357ccdac36ac55f992f3efb\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357ccd9c36ac55f992f3ef0\"}, {\"_id\": \"6357cf6c5d2fedc5a584cf99\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357cf6a5d2fedc5a584cf8e\"}, {\"_id\": \"6357cffa5d2fedc5a584cfa9\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357cff95d2fedc5a584cf9e\"}, {\"_id\": \"6357d03ccd671b45d68ea65f\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357d03bcd671b45d68ea654\"}, {\"_id\": \"6357d096cdc1e4f4ae16ca4b\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357d095cdc1e4f4ae16ca40\"}, {\"_id\": \"6357d0bdcdc1e4f4ae16ca5c\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357d0bccdc1e4f4ae16ca51\"}, {\"_id\": \"6357d0e9cdc1e4f4ae16ca6d\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357d0e8cdc1e4f4ae16ca62\"}, {\"_id\": \"6357d10ae3cc3d0261f9467c\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357d109e3cc3d0261f94671\"}, {\"_id\": \"6357e60f5c9b36349ae33119\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357e60e5c9b36349ae3310e\"}, {\"_id\": \"6357edced886876adaa33287\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357edccd886876adaa3327c\"}, {\"_id\": \"6357eef337f538cf6cf77802\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357eef037f538cf6cf777f7\"}, {\"_id\": \"6357f10b844d595746fd4e7c\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357f109844d595746fd4e71\"}, {\"_id\": \"6357f15e844d595746fd4e8e\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357f15c844d595746fd4e83\"}, {\"_id\": \"6357f16d844d595746fd4e9f\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357f16b844d595746fd4e94\"}, {\"_id\": \"6357f60d16f2e59297778591\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357f60b16f2e59297778586\"}, {\"_id\": \"6357face7fc70c0cb0ba4b62\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6357facc7fc70c0cb0ba4b57\"}, {\"_id\": \"6358100c0367d83c9e3ce3fc\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6358100b0367d83c9e3ce3f1\"}, {\"_id\": \"635810650367d83c9e3ce40e\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"635810630367d83c9e3ce403\"}, {\"_id\": \"635810a20367d83c9e3ce420\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"635810a00367d83c9e3ce415\"}, {\"_id\": \"63581861967ab1b1de628cc3\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6358185f967ab1b1de628cb8\"}, {\"_id\": \"635819682d06f7ad737f7336\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"635819652d06f7ad737f732b\"}, {\"_id\": \"6358196d5a78970cea47a881\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6358196b5a78970cea47a876\"}, {\"_id\": \"635819e75a78970cea47a891\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"635819e55a78970cea47a886\"}, {\"_id\": \"635819e92d06f7ad737f7346\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"635819e72d06f7ad737f733b\"}, {\"_id\": \"635819eed5ee746de45039cf\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"635819ecd5ee746de45039c4\"}, {\"_id\": \"63581a74d5ee746de45039df\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63581a72d5ee746de45039d4\"}, {\"_id\": \"63581a762d06f7ad737f7356\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a765a78970cea47a8a1\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a7a09f277fb51d4b91b\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63581a7809f277fb51d4b910\"}, {\"_id\": \"63581b1570cdcf60ef1b8861\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63581b1370cdcf60ef1b8856\"}, {\"_id\": \"63581b5db5ccf54f42a329a5\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63581b5bb5ccf54f42a3299a\"}, {\"_id\": \"63581babb5ccf54f42a329b7\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63581ba9b5ccf54f42a329ac\"}, {\"_id\": \"63581bbcbf490f104b895dcd\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63581bbabf490f104b895dc2\"}, {\"_id\": \"63581db02aac1bd215a799d9\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63581dae2aac1bd215a799ce\"}, {\"_id\": \"63581db261d20d666ebd2555\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63581dab61d20d666ebd254a\"}, {\"_id\": \"63581db346a9930975397a71\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63581db146a9930975397a66\"}, {\"_id\": \"63581db44bf561302fd4020b\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db480fbe76b2f1ac88b\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"635820724bf561302fd40221\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"6358206f4bf561302fd40216\"}, {\"_id\": \"63582072a73da3558e78da13\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63582070a73da3558e78da08\"}, {\"_id\": \"63582076daf9147a881d2947\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"635820771e260a56ab3bc08a\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"63582077941b002f4424b1f0\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"6358207747f9eb86e30019f0\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"635820784072210b717d717e\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820783e0ed0491b66b3f8\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"63582b542dcb5e7b99ff7f6d\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63582b532dcb5e7b99ff7f62\"}, {\"_id\": \"63582c08ea95ff61fbc8143f\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63582c07ea95ff61fbc81434\"}, {\"_id\": \"63583eb735eaecc64110cf80\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63583eb535eaecc64110cf75\"}, {\"_id\": \"63583ef135eaecc64110cf92\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63583eef35eaecc64110cf87\"}, {\"_id\": \"63583f3735eaecc64110cfa4\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63583f3535eaecc64110cf99\"}, {\"_id\": \"63583f7d35eaecc64110cfb6\", \"total_land\": 2.0, \"irrigated_area\": 0.5, \"barren_or_wasteland\": 0.1, \"cultivable_area\": 0.4, \"unirrigated_area\": 0.3, \"uncultivable_area\": 0.2, \"__id\": \"63583f7b35eaecc64110cfab\"}], \"water_source\": [{\"_id\": \"6353e6c8e10045213e4835af\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6353e6c3e10045213e4835a6\"}, {\"_id\": \"6353f4bb5e34323ab1d52698\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6353f4ba5e34323ab1d5268f\"}, {\"_id\": \"6353fe824d4a09529d7c4608\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6353fe804d4a09529d7c45ff\"}, {\"_id\": \"63564101789e6aaf7f0ff8d5\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63564100789e6aaf7f0ff8cc\"}, {\"_id\": \"6356841d6239429e9ec61230\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6356841b6239429e9ec61227\"}, {\"_id\": \"635771f898da8b98bcddcc93\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"635771f798da8b98bcddcc8a\"}, {\"_id\": \"63578186541ca16808edefc4\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63578184541ca16808edefbb\"}, {\"_id\": \"6357b81d267dfc8b5f2b8dc1\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357b81c267dfc8b5f2b8db8\"}, {\"_id\": \"6357c46b4c76f4f25afe2d3d\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357c46a4c76f4f25afe2d34\"}, {\"_id\": \"6357c4ba6a86421101b0aabf\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357c4b96a86421101b0aab6\"}, {\"_id\": \"6357c735492b489bfa3e1252\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357c734492b489bfa3e1249\"}, {\"_id\": \"6357ccdac36ac55f992f3ef9\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357ccd9c36ac55f992f3ef0\"}, {\"_id\": \"6357cf6b5d2fedc5a584cf97\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357cf6a5d2fedc5a584cf8e\"}, {\"_id\": \"6357cffa5d2fedc5a584cfa7\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357cff95d2fedc5a584cf9e\"}, {\"_id\": \"6357d03ccd671b45d68ea65d\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357d03bcd671b45d68ea654\"}, {\"_id\": \"6357d096cdc1e4f4ae16ca49\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357d095cdc1e4f4ae16ca40\"}, {\"_id\": \"6357d0bdcdc1e4f4ae16ca5a\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357d0bccdc1e4f4ae16ca51\"}, {\"_id\": \"6357d0e9cdc1e4f4ae16ca6b\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357d0e8cdc1e4f4ae16ca62\"}, {\"_id\": \"6357d10ae3cc3d0261f9467a\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357d109e3cc3d0261f94671\"}, {\"_id\": \"6357e60f5c9b36349ae33117\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357e60e5c9b36349ae3310e\"}, {\"_id\": \"6357edcdd886876adaa33285\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357edccd886876adaa3327c\"}, {\"_id\": \"6357eef237f538cf6cf77800\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357eef037f538cf6cf777f7\"}, {\"_id\": \"6357f10a844d595746fd4e7a\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357f109844d595746fd4e71\"}, {\"_id\": \"6357f15e844d595746fd4e8c\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357f15c844d595746fd4e83\"}, {\"_id\": \"6357f16c844d595746fd4e9d\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357f16b844d595746fd4e94\"}, {\"_id\": \"6357f60d16f2e5929777858f\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357f60b16f2e59297778586\"}, {\"_id\": \"6357face7fc70c0cb0ba4b60\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6357facc7fc70c0cb0ba4b57\"}, {\"_id\": \"6358100c0367d83c9e3ce3fa\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6358100b0367d83c9e3ce3f1\"}, {\"_id\": \"635810640367d83c9e3ce40c\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"635810630367d83c9e3ce403\"}, {\"_id\": \"635810a10367d83c9e3ce41e\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"635810a00367d83c9e3ce415\"}, {\"_id\": \"63581861967ab1b1de628cc1\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6358185f967ab1b1de628cb8\"}, {\"_id\": \"635819682d06f7ad737f7334\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"635819652d06f7ad737f732b\"}, {\"_id\": \"6358196c5a78970cea47a87f\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6358196b5a78970cea47a876\"}, {\"_id\": \"635819e65a78970cea47a88f\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"635819e55a78970cea47a886\"}, {\"_id\": \"635819e92d06f7ad737f7344\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"635819e72d06f7ad737f733b\"}, {\"_id\": \"635819eed5ee746de45039cd\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"635819ecd5ee746de45039c4\"}, {\"_id\": \"63581a73d5ee746de45039dd\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63581a72d5ee746de45039d4\"}, {\"_id\": \"63581a752d06f7ad737f7354\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a755a78970cea47a89f\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a7909f277fb51d4b919\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63581a7809f277fb51d4b910\"}, {\"_id\": \"63581b1470cdcf60ef1b885f\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63581b1370cdcf60ef1b8856\"}, {\"_id\": \"63581b5db5ccf54f42a329a3\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63581b5bb5ccf54f42a3299a\"}, {\"_id\": \"63581baab5ccf54f42a329b5\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63581ba9b5ccf54f42a329ac\"}, {\"_id\": \"63581bbcbf490f104b895dcb\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63581bbabf490f104b895dc2\"}, {\"_id\": \"63581db02aac1bd215a799d7\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63581dae2aac1bd215a799ce\"}, {\"_id\": \"63581db161d20d666ebd2553\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63581dab61d20d666ebd254a\"}, {\"_id\": \"63581db246a9930975397a6f\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63581db146a9930975397a66\"}, {\"_id\": \"63581db34bf561302fd40209\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db380fbe76b2f1ac889\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"635820714bf561302fd4021f\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"6358206f4bf561302fd40216\"}, {\"_id\": \"63582071a73da3558e78da11\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63582070a73da3558e78da08\"}, {\"_id\": \"63582076daf9147a881d2945\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"635820761e260a56ab3bc088\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"63582076941b002f4424b1ee\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"6358207747f9eb86e30019ee\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"635820774072210b717d717c\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820783e0ed0491b66b3f6\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"63582b532dcb5e7b99ff7f6b\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63582b532dcb5e7b99ff7f62\"}, {\"_id\": \"63582c08ea95ff61fbc8143d\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63582c07ea95ff61fbc81434\"}, {\"_id\": \"63583eb635eaecc64110cf7e\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63583eb535eaecc64110cf75\"}, {\"_id\": \"63583ef035eaecc64110cf90\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63583eef35eaecc64110cf87\"}, {\"_id\": \"63583f3635eaecc64110cfa2\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63583f3535eaecc64110cf99\"}, {\"_id\": \"63583f7c35eaecc64110cfb4\", \"piped_water\": [true, 10], \"hand_pump\": [true, 20], \"comm_water\": [false, 0], \"open_well\": [true, 40], \"mode_of_water_storage\": \"individual\", \"other_water_source\": \"None\", \"__id\": \"63583f7b35eaecc64110cfab\"}], \"agri_products\": [{\"_id\": \"6353e6cce10045213e4835b3\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6353e6c3e10045213e4835a6\"}, {\"_id\": \"6353f4bb5e34323ab1d5269c\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6353f4ba5e34323ab1d5268f\"}, {\"_id\": \"6353fe834d4a09529d7c460c\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6353fe804d4a09529d7c45ff\"}, {\"_id\": \"63564102789e6aaf7f0ff8d9\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63564100789e6aaf7f0ff8cc\"}, {\"_id\": \"6356841e6239429e9ec61234\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6356841b6239429e9ec61227\"}, {\"_id\": \"635771f898da8b98bcddcc97\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"635771f798da8b98bcddcc8a\"}, {\"_id\": \"63578186541ca16808edefc8\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63578184541ca16808edefbb\"}, {\"_id\": \"6357b81d267dfc8b5f2b8dc5\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357b81c267dfc8b5f2b8db8\"}, {\"_id\": \"6357c46c4c76f4f25afe2d41\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357c46a4c76f4f25afe2d34\"}, {\"_id\": \"6357c4ba6a86421101b0aac3\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357c4b96a86421101b0aab6\"}, {\"_id\": \"6357c736492b489bfa3e1256\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357c734492b489bfa3e1249\"}, {\"_id\": \"6357ccdbc36ac55f992f3efd\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357ccd9c36ac55f992f3ef0\"}, {\"_id\": \"6357cf6c5d2fedc5a584cf9b\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357cf6a5d2fedc5a584cf8e\"}, {\"_id\": \"6357cffa5d2fedc5a584cfab\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357cff95d2fedc5a584cf9e\"}, {\"_id\": \"6357d03ccd671b45d68ea661\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357d03bcd671b45d68ea654\"}, {\"_id\": \"6357d097cdc1e4f4ae16ca4d\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357d095cdc1e4f4ae16ca40\"}, {\"_id\": \"6357d0bdcdc1e4f4ae16ca5e\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357d0bccdc1e4f4ae16ca51\"}, {\"_id\": \"6357d0eacdc1e4f4ae16ca6f\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357d0e8cdc1e4f4ae16ca62\"}, {\"_id\": \"6357d10be3cc3d0261f9467e\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357d109e3cc3d0261f94671\"}, {\"_id\": \"6357e60f5c9b36349ae3311b\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357e60e5c9b36349ae3310e\"}, {\"_id\": \"6357edced886876adaa33289\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357edccd886876adaa3327c\"}, {\"_id\": \"6357eef337f538cf6cf77804\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357eef037f538cf6cf777f7\"}, {\"_id\": \"6357f10b844d595746fd4e7e\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357f109844d595746fd4e71\"}, {\"_id\": \"6357f15e844d595746fd4e90\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357f15c844d595746fd4e83\"}, {\"_id\": \"6357f16d844d595746fd4ea1\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357f16b844d595746fd4e94\"}, {\"_id\": \"6357f60e16f2e59297778593\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357f60b16f2e59297778586\"}, {\"_id\": \"6357facf7fc70c0cb0ba4b64\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6357facc7fc70c0cb0ba4b57\"}, {\"_id\": \"6358100d0367d83c9e3ce3fe\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6358100b0367d83c9e3ce3f1\"}, {\"_id\": \"635810650367d83c9e3ce410\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"635810630367d83c9e3ce403\"}, {\"_id\": \"635810a20367d83c9e3ce422\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"635810a00367d83c9e3ce415\"}, {\"_id\": \"63581862967ab1b1de628cc5\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6358185f967ab1b1de628cb8\"}, {\"_id\": \"635819692d06f7ad737f7338\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"635819652d06f7ad737f732b\"}, {\"_id\": \"6358196d5a78970cea47a883\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6358196b5a78970cea47a876\"}, {\"_id\": \"635819e75a78970cea47a893\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"635819e55a78970cea47a886\"}, {\"_id\": \"635819ea2d06f7ad737f7348\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"635819e72d06f7ad737f733b\"}, {\"_id\": \"635819efd5ee746de45039d1\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"635819ecd5ee746de45039c4\"}, {\"_id\": \"63581a74d5ee746de45039e1\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63581a72d5ee746de45039d4\"}, {\"_id\": \"63581a762d06f7ad737f7358\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a765a78970cea47a8a3\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a7a09f277fb51d4b91d\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63581a7809f277fb51d4b910\"}, {\"_id\": \"63581b1570cdcf60ef1b8863\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63581b1370cdcf60ef1b8856\"}, {\"_id\": \"63581b5db5ccf54f42a329a7\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63581b5bb5ccf54f42a3299a\"}, {\"_id\": \"63581babb5ccf54f42a329b9\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63581ba9b5ccf54f42a329ac\"}, {\"_id\": \"63581bbdbf490f104b895dcf\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63581bbabf490f104b895dc2\"}, {\"_id\": \"63581db12aac1bd215a799db\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63581dae2aac1bd215a799ce\"}, {\"_id\": \"63581db261d20d666ebd2557\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63581dab61d20d666ebd254a\"}, {\"_id\": \"63581db346a9930975397a73\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63581db146a9930975397a66\"}, {\"_id\": \"63581db480fbe76b2f1ac88d\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db44bf561302fd4020d\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"635820724bf561302fd40223\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"6358206f4bf561302fd40216\"}, {\"_id\": \"63582072a73da3558e78da15\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63582070a73da3558e78da08\"}, {\"_id\": \"63582077daf9147a881d2949\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"635820771e260a56ab3bc08c\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"63582077941b002f4424b1f2\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"6358207847f9eb86e30019f2\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"635820784072210b717d7180\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820783e0ed0491b66b3fa\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"63582b542dcb5e7b99ff7f6f\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63582b532dcb5e7b99ff7f62\"}, {\"_id\": \"63582c08ea95ff61fbc81441\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63582c07ea95ff61fbc81434\"}, {\"_id\": \"63583eb735eaecc64110cf82\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63583eb535eaecc64110cf75\"}, {\"_id\": \"63583ef135eaecc64110cf94\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63583eef35eaecc64110cf87\"}, {\"_id\": \"63583f3735eaecc64110cfa6\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63583f3535eaecc64110cf99\"}, {\"_id\": \"63583f7d35eaecc64110cfb8\", \"crop_name\": \"rice\", \"crop_area_prev_yr_acre\": 0.2, \"productivity_in_quintals_per_acre\": 3.0, \"__id\": \"63583f7b35eaecc64110cfab\"}], \"livestock_nos\": [{\"_id\": \"6353e6cde10045213e4835b4\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6353e6c3e10045213e4835a6\"}, {\"_id\": \"6353f4bb5e34323ab1d5269d\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6353f4ba5e34323ab1d5268f\"}, {\"_id\": \"6353fe834d4a09529d7c460d\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6353fe804d4a09529d7c45ff\"}, {\"_id\": \"63564102789e6aaf7f0ff8da\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63564100789e6aaf7f0ff8cc\"}, {\"_id\": \"6356841e6239429e9ec61235\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6356841b6239429e9ec61227\"}, {\"_id\": \"635771f898da8b98bcddcc98\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"635771f798da8b98bcddcc8a\"}, {\"_id\": \"63578187541ca16808edefc9\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63578184541ca16808edefbb\"}, {\"_id\": \"6357b81e267dfc8b5f2b8dc6\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357b81c267dfc8b5f2b8db8\"}, {\"_id\": \"6357c46c4c76f4f25afe2d42\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357c46a4c76f4f25afe2d34\"}, {\"_id\": \"6357c4bb6a86421101b0aac4\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357c4b96a86421101b0aab6\"}, {\"_id\": \"6357c736492b489bfa3e1257\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357c734492b489bfa3e1249\"}, {\"_id\": \"6357ccdbc36ac55f992f3efe\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357ccd9c36ac55f992f3ef0\"}, {\"_id\": \"6357cf6c5d2fedc5a584cf9c\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357cf6a5d2fedc5a584cf8e\"}, {\"_id\": \"6357cffa5d2fedc5a584cfac\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357cff95d2fedc5a584cf9e\"}, {\"_id\": \"6357d03dcd671b45d68ea662\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357d03bcd671b45d68ea654\"}, {\"_id\": \"6357d097cdc1e4f4ae16ca4e\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357d095cdc1e4f4ae16ca40\"}, {\"_id\": \"6357d0bdcdc1e4f4ae16ca5f\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357d0bccdc1e4f4ae16ca51\"}, {\"_id\": \"6357d0eacdc1e4f4ae16ca70\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357d0e8cdc1e4f4ae16ca62\"}, {\"_id\": \"6357d10be3cc3d0261f9467f\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357d109e3cc3d0261f94671\"}, {\"_id\": \"6357e6105c9b36349ae3311c\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357e60e5c9b36349ae3310e\"}, {\"_id\": \"6357edced886876adaa3328a\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357edccd886876adaa3327c\"}, {\"_id\": \"6357eef337f538cf6cf77805\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357eef037f538cf6cf777f7\"}, {\"_id\": \"6357f10b844d595746fd4e7f\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357f109844d595746fd4e71\"}, {\"_id\": \"6357f15f844d595746fd4e91\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357f15c844d595746fd4e83\"}, {\"_id\": \"6357f16d844d595746fd4ea2\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357f16b844d595746fd4e94\"}, {\"_id\": \"6357f60e16f2e59297778594\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357f60b16f2e59297778586\"}, {\"_id\": \"6357facf7fc70c0cb0ba4b65\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6357facc7fc70c0cb0ba4b57\"}, {\"_id\": \"6358100d0367d83c9e3ce3ff\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6358100b0367d83c9e3ce3f1\"}, {\"_id\": \"635810650367d83c9e3ce411\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"635810630367d83c9e3ce403\"}, {\"_id\": \"635810a20367d83c9e3ce423\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"635810a00367d83c9e3ce415\"}, {\"_id\": \"63581862967ab1b1de628cc6\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6358185f967ab1b1de628cb8\"}, {\"_id\": \"635819692d06f7ad737f7339\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"635819652d06f7ad737f732b\"}, {\"_id\": \"6358196e5a78970cea47a884\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6358196b5a78970cea47a876\"}, {\"_id\": \"635819e85a78970cea47a894\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"635819e55a78970cea47a886\"}, {\"_id\": \"635819ea2d06f7ad737f7349\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"635819e72d06f7ad737f733b\"}, {\"_id\": \"635819efd5ee746de45039d2\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"635819ecd5ee746de45039c4\"}, {\"_id\": \"63581a74d5ee746de45039e2\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63581a72d5ee746de45039d4\"}, {\"_id\": \"63581a772d06f7ad737f7359\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a775a78970cea47a8a4\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a7b09f277fb51d4b91e\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63581a7809f277fb51d4b910\"}, {\"_id\": \"63581b1570cdcf60ef1b8864\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63581b1370cdcf60ef1b8856\"}, {\"_id\": \"63581b5eb5ccf54f42a329a8\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63581b5bb5ccf54f42a3299a\"}, {\"_id\": \"63581babb5ccf54f42a329ba\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63581ba9b5ccf54f42a329ac\"}, {\"_id\": \"63581bbdbf490f104b895dd0\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63581bbabf490f104b895dc2\"}, {\"_id\": \"63581db12aac1bd215a799dc\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63581dae2aac1bd215a799ce\"}, {\"_id\": \"63581db261d20d666ebd2558\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63581dab61d20d666ebd254a\"}, {\"_id\": \"63581db446a9930975397a74\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63581db146a9930975397a66\"}, {\"_id\": \"63581db480fbe76b2f1ac88e\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db44bf561302fd4020e\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"635820724bf561302fd40224\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"6358206f4bf561302fd40216\"}, {\"_id\": \"63582073a73da3558e78da16\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63582070a73da3558e78da08\"}, {\"_id\": \"63582077daf9147a881d294a\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"635820771e260a56ab3bc08d\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"63582078941b002f4424b1f3\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"6358207847f9eb86e30019f3\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"635820784072210b717d7181\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820793e0ed0491b66b3fb\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"63582b542dcb5e7b99ff7f70\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63582b532dcb5e7b99ff7f62\"}, {\"_id\": \"63582c08ea95ff61fbc81442\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63582c07ea95ff61fbc81434\"}, {\"_id\": \"63583eb735eaecc64110cf83\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63583eb535eaecc64110cf75\"}, {\"_id\": \"63583ef135eaecc64110cf95\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63583eef35eaecc64110cf87\"}, {\"_id\": \"63583f3835eaecc64110cfa7\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63583f3535eaecc64110cf99\"}, {\"_id\": \"63583f7d35eaecc64110cfb9\", \"cows\": 2, \"buffalo\": 2, \"goats_and_sheeps\": 0, \"calves\": 1, \"bullocks\": 1, \"poultry_and_ducks\": 0, \"livestock_shelter\": [\"open\"], \"avg_daily_milk_prod_litres\": 5.0, \"animal_waste_or_cow_dung_kgs\": 1.0, \"__id\": \"63583f7b35eaecc64110cfab\"}], \"major_problems\": [{\"_id\": \"6353e6cde10045213e4835b5\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6353e6c3e10045213e4835a6\"}, {\"_id\": \"6353f4bb5e34323ab1d5269e\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6353f4ba5e34323ab1d5268f\"}, {\"_id\": \"6353fe834d4a09529d7c460e\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6353fe804d4a09529d7c45ff\"}, {\"_id\": \"63564102789e6aaf7f0ff8db\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63564100789e6aaf7f0ff8cc\"}, {\"_id\": \"6356841e6239429e9ec61236\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6356841b6239429e9ec61227\"}, {\"_id\": \"635771f998da8b98bcddcc99\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"635771f798da8b98bcddcc8a\"}, {\"_id\": \"63578187541ca16808edefca\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63578184541ca16808edefbb\"}, {\"_id\": \"6357b81e267dfc8b5f2b8dc7\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357b81c267dfc8b5f2b8db8\"}, {\"_id\": \"6357c46c4c76f4f25afe2d43\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357c46a4c76f4f25afe2d34\"}, {\"_id\": \"6357c4bb6a86421101b0aac5\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357c4b96a86421101b0aab6\"}, {\"_id\": \"6357c736492b489bfa3e1258\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357c734492b489bfa3e1249\"}, {\"_id\": \"6357ccdbc36ac55f992f3eff\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357ccd9c36ac55f992f3ef0\"}, {\"_id\": \"6357cf6c5d2fedc5a584cf9d\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357cf6a5d2fedc5a584cf8e\"}, {\"_id\": \"6357cffa5d2fedc5a584cfad\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357cff95d2fedc5a584cf9e\"}, {\"_id\": \"6357d03dcd671b45d68ea663\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357d03bcd671b45d68ea654\"}, {\"_id\": \"6357d097cdc1e4f4ae16ca4f\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357d095cdc1e4f4ae16ca40\"}, {\"_id\": \"6357d0bdcdc1e4f4ae16ca60\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357d0bccdc1e4f4ae16ca51\"}, {\"_id\": \"6357d0eacdc1e4f4ae16ca71\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357d0e8cdc1e4f4ae16ca62\"}, {\"_id\": \"6357d10be3cc3d0261f94680\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357d109e3cc3d0261f94671\"}, {\"_id\": \"6357e6105c9b36349ae3311d\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357e60e5c9b36349ae3310e\"}, {\"_id\": \"6357edced886876adaa3328b\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357edccd886876adaa3327c\"}, {\"_id\": \"6357eef337f538cf6cf77806\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357eef037f538cf6cf777f7\"}, {\"_id\": \"6357f10b844d595746fd4e80\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357f109844d595746fd4e71\"}, {\"_id\": \"6357f15f844d595746fd4e92\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357f15c844d595746fd4e83\"}, {\"_id\": \"6357f16e844d595746fd4ea3\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357f16b844d595746fd4e94\"}, {\"_id\": \"6357f60e16f2e59297778595\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357f60b16f2e59297778586\"}, {\"_id\": \"6357facf7fc70c0cb0ba4b66\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6357facc7fc70c0cb0ba4b57\"}, {\"_id\": \"6358100d0367d83c9e3ce400\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6358100b0367d83c9e3ce3f1\"}, {\"_id\": \"635810650367d83c9e3ce412\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"635810630367d83c9e3ce403\"}, {\"_id\": \"635810a30367d83c9e3ce424\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"635810a00367d83c9e3ce415\"}, {\"_id\": \"63581862967ab1b1de628cc7\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6358185f967ab1b1de628cb8\"}, {\"_id\": \"635819692d06f7ad737f733a\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"635819652d06f7ad737f732b\"}, {\"_id\": \"6358196e5a78970cea47a885\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6358196b5a78970cea47a876\"}, {\"_id\": \"635819e85a78970cea47a895\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"635819e55a78970cea47a886\"}, {\"_id\": \"635819ea2d06f7ad737f734a\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"635819e72d06f7ad737f733b\"}, {\"_id\": \"635819efd5ee746de45039d3\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"635819ecd5ee746de45039c4\"}, {\"_id\": \"63581a74d5ee746de45039e3\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63581a72d5ee746de45039d4\"}, {\"_id\": \"63581a772d06f7ad737f735a\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a775a78970cea47a8a5\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a7b09f277fb51d4b91f\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63581a7809f277fb51d4b910\"}, {\"_id\": \"63581b1670cdcf60ef1b8865\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63581b1370cdcf60ef1b8856\"}, {\"_id\": \"63581b5eb5ccf54f42a329a9\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63581b5bb5ccf54f42a3299a\"}, {\"_id\": \"63581bacb5ccf54f42a329bb\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63581ba9b5ccf54f42a329ac\"}, {\"_id\": \"63581bbdbf490f104b895dd1\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63581bbabf490f104b895dc2\"}, {\"_id\": \"63581db12aac1bd215a799dd\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63581dae2aac1bd215a799ce\"}, {\"_id\": \"63581db361d20d666ebd2559\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63581dab61d20d666ebd254a\"}, {\"_id\": \"63581db446a9930975397a75\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63581db146a9930975397a66\"}, {\"_id\": \"63581db580fbe76b2f1ac88f\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db54bf561302fd4020f\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"635820734bf561302fd40225\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"6358206f4bf561302fd40216\"}, {\"_id\": \"63582073a73da3558e78da17\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63582070a73da3558e78da08\"}, {\"_id\": \"63582077daf9147a881d294b\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"635820781e260a56ab3bc08e\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"63582078941b002f4424b1f4\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"6358207847f9eb86e30019f4\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"635820794072210b717d7182\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820793e0ed0491b66b3fc\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"63582b542dcb5e7b99ff7f71\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63582b532dcb5e7b99ff7f62\"}, {\"_id\": \"63582c09ea95ff61fbc81443\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63582c07ea95ff61fbc81434\"}, {\"_id\": \"63583eb735eaecc64110cf84\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63583eb535eaecc64110cf75\"}, {\"_id\": \"63583ef235eaecc64110cf96\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63583eef35eaecc64110cf87\"}, {\"_id\": \"63583f3835eaecc64110cfa8\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63583f3535eaecc64110cf99\"}, {\"_id\": \"63583f7e35eaecc64110cfba\", \"problems\": [\"None\"], \"Suggestions_by_villagers\": [\"None\"], \"__id\": \"63583f7b35eaecc64110cfab\"}], \"meta\": [{\"_id\": \"6353e6c3e10045213e4835a6\", \"resp_id\": \"8523705708935799\"}, {\"_id\": \"6353f4ba5e34323ab1d5268f\", \"resp_id\": \"8523705708935792\"}, {\"_id\": \"6353fe804d4a09529d7c45ff\", \"resp_id\": \"8523705708935791\"}, {\"_id\": \"63564100789e6aaf7f0ff8cc\", \"resp_id\": \"85237057089357991\"}, {\"_id\": \"6356841b6239429e9ec61227\", \"resp_id\": \"85237057089357992\"}, {\"_id\": \"635771f798da8b98bcddcc8a\", \"resp_id\": \"283194308020951\"}, {\"_id\": \"63578184541ca16808edefbb\", \"resp_id\": \"445477237436504\"}, {\"_id\": \"6357b81c267dfc8b5f2b8db8\", \"resp_id\": \"464037672978931\"}, {\"_id\": \"6357c46a4c76f4f25afe2d34\", \"resp_id\": \"711359135813148\"}, {\"_id\": \"6357c4b96a86421101b0aab6\", \"resp_id\": \"374786012203713\"}, {\"_id\": \"6357c734492b489bfa3e1249\", \"resp_id\": \"188280630183373\"}, {\"_id\": \"6357ccd9c36ac55f992f3ef0\", \"resp_id\": \"115403962159842\"}, {\"_id\": \"6357cf6a5d2fedc5a584cf8e\", \"resp_id\": \"954637686104458\"}, {\"_id\": \"6357cff95d2fedc5a584cf9e\", \"resp_id\": \"647690415149399\"}, {\"_id\": \"6357d03bcd671b45d68ea654\", \"resp_id\": \"771436699886780\"}, {\"_id\": \"6357d095cdc1e4f4ae16ca40\", \"resp_id\": \"783175823047762\"}, {\"_id\": \"6357d0bccdc1e4f4ae16ca51\", \"resp_id\": \"913705469118216\"}, {\"_id\": \"6357d0e8cdc1e4f4ae16ca62\", \"resp_id\": \"361706366604272\"}, {\"_id\": \"6357d109e3cc3d0261f94671\", \"resp_id\": \"305040848937547\"}, {\"_id\": \"6357e60e5c9b36349ae3310e\", \"resp_id\": \"380453022074356\"}, {\"_id\": \"6357edccd886876adaa3327c\", \"resp_id\": \"466135832026225\"}, {\"_id\": \"6357eef037f538cf6cf777f7\", \"resp_id\": \"154013290940880\"}, {\"_id\": \"6357f109844d595746fd4e71\", \"resp_id\": \"395251090568239\"}, {\"_id\": \"6357f15c844d595746fd4e83\", \"resp_id\": \"542429869056119\"}, {\"_id\": \"6357f16b844d595746fd4e94\", \"resp_id\": \"631674362638517\"}, {\"_id\": \"6357f60b16f2e59297778586\", \"resp_id\": \"686567145746704\"}, {\"_id\": \"6357facc7fc70c0cb0ba4b57\", \"resp_id\": \"85237057089359285\"}, {\"_id\": \"6358100b0367d83c9e3ce3f1\", \"resp_id\": \"604024471337023\"}, {\"_id\": \"635810630367d83c9e3ce403\", \"resp_id\": \"320165486112436\"}, {\"_id\": \"635810a00367d83c9e3ce415\", \"resp_id\": \"899045989112072\"}, {\"_id\": \"6358185f967ab1b1de628cb8\", \"resp_id\": \"118783174084138\"}, {\"_id\": \"635819652d06f7ad737f732b\", \"resp_id\": \"200\"}, {\"_id\": \"6358196b5a78970cea47a876\", \"resp_id\": \"100\"}, {\"_id\": \"635819e55a78970cea47a886\", \"resp_id\": \"201\"}, {\"_id\": \"635819e72d06f7ad737f733b\", \"resp_id\": \"101\"}, {\"_id\": \"635819ecd5ee746de45039c4\", \"resp_id\": \"800\"}, {\"_id\": \"63581a72d5ee746de45039d4\", \"resp_id\": \"328\"}, {\"_id\": \"63581a742d06f7ad737f734b\", \"resp_id\": \"45\"}, {\"_id\": \"63581a745a78970cea47a896\", \"resp_id\": \"726\"}, {\"_id\": \"63581a7809f277fb51d4b910\", \"resp_id\": \"801\"}, {\"_id\": \"63581b1370cdcf60ef1b8856\", \"resp_id\": \"143251646409019\"}, {\"_id\": \"63581b5bb5ccf54f42a3299a\", \"resp_id\": \"455461767109171\"}, {\"_id\": \"63581ba9b5ccf54f42a329ac\", \"resp_id\": \"544820287852342\"}, {\"_id\": \"63581bbabf490f104b895dc2\", \"resp_id\": \"263791898829717\"}, {\"_id\": \"63581dab61d20d666ebd254a\", \"resp_id\": \"732\"}, {\"_id\": \"63581dae2aac1bd215a799ce\", \"resp_id\": \"982\"}, {\"_id\": \"63581db146a9930975397a66\", \"resp_id\": \"799\"}, {\"_id\": \"63581db14bf561302fd40200\", \"resp_id\": \"521\"}, {\"_id\": \"63581db180fbe76b2f1ac880\", \"resp_id\": \"563\"}, {\"_id\": \"6358206f4bf561302fd40216\", \"resp_id\": \"477\"}, {\"_id\": \"63582070a73da3558e78da08\", \"resp_id\": \"5799\"}, {\"_id\": \"63582074daf9147a881d293c\", \"resp_id\": \"239\"}, {\"_id\": \"635820741e260a56ab3bc07f\", \"resp_id\": \"565\"}, {\"_id\": \"63582075941b002f4424b1e5\", \"resp_id\": \"511\"}, {\"_id\": \"6358207547f9eb86e30019e5\", \"resp_id\": \"873\"}, {\"_id\": \"635820764072210b717d7173\", \"resp_id\": \"8523\"}, {\"_id\": \"635820763e0ed0491b66b3ed\", \"resp_id\": \"769\"}, {\"_id\": \"63582b532dcb5e7b99ff7f62\", \"resp_id\": \"8799\"}, {\"_id\": \"63582c07ea95ff61fbc81434\", \"resp_id\": \"123323\"}, {\"_id\": \"63583eb535eaecc64110cf75\", \"resp_id\": \"964962717684255\"}, {\"_id\": \"63583eef35eaecc64110cf87\", \"resp_id\": \"400190652080677\"}, {\"_id\": \"63583f3535eaecc64110cf99\", \"resp_id\": \"820756452519558\"}, {\"_id\": \"63583f7b35eaecc64110cfab\", \"resp_id\": \"460371634161390\"}], \"govt_schemes\": [{\"_id\": \"6353e6c7e10045213e4835ae\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6353e6c3e10045213e4835a6\"}, {\"_id\": \"6353f4ba5e34323ab1d52697\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6353f4ba5e34323ab1d5268f\"}, {\"_id\": \"6353fe814d4a09529d7c4607\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6353fe804d4a09529d7c45ff\"}, {\"_id\": \"63564101789e6aaf7f0ff8d4\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63564100789e6aaf7f0ff8cc\"}, {\"_id\": \"6356841c6239429e9ec6122f\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6356841b6239429e9ec61227\"}, {\"_id\": \"635771f898da8b98bcddcc92\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"635771f798da8b98bcddcc8a\"}, {\"_id\": \"63578185541ca16808edefc3\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63578184541ca16808edefbb\"}, {\"_id\": \"6357b81d267dfc8b5f2b8dc0\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357b81c267dfc8b5f2b8db8\"}, {\"_id\": \"6357c46b4c76f4f25afe2d3c\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357c46a4c76f4f25afe2d34\"}, {\"_id\": \"6357c4ba6a86421101b0aabe\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357c4b96a86421101b0aab6\"}, {\"_id\": \"6357c735492b489bfa3e1251\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357c734492b489bfa3e1249\"}, {\"_id\": \"6357ccdac36ac55f992f3ef8\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357ccd9c36ac55f992f3ef0\"}, {\"_id\": \"6357cf6b5d2fedc5a584cf96\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357cf6a5d2fedc5a584cf8e\"}, {\"_id\": \"6357cffa5d2fedc5a584cfa6\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357cff95d2fedc5a584cf9e\"}, {\"_id\": \"6357d03ccd671b45d68ea65c\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357d03bcd671b45d68ea654\"}, {\"_id\": \"6357d096cdc1e4f4ae16ca48\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357d095cdc1e4f4ae16ca40\"}, {\"_id\": \"6357d0bdcdc1e4f4ae16ca59\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357d0bccdc1e4f4ae16ca51\"}, {\"_id\": \"6357d0e9cdc1e4f4ae16ca6a\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357d0e8cdc1e4f4ae16ca62\"}, {\"_id\": \"6357d10ae3cc3d0261f94679\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357d109e3cc3d0261f94671\"}, {\"_id\": \"6357e60f5c9b36349ae33116\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357e60e5c9b36349ae3310e\"}, {\"_id\": \"6357edcdd886876adaa33284\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357edccd886876adaa3327c\"}, {\"_id\": \"6357eef237f538cf6cf777ff\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357eef037f538cf6cf777f7\"}, {\"_id\": \"6357f10a844d595746fd4e79\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357f109844d595746fd4e71\"}, {\"_id\": \"6357f15d844d595746fd4e8b\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357f15c844d595746fd4e83\"}, {\"_id\": \"6357f16c844d595746fd4e9c\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357f16b844d595746fd4e94\"}, {\"_id\": \"6357f60d16f2e5929777858e\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357f60b16f2e59297778586\"}, {\"_id\": \"6357facd7fc70c0cb0ba4b5f\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6357facc7fc70c0cb0ba4b57\"}, {\"_id\": \"6358100c0367d83c9e3ce3f9\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6358100b0367d83c9e3ce3f1\"}, {\"_id\": \"635810640367d83c9e3ce40b\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"635810630367d83c9e3ce403\"}, {\"_id\": \"635810a10367d83c9e3ce41d\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"635810a00367d83c9e3ce415\"}, {\"_id\": \"63581861967ab1b1de628cc0\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6358185f967ab1b1de628cb8\"}, {\"_id\": \"635819672d06f7ad737f7333\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"635819652d06f7ad737f732b\"}, {\"_id\": \"6358196c5a78970cea47a87e\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6358196b5a78970cea47a876\"}, {\"_id\": \"635819e65a78970cea47a88e\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"635819e55a78970cea47a886\"}, {\"_id\": \"635819e82d06f7ad737f7343\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"635819e72d06f7ad737f733b\"}, {\"_id\": \"635819eed5ee746de45039cc\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"635819ecd5ee746de45039c4\"}, {\"_id\": \"63581a73d5ee746de45039dc\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63581a72d5ee746de45039d4\"}, {\"_id\": \"63581a752d06f7ad737f7353\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a755a78970cea47a89e\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a7909f277fb51d4b918\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63581a7809f277fb51d4b910\"}, {\"_id\": \"63581b1470cdcf60ef1b885e\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63581b1370cdcf60ef1b8856\"}, {\"_id\": \"63581b5cb5ccf54f42a329a2\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63581b5bb5ccf54f42a3299a\"}, {\"_id\": \"63581baab5ccf54f42a329b4\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63581ba9b5ccf54f42a329ac\"}, {\"_id\": \"63581bbbbf490f104b895dca\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63581bbabf490f104b895dc2\"}, {\"_id\": \"63581daf2aac1bd215a799d6\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63581dae2aac1bd215a799ce\"}, {\"_id\": \"63581db161d20d666ebd2552\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63581dab61d20d666ebd254a\"}, {\"_id\": \"63581db246a9930975397a6e\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63581db146a9930975397a66\"}, {\"_id\": \"63581db34bf561302fd40208\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db380fbe76b2f1ac888\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"635820714bf561302fd4021e\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"6358206f4bf561302fd40216\"}, {\"_id\": \"63582071a73da3558e78da10\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63582070a73da3558e78da08\"}, {\"_id\": \"63582076daf9147a881d2944\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"635820761e260a56ab3bc087\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"63582076941b002f4424b1ed\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"6358207647f9eb86e30019ed\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"635820774072210b717d717b\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820773e0ed0491b66b3f5\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"63582b532dcb5e7b99ff7f6a\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63582b532dcb5e7b99ff7f62\"}, {\"_id\": \"63582c08ea95ff61fbc8143c\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63582c07ea95ff61fbc81434\"}, {\"_id\": \"63583eb635eaecc64110cf7d\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63583eb535eaecc64110cf75\"}, {\"_id\": \"63583ef035eaecc64110cf8f\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63583eef35eaecc64110cf87\"}, {\"_id\": \"63583f3635eaecc64110cfa1\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63583f3535eaecc64110cf99\"}, {\"_id\": \"63583f7c35eaecc64110cfb3\", \"PM_jan_dhan_yojana\": 2, \"PM_ujjawala_yojana\": 3, \"PM_awas_yojana\": 2, \"sukanya_samriddhi_yojana\": 3, \"mudra_yojana\": 0, \"PM_jivan_jyoti_yojana\": 0, \"PM_suraksha_bima_yojana\": 0, \"atal_pension_yojana\": 0, \"fasal_bima_yojana\": 0, \"kaushal_vikas_yojana\": 0, \"krishi_sinchai_yojana\": 0, \"jan_aushadhi_yojana\": 0, \"SBM_toilet\": 0, \"soil_health_card\": 0, \"ladli_lakshmi_yojana\": 0, \"janni_suraksha_yojana\": 0, \"kisan_credit_card\": 0, \"__id\": \"63583f7b35eaecc64110cfab\"}], \"respondent_prof\": [{\"_id\": \"6353e6c4e10045213e4835a7\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"8523705708935799\", \"__id\": \"6353e6c3e10045213e4835a6\"}, {\"_id\": \"6353f4ba5e34323ab1d52690\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"8523705708935792\", \"__id\": \"6353f4ba5e34323ab1d5268f\"}, {\"_id\": \"6353fe814d4a09529d7c4600\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"239784792112\", \"id_type\": \"AC\", \"id_no\": \"8523705708935791\", \"__id\": \"6353fe804d4a09529d7c45ff\"}, {\"_id\": \"63564100789e6aaf7f0ff8cd\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"85237057089357991\", \"__id\": \"63564100789e6aaf7f0ff8cc\"}, {\"_id\": \"6356841b6239429e9ec61228\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"85237057089357992\", \"__id\": \"6356841b6239429e9ec61227\"}, {\"_id\": \"635771f798da8b98bcddcc8b\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"283194308020951\", \"__id\": \"635771f798da8b98bcddcc8a\"}, {\"_id\": \"63578185541ca16808edefbc\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"445477237436504\", \"__id\": \"63578184541ca16808edefbb\"}, {\"_id\": \"6357b81c267dfc8b5f2b8db9\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"464037672978931\", \"__id\": \"6357b81c267dfc8b5f2b8db8\"}, {\"_id\": \"6357c46b4c76f4f25afe2d35\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"711359135813148\", \"__id\": \"6357c46a4c76f4f25afe2d34\"}, {\"_id\": \"6357c4b96a86421101b0aab7\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"374786012203713\", \"__id\": \"6357c4b96a86421101b0aab6\"}, {\"_id\": \"6357c735492b489bfa3e124a\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"188280630183373\", \"__id\": \"6357c734492b489bfa3e1249\"}, {\"_id\": \"6357ccd9c36ac55f992f3ef1\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"115403962159842\", \"__id\": \"6357ccd9c36ac55f992f3ef0\"}, {\"_id\": \"6357cf6b5d2fedc5a584cf8f\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"954637686104458\", \"__id\": \"6357cf6a5d2fedc5a584cf8e\"}, {\"_id\": \"6357cff95d2fedc5a584cf9f\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"647690415149399\", \"__id\": \"6357cff95d2fedc5a584cf9e\"}, {\"_id\": \"6357d03bcd671b45d68ea655\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"771436699886780\", \"__id\": \"6357d03bcd671b45d68ea654\"}, {\"_id\": \"6357d095cdc1e4f4ae16ca41\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"783175823047762\", \"__id\": \"6357d095cdc1e4f4ae16ca40\"}, {\"_id\": \"6357d0bccdc1e4f4ae16ca52\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"913705469118216\", \"__id\": \"6357d0bccdc1e4f4ae16ca51\"}, {\"_id\": \"6357d0e8cdc1e4f4ae16ca63\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"361706366604272\", \"__id\": \"6357d0e8cdc1e4f4ae16ca62\"}, {\"_id\": \"6357d109e3cc3d0261f94672\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"305040848937547\", \"__id\": \"6357d109e3cc3d0261f94671\"}, {\"_id\": \"6357e60e5c9b36349ae3310f\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"380453022074356\", \"__id\": \"6357e60e5c9b36349ae3310e\"}, {\"_id\": \"6357edccd886876adaa3327d\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"466135832026225\", \"__id\": \"6357edccd886876adaa3327c\"}, {\"_id\": \"6357eef137f538cf6cf777f8\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"154013290940880\", \"__id\": \"6357eef037f538cf6cf777f7\"}, {\"_id\": \"6357f109844d595746fd4e72\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"395251090568239\", \"__id\": \"6357f109844d595746fd4e71\"}, {\"_id\": \"6357f15c844d595746fd4e84\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"542429869056119\", \"__id\": \"6357f15c844d595746fd4e83\"}, {\"_id\": \"6357f16b844d595746fd4e95\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"631674362638517\", \"__id\": \"6357f16b844d595746fd4e94\"}, {\"_id\": \"6357f60c16f2e59297778587\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"686567145746704\", \"__id\": \"6357f60b16f2e59297778586\"}, {\"_id\": \"6357facc7fc70c0cb0ba4b58\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"85237057089359285\", \"__id\": \"6357facc7fc70c0cb0ba4b57\"}, {\"_id\": \"6358100b0367d83c9e3ce3f2\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"604024471337023\", \"__id\": \"6358100b0367d83c9e3ce3f1\"}, {\"_id\": \"635810630367d83c9e3ce404\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"320165486112436\", \"__id\": \"635810630367d83c9e3ce403\"}, {\"_id\": \"635810a00367d83c9e3ce416\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"899045989112072\", \"__id\": \"635810a00367d83c9e3ce415\"}, {\"_id\": \"63581860967ab1b1de628cb9\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"118783174084138\", \"__id\": \"6358185f967ab1b1de628cb8\"}, {\"_id\": \"635819652d06f7ad737f732c\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"200\", \"__id\": \"635819652d06f7ad737f732b\"}, {\"_id\": \"6358196b5a78970cea47a877\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"100\", \"__id\": \"6358196b5a78970cea47a876\"}, {\"_id\": \"635819e55a78970cea47a887\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"201\", \"__id\": \"635819e55a78970cea47a886\"}, {\"_id\": \"635819e72d06f7ad737f733c\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"101\", \"__id\": \"635819e72d06f7ad737f733b\"}, {\"_id\": \"635819edd5ee746de45039c5\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"800\", \"__id\": \"635819ecd5ee746de45039c4\"}, {\"_id\": \"63581a72d5ee746de45039d5\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"328\", \"__id\": \"63581a72d5ee746de45039d4\"}, {\"_id\": \"63581a742d06f7ad737f734c\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"45\", \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a745a78970cea47a897\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"726\", \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a7809f277fb51d4b911\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"801\", \"__id\": \"63581a7809f277fb51d4b910\"}, {\"_id\": \"63581b1370cdcf60ef1b8857\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"143251646409019\", \"__id\": \"63581b1370cdcf60ef1b8856\"}, {\"_id\": \"63581b5bb5ccf54f42a3299b\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"455461767109171\", \"__id\": \"63581b5bb5ccf54f42a3299a\"}, {\"_id\": \"63581ba9b5ccf54f42a329ad\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"544820287852342\", \"__id\": \"63581ba9b5ccf54f42a329ac\"}, {\"_id\": \"63581bbbbf490f104b895dc3\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"263791898829717\", \"__id\": \"63581bbabf490f104b895dc2\"}, {\"_id\": \"63581dae2aac1bd215a799cf\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"982\", \"__id\": \"63581dae2aac1bd215a799ce\"}, {\"_id\": \"63581dab61d20d666ebd254b\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"732\", \"__id\": \"63581dab61d20d666ebd254a\"}, {\"_id\": \"63581db146a9930975397a67\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"799\", \"__id\": \"63581db146a9930975397a66\"}, {\"_id\": \"63581db24bf561302fd40201\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"521\", \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db280fbe76b2f1ac881\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"563\", \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"635820704bf561302fd40217\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"477\", \"__id\": \"6358206f4bf561302fd40216\"}, {\"_id\": \"63582070a73da3558e78da09\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"7247247241\", \"id_type\": \"AC\", \"id_no\": \"5799\", \"__id\": \"63582070a73da3558e78da08\"}, {\"_id\": \"63582075daf9147a881d293d\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"239\", \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"635820751e260a56ab3bc080\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"565\", \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"63582075941b002f4424b1e6\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"511\", \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"6358207547f9eb86e30019e6\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"873\", \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"635820764072210b717d7174\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"8523\", \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820763e0ed0491b66b3ee\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"769\", \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"63582b532dcb5e7b99ff7f63\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"8799\", \"__id\": \"63582b532dcb5e7b99ff7f62\"}, {\"_id\": \"63582c07ea95ff61fbc81435\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"123323\", \"__id\": \"63582c07ea95ff61fbc81434\"}, {\"_id\": \"63583eb535eaecc64110cf76\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"964962717684255\", \"__id\": \"63583eb535eaecc64110cf75\"}, {\"_id\": \"63583eef35eaecc64110cf88\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"400190652080677\", \"__id\": \"63583eef35eaecc64110cf87\"}, {\"_id\": \"63583f3535eaecc64110cf9a\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"820756452519558\", \"__id\": \"63583f3535eaecc64110cf99\"}, {\"_id\": \"63583f7b35eaecc64110cfac\", \"respondents_name\": \"Hemanth\", \"respondents_age\": 20, \"relation_w_hoh\": \"Son\", \"respondents_contact\": \"8479239724\", \"id_type\": \"AC\", \"id_no\": \"460371634161390\", \"__id\": \"63583f7b35eaecc64110cfab\"}], \"mig_status\": [{\"_id\": \"6353e6c6e10045213e4835ad\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6353e6c3e10045213e4835a6\"}, {\"_id\": \"6353f4ba5e34323ab1d52696\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6353f4ba5e34323ab1d5268f\"}, {\"_id\": \"6353fe814d4a09529d7c4606\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6353fe804d4a09529d7c45ff\"}, {\"_id\": \"63564101789e6aaf7f0ff8d3\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63564100789e6aaf7f0ff8cc\"}, {\"_id\": \"6356841c6239429e9ec6122e\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6356841b6239429e9ec61227\"}, {\"_id\": \"635771f798da8b98bcddcc91\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"635771f798da8b98bcddcc8a\"}, {\"_id\": \"63578185541ca16808edefc2\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63578184541ca16808edefbb\"}, {\"_id\": \"6357b81c267dfc8b5f2b8dbf\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357b81c267dfc8b5f2b8db8\"}, {\"_id\": \"6357c46b4c76f4f25afe2d3b\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357c46a4c76f4f25afe2d34\"}, {\"_id\": \"6357c4ba6a86421101b0aabd\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357c4b96a86421101b0aab6\"}, {\"_id\": \"6357c735492b489bfa3e1250\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357c734492b489bfa3e1249\"}, {\"_id\": \"6357ccdac36ac55f992f3ef7\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357ccd9c36ac55f992f3ef0\"}, {\"_id\": \"6357cf6b5d2fedc5a584cf95\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357cf6a5d2fedc5a584cf8e\"}, {\"_id\": \"6357cff95d2fedc5a584cfa5\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357cff95d2fedc5a584cf9e\"}, {\"_id\": \"6357d03bcd671b45d68ea65b\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357d03bcd671b45d68ea654\"}, {\"_id\": \"6357d096cdc1e4f4ae16ca47\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357d095cdc1e4f4ae16ca40\"}, {\"_id\": \"6357d0bccdc1e4f4ae16ca58\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357d0bccdc1e4f4ae16ca51\"}, {\"_id\": \"6357d0e8cdc1e4f4ae16ca69\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357d0e8cdc1e4f4ae16ca62\"}, {\"_id\": \"6357d10ae3cc3d0261f94678\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357d109e3cc3d0261f94671\"}, {\"_id\": \"6357e60f5c9b36349ae33115\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357e60e5c9b36349ae3310e\"}, {\"_id\": \"6357edcdd886876adaa33283\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357edccd886876adaa3327c\"}, {\"_id\": \"6357eef237f538cf6cf777fe\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357eef037f538cf6cf777f7\"}, {\"_id\": \"6357f10a844d595746fd4e78\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357f109844d595746fd4e71\"}, {\"_id\": \"6357f15d844d595746fd4e8a\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357f15c844d595746fd4e83\"}, {\"_id\": \"6357f16c844d595746fd4e9b\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357f16b844d595746fd4e94\"}, {\"_id\": \"6357f60c16f2e5929777858d\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357f60b16f2e59297778586\"}, {\"_id\": \"6357facd7fc70c0cb0ba4b5e\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6357facc7fc70c0cb0ba4b57\"}, {\"_id\": \"6358100c0367d83c9e3ce3f8\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6358100b0367d83c9e3ce3f1\"}, {\"_id\": \"635810640367d83c9e3ce40a\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"635810630367d83c9e3ce403\"}, {\"_id\": \"635810a10367d83c9e3ce41c\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"635810a00367d83c9e3ce415\"}, {\"_id\": \"63581860967ab1b1de628cbf\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6358185f967ab1b1de628cb8\"}, {\"_id\": \"635819662d06f7ad737f7332\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"635819652d06f7ad737f732b\"}, {\"_id\": \"6358196c5a78970cea47a87d\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6358196b5a78970cea47a876\"}, {\"_id\": \"635819e65a78970cea47a88d\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"635819e55a78970cea47a886\"}, {\"_id\": \"635819e82d06f7ad737f7342\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"635819e72d06f7ad737f733b\"}, {\"_id\": \"635819edd5ee746de45039cb\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"635819ecd5ee746de45039c4\"}, {\"_id\": \"63581a73d5ee746de45039db\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63581a72d5ee746de45039d4\"}, {\"_id\": \"63581a752d06f7ad737f7352\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a755a78970cea47a89d\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a7909f277fb51d4b917\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63581a7809f277fb51d4b910\"}, {\"_id\": \"63581b1470cdcf60ef1b885d\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63581b1370cdcf60ef1b8856\"}, {\"_id\": \"63581b5cb5ccf54f42a329a1\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63581b5bb5ccf54f42a3299a\"}, {\"_id\": \"63581baab5ccf54f42a329b3\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63581ba9b5ccf54f42a329ac\"}, {\"_id\": \"63581bbbbf490f104b895dc9\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63581bbabf490f104b895dc2\"}, {\"_id\": \"63581daf2aac1bd215a799d5\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63581dae2aac1bd215a799ce\"}, {\"_id\": \"63581db161d20d666ebd2551\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63581dab61d20d666ebd254a\"}, {\"_id\": \"63581db246a9930975397a6d\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63581db146a9930975397a66\"}, {\"_id\": \"63581db24bf561302fd40207\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db380fbe76b2f1ac887\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"635820714bf561302fd4021d\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"6358206f4bf561302fd40216\"}, {\"_id\": \"63582071a73da3558e78da0f\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63582070a73da3558e78da08\"}, {\"_id\": \"63582075daf9147a881d2943\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"635820761e260a56ab3bc086\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"63582076941b002f4424b1ec\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"6358207647f9eb86e30019ec\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"635820774072210b717d717a\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820773e0ed0491b66b3f4\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"63582b532dcb5e7b99ff7f69\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63582b532dcb5e7b99ff7f62\"}, {\"_id\": \"63582c08ea95ff61fbc8143b\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63582c07ea95ff61fbc81434\"}, {\"_id\": \"63583eb635eaecc64110cf7c\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63583eb535eaecc64110cf75\"}, {\"_id\": \"63583ef035eaecc64110cf8e\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63583eef35eaecc64110cf87\"}, {\"_id\": \"63583f3635eaecc64110cfa0\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63583f3535eaecc64110cf99\"}, {\"_id\": \"63583f7c35eaecc64110cfb2\", \"are_migrants\": false, \"num_migrants\": 0, \"migration_period_months\": 0.0, \"years_since_migration\": 0.0, \"__id\": \"63583f7b35eaecc64110cfab\"}], \"fam_info\": [{\"_id\": \"6353e6c6e10045213e4835a9\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6353e6c3e10045213e4835a6\"}, {\"_id\": \"6353e6c6e10045213e4835aa\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6353e6c3e10045213e4835a6\"}, {\"_id\": \"6353e6c6e10045213e4835ab\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6353e6c3e10045213e4835a6\"}, {\"_id\": \"6353e6c6e10045213e4835ac\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6353e6c3e10045213e4835a6\"}, {\"_id\": \"6353f4ba5e34323ab1d52692\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6353f4ba5e34323ab1d5268f\"}, {\"_id\": \"6353f4ba5e34323ab1d52693\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6353f4ba5e34323ab1d5268f\"}, {\"_id\": \"6353f4ba5e34323ab1d52694\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6353f4ba5e34323ab1d5268f\"}, {\"_id\": \"6353f4ba5e34323ab1d52695\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6353f4ba5e34323ab1d5268f\"}, {\"_id\": \"6353fe814d4a09529d7c4602\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6353fe804d4a09529d7c45ff\"}, {\"_id\": \"6353fe814d4a09529d7c4603\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6353fe804d4a09529d7c45ff\"}, {\"_id\": \"6353fe814d4a09529d7c4604\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6353fe804d4a09529d7c45ff\"}, {\"_id\": \"6353fe814d4a09529d7c4605\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6353fe804d4a09529d7c45ff\"}, {\"_id\": \"63564101789e6aaf7f0ff8cf\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63564100789e6aaf7f0ff8cc\"}, {\"_id\": \"63564101789e6aaf7f0ff8d0\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63564100789e6aaf7f0ff8cc\"}, {\"_id\": \"63564101789e6aaf7f0ff8d1\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63564100789e6aaf7f0ff8cc\"}, {\"_id\": \"63564101789e6aaf7f0ff8d2\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63564100789e6aaf7f0ff8cc\"}, {\"_id\": \"6356841c6239429e9ec6122a\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6356841b6239429e9ec61227\"}, {\"_id\": \"6356841c6239429e9ec6122b\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6356841b6239429e9ec61227\"}, {\"_id\": \"6356841c6239429e9ec6122c\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6356841b6239429e9ec61227\"}, {\"_id\": \"6356841c6239429e9ec6122d\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6356841b6239429e9ec61227\"}, {\"_id\": \"635771f798da8b98bcddcc8d\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635771f798da8b98bcddcc8a\"}, {\"_id\": \"635771f798da8b98bcddcc8e\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635771f798da8b98bcddcc8a\"}, {\"_id\": \"635771f798da8b98bcddcc8f\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635771f798da8b98bcddcc8a\"}, {\"_id\": \"635771f798da8b98bcddcc90\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635771f798da8b98bcddcc8a\"}, {\"_id\": \"63578185541ca16808edefbe\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63578184541ca16808edefbb\"}, {\"_id\": \"63578185541ca16808edefbf\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63578184541ca16808edefbb\"}, {\"_id\": \"63578185541ca16808edefc0\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63578184541ca16808edefbb\"}, {\"_id\": \"63578185541ca16808edefc1\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63578184541ca16808edefbb\"}, {\"_id\": \"6357b81c267dfc8b5f2b8dbb\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357b81c267dfc8b5f2b8db8\"}, {\"_id\": \"6357b81c267dfc8b5f2b8dbc\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357b81c267dfc8b5f2b8db8\"}, {\"_id\": \"6357b81c267dfc8b5f2b8dbd\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357b81c267dfc8b5f2b8db8\"}, {\"_id\": \"6357b81c267dfc8b5f2b8dbe\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357b81c267dfc8b5f2b8db8\"}, {\"_id\": \"6357c46b4c76f4f25afe2d37\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357c46a4c76f4f25afe2d34\"}, {\"_id\": \"6357c46b4c76f4f25afe2d38\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357c46a4c76f4f25afe2d34\"}, {\"_id\": \"6357c46b4c76f4f25afe2d39\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357c46a4c76f4f25afe2d34\"}, {\"_id\": \"6357c46b4c76f4f25afe2d3a\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357c46a4c76f4f25afe2d34\"}, {\"_id\": \"6357c4b96a86421101b0aab9\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357c4b96a86421101b0aab6\"}, {\"_id\": \"6357c4b96a86421101b0aaba\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357c4b96a86421101b0aab6\"}, {\"_id\": \"6357c4b96a86421101b0aabb\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357c4b96a86421101b0aab6\"}, {\"_id\": \"6357c4b96a86421101b0aabc\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357c4b96a86421101b0aab6\"}, {\"_id\": \"6357c735492b489bfa3e124c\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357c734492b489bfa3e1249\"}, {\"_id\": \"6357c735492b489bfa3e124d\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357c734492b489bfa3e1249\"}, {\"_id\": \"6357c735492b489bfa3e124e\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357c734492b489bfa3e1249\"}, {\"_id\": \"6357c735492b489bfa3e124f\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357c734492b489bfa3e1249\"}, {\"_id\": \"6357ccdac36ac55f992f3ef3\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357ccd9c36ac55f992f3ef0\"}, {\"_id\": \"6357ccdac36ac55f992f3ef4\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357ccd9c36ac55f992f3ef0\"}, {\"_id\": \"6357ccdac36ac55f992f3ef5\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357ccd9c36ac55f992f3ef0\"}, {\"_id\": \"6357ccdac36ac55f992f3ef6\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357ccd9c36ac55f992f3ef0\"}, {\"_id\": \"6357cf6b5d2fedc5a584cf91\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357cf6a5d2fedc5a584cf8e\"}, {\"_id\": \"6357cf6b5d2fedc5a584cf92\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357cf6a5d2fedc5a584cf8e\"}, {\"_id\": \"6357cf6b5d2fedc5a584cf93\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357cf6a5d2fedc5a584cf8e\"}, {\"_id\": \"6357cf6b5d2fedc5a584cf94\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357cf6a5d2fedc5a584cf8e\"}, {\"_id\": \"6357cff95d2fedc5a584cfa1\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357cff95d2fedc5a584cf9e\"}, {\"_id\": \"6357cff95d2fedc5a584cfa2\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357cff95d2fedc5a584cf9e\"}, {\"_id\": \"6357cff95d2fedc5a584cfa3\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357cff95d2fedc5a584cf9e\"}, {\"_id\": \"6357cff95d2fedc5a584cfa4\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357cff95d2fedc5a584cf9e\"}, {\"_id\": \"6357d03bcd671b45d68ea657\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d03bcd671b45d68ea654\"}, {\"_id\": \"6357d03bcd671b45d68ea658\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d03bcd671b45d68ea654\"}, {\"_id\": \"6357d03bcd671b45d68ea659\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d03bcd671b45d68ea654\"}, {\"_id\": \"6357d03bcd671b45d68ea65a\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d03bcd671b45d68ea654\"}, {\"_id\": \"6357d096cdc1e4f4ae16ca43\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d095cdc1e4f4ae16ca40\"}, {\"_id\": \"6357d096cdc1e4f4ae16ca44\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d095cdc1e4f4ae16ca40\"}, {\"_id\": \"6357d096cdc1e4f4ae16ca45\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d095cdc1e4f4ae16ca40\"}, {\"_id\": \"6357d096cdc1e4f4ae16ca46\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d095cdc1e4f4ae16ca40\"}, {\"_id\": \"6357d0bccdc1e4f4ae16ca54\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d0bccdc1e4f4ae16ca51\"}, {\"_id\": \"6357d0bccdc1e4f4ae16ca55\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d0bccdc1e4f4ae16ca51\"}, {\"_id\": \"6357d0bccdc1e4f4ae16ca56\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d0bccdc1e4f4ae16ca51\"}, {\"_id\": \"6357d0bccdc1e4f4ae16ca57\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d0bccdc1e4f4ae16ca51\"}, {\"_id\": \"6357d0e8cdc1e4f4ae16ca65\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d0e8cdc1e4f4ae16ca62\"}, {\"_id\": \"6357d0e8cdc1e4f4ae16ca66\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d0e8cdc1e4f4ae16ca62\"}, {\"_id\": \"6357d0e8cdc1e4f4ae16ca67\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d0e8cdc1e4f4ae16ca62\"}, {\"_id\": \"6357d0e8cdc1e4f4ae16ca68\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d0e8cdc1e4f4ae16ca62\"}, {\"_id\": \"6357d10ae3cc3d0261f94674\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d109e3cc3d0261f94671\"}, {\"_id\": \"6357d10ae3cc3d0261f94675\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d109e3cc3d0261f94671\"}, {\"_id\": \"6357d10ae3cc3d0261f94676\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d109e3cc3d0261f94671\"}, {\"_id\": \"6357d10ae3cc3d0261f94677\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357d109e3cc3d0261f94671\"}, {\"_id\": \"6357e60e5c9b36349ae33111\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357e60e5c9b36349ae3310e\"}, {\"_id\": \"6357e60e5c9b36349ae33112\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357e60e5c9b36349ae3310e\"}, {\"_id\": \"6357e60e5c9b36349ae33113\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357e60e5c9b36349ae3310e\"}, {\"_id\": \"6357e60e5c9b36349ae33114\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357e60e5c9b36349ae3310e\"}, {\"_id\": \"6357edccd886876adaa3327f\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357edccd886876adaa3327c\"}, {\"_id\": \"6357edccd886876adaa33280\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357edccd886876adaa3327c\"}, {\"_id\": \"6357edccd886876adaa33281\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357edccd886876adaa3327c\"}, {\"_id\": \"6357edccd886876adaa33282\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357edccd886876adaa3327c\"}, {\"_id\": \"6357eef137f538cf6cf777fa\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357eef037f538cf6cf777f7\"}, {\"_id\": \"6357eef137f538cf6cf777fb\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357eef037f538cf6cf777f7\"}, {\"_id\": \"6357eef137f538cf6cf777fc\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357eef037f538cf6cf777f7\"}, {\"_id\": \"6357eef137f538cf6cf777fd\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357eef037f538cf6cf777f7\"}, {\"_id\": \"6357f109844d595746fd4e74\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357f109844d595746fd4e71\"}, {\"_id\": \"6357f109844d595746fd4e75\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357f109844d595746fd4e71\"}, {\"_id\": \"6357f109844d595746fd4e76\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357f109844d595746fd4e71\"}, {\"_id\": \"6357f109844d595746fd4e77\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357f109844d595746fd4e71\"}, {\"_id\": \"6357f15d844d595746fd4e86\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357f15c844d595746fd4e83\"}, {\"_id\": \"6357f15d844d595746fd4e87\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357f15c844d595746fd4e83\"}, {\"_id\": \"6357f15d844d595746fd4e88\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357f15c844d595746fd4e83\"}, {\"_id\": \"6357f15d844d595746fd4e89\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357f15c844d595746fd4e83\"}, {\"_id\": \"6357f16c844d595746fd4e97\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357f16b844d595746fd4e94\"}, {\"_id\": \"6357f16c844d595746fd4e98\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357f16b844d595746fd4e94\"}, {\"_id\": \"6357f16c844d595746fd4e99\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357f16b844d595746fd4e94\"}, {\"_id\": \"6357f16c844d595746fd4e9a\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357f16b844d595746fd4e94\"}, {\"_id\": \"6357f60c16f2e59297778589\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357f60b16f2e59297778586\"}, {\"_id\": \"6357f60c16f2e5929777858a\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357f60b16f2e59297778586\"}, {\"_id\": \"6357f60c16f2e5929777858b\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357f60b16f2e59297778586\"}, {\"_id\": \"6357f60c16f2e5929777858c\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357f60b16f2e59297778586\"}, {\"_id\": \"6357facd7fc70c0cb0ba4b5a\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357facc7fc70c0cb0ba4b57\"}, {\"_id\": \"6357facd7fc70c0cb0ba4b5b\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357facc7fc70c0cb0ba4b57\"}, {\"_id\": \"6357facd7fc70c0cb0ba4b5c\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357facc7fc70c0cb0ba4b57\"}, {\"_id\": \"6357facd7fc70c0cb0ba4b5d\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6357facc7fc70c0cb0ba4b57\"}, {\"_id\": \"6358100b0367d83c9e3ce3f4\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6358100b0367d83c9e3ce3f1\"}, {\"_id\": \"6358100b0367d83c9e3ce3f5\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6358100b0367d83c9e3ce3f1\"}, {\"_id\": \"6358100b0367d83c9e3ce3f6\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6358100b0367d83c9e3ce3f1\"}, {\"_id\": \"6358100b0367d83c9e3ce3f7\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6358100b0367d83c9e3ce3f1\"}, {\"_id\": \"635810640367d83c9e3ce406\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635810630367d83c9e3ce403\"}, {\"_id\": \"635810640367d83c9e3ce407\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635810630367d83c9e3ce403\"}, {\"_id\": \"635810640367d83c9e3ce408\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635810630367d83c9e3ce403\"}, {\"_id\": \"635810640367d83c9e3ce409\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635810630367d83c9e3ce403\"}, {\"_id\": \"635810a10367d83c9e3ce418\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635810a00367d83c9e3ce415\"}, {\"_id\": \"635810a10367d83c9e3ce419\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635810a00367d83c9e3ce415\"}, {\"_id\": \"635810a10367d83c9e3ce41a\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635810a00367d83c9e3ce415\"}, {\"_id\": \"635810a10367d83c9e3ce41b\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635810a00367d83c9e3ce415\"}, {\"_id\": \"63581860967ab1b1de628cbb\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6358185f967ab1b1de628cb8\"}, {\"_id\": \"63581860967ab1b1de628cbc\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6358185f967ab1b1de628cb8\"}, {\"_id\": \"63581860967ab1b1de628cbd\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6358185f967ab1b1de628cb8\"}, {\"_id\": \"63581860967ab1b1de628cbe\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6358185f967ab1b1de628cb8\"}, {\"_id\": \"635819662d06f7ad737f732e\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635819652d06f7ad737f732b\"}, {\"_id\": \"635819662d06f7ad737f732f\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635819652d06f7ad737f732b\"}, {\"_id\": \"635819662d06f7ad737f7330\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635819652d06f7ad737f732b\"}, {\"_id\": \"635819662d06f7ad737f7331\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635819652d06f7ad737f732b\"}, {\"_id\": \"6358196c5a78970cea47a879\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6358196b5a78970cea47a876\"}, {\"_id\": \"6358196c5a78970cea47a87a\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6358196b5a78970cea47a876\"}, {\"_id\": \"6358196c5a78970cea47a87b\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6358196b5a78970cea47a876\"}, {\"_id\": \"6358196c5a78970cea47a87c\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6358196b5a78970cea47a876\"}, {\"_id\": \"635819e65a78970cea47a889\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635819e55a78970cea47a886\"}, {\"_id\": \"635819e65a78970cea47a88a\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635819e55a78970cea47a886\"}, {\"_id\": \"635819e65a78970cea47a88b\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635819e55a78970cea47a886\"}, {\"_id\": \"635819e65a78970cea47a88c\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635819e55a78970cea47a886\"}, {\"_id\": \"635819e82d06f7ad737f733e\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635819e72d06f7ad737f733b\"}, {\"_id\": \"635819e82d06f7ad737f733f\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635819e72d06f7ad737f733b\"}, {\"_id\": \"635819e82d06f7ad737f7340\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635819e72d06f7ad737f733b\"}, {\"_id\": \"635819e82d06f7ad737f7341\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635819e72d06f7ad737f733b\"}, {\"_id\": \"635819edd5ee746de45039c7\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635819ecd5ee746de45039c4\"}, {\"_id\": \"635819edd5ee746de45039c8\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635819ecd5ee746de45039c4\"}, {\"_id\": \"635819edd5ee746de45039c9\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635819ecd5ee746de45039c4\"}, {\"_id\": \"635819edd5ee746de45039ca\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635819ecd5ee746de45039c4\"}, {\"_id\": \"63581a73d5ee746de45039d7\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581a72d5ee746de45039d4\"}, {\"_id\": \"63581a73d5ee746de45039d8\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581a72d5ee746de45039d4\"}, {\"_id\": \"63581a73d5ee746de45039d9\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581a72d5ee746de45039d4\"}, {\"_id\": \"63581a73d5ee746de45039da\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581a72d5ee746de45039d4\"}, {\"_id\": \"63581a752d06f7ad737f734e\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a752d06f7ad737f734f\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a752d06f7ad737f7350\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a752d06f7ad737f7351\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a755a78970cea47a899\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a755a78970cea47a89a\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a755a78970cea47a89b\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a755a78970cea47a89c\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581a745a78970cea47a896\"}, {\"_id\": \"63581a7909f277fb51d4b913\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581a7809f277fb51d4b910\"}, {\"_id\": \"63581a7909f277fb51d4b914\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581a7809f277fb51d4b910\"}, {\"_id\": \"63581a7909f277fb51d4b915\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581a7809f277fb51d4b910\"}, {\"_id\": \"63581a7909f277fb51d4b916\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581a7809f277fb51d4b910\"}, {\"_id\": \"63581b1470cdcf60ef1b8859\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581b1370cdcf60ef1b8856\"}, {\"_id\": \"63581b1470cdcf60ef1b885a\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581b1370cdcf60ef1b8856\"}, {\"_id\": \"63581b1470cdcf60ef1b885b\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581b1370cdcf60ef1b8856\"}, {\"_id\": \"63581b1470cdcf60ef1b885c\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581b1370cdcf60ef1b8856\"}, {\"_id\": \"63581b5cb5ccf54f42a3299d\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581b5bb5ccf54f42a3299a\"}, {\"_id\": \"63581b5cb5ccf54f42a3299e\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581b5bb5ccf54f42a3299a\"}, {\"_id\": \"63581b5cb5ccf54f42a3299f\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581b5bb5ccf54f42a3299a\"}, {\"_id\": \"63581b5cb5ccf54f42a329a0\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581b5bb5ccf54f42a3299a\"}, {\"_id\": \"63581baab5ccf54f42a329af\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581ba9b5ccf54f42a329ac\"}, {\"_id\": \"63581baab5ccf54f42a329b0\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581ba9b5ccf54f42a329ac\"}, {\"_id\": \"63581baab5ccf54f42a329b1\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581ba9b5ccf54f42a329ac\"}, {\"_id\": \"63581baab5ccf54f42a329b2\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581ba9b5ccf54f42a329ac\"}, {\"_id\": \"63581bbbbf490f104b895dc5\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581bbabf490f104b895dc2\"}, {\"_id\": \"63581bbbbf490f104b895dc6\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581bbabf490f104b895dc2\"}, {\"_id\": \"63581bbbbf490f104b895dc7\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581bbabf490f104b895dc2\"}, {\"_id\": \"63581bbbbf490f104b895dc8\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581bbabf490f104b895dc2\"}, {\"_id\": \"63581daf2aac1bd215a799d1\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581dae2aac1bd215a799ce\"}, {\"_id\": \"63581daf2aac1bd215a799d2\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581dae2aac1bd215a799ce\"}, {\"_id\": \"63581daf2aac1bd215a799d3\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581dae2aac1bd215a799ce\"}, {\"_id\": \"63581daf2aac1bd215a799d4\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581dae2aac1bd215a799ce\"}, {\"_id\": \"63581db061d20d666ebd254d\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581dab61d20d666ebd254a\"}, {\"_id\": \"63581db061d20d666ebd254e\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581dab61d20d666ebd254a\"}, {\"_id\": \"63581db061d20d666ebd254f\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581dab61d20d666ebd254a\"}, {\"_id\": \"63581db061d20d666ebd2550\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581dab61d20d666ebd254a\"}, {\"_id\": \"63581db246a9930975397a69\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581db146a9930975397a66\"}, {\"_id\": \"63581db246a9930975397a6a\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581db146a9930975397a66\"}, {\"_id\": \"63581db246a9930975397a6b\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581db146a9930975397a66\"}, {\"_id\": \"63581db246a9930975397a6c\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581db146a9930975397a66\"}, {\"_id\": \"63581db24bf561302fd40203\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db24bf561302fd40204\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db24bf561302fd40205\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db24bf561302fd40206\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db280fbe76b2f1ac883\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db280fbe76b2f1ac884\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db280fbe76b2f1ac885\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"63581db280fbe76b2f1ac886\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63581db180fbe76b2f1ac880\"}, {\"_id\": \"635820704bf561302fd40219\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6358206f4bf561302fd40216\"}, {\"_id\": \"635820704bf561302fd4021a\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6358206f4bf561302fd40216\"}, {\"_id\": \"635820704bf561302fd4021b\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6358206f4bf561302fd40216\"}, {\"_id\": \"635820704bf561302fd4021c\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"6358206f4bf561302fd40216\"}, {\"_id\": \"63582071a73da3558e78da0b\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582070a73da3558e78da08\"}, {\"_id\": \"63582071a73da3558e78da0c\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582070a73da3558e78da08\"}, {\"_id\": \"63582071a73da3558e78da0d\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582070a73da3558e78da08\"}, {\"_id\": \"63582071a73da3558e78da0e\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582070a73da3558e78da08\"}, {\"_id\": \"63582075daf9147a881d293f\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"63582075daf9147a881d2940\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"63582075daf9147a881d2941\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"63582075daf9147a881d2942\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"635820751e260a56ab3bc082\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"635820751e260a56ab3bc083\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"635820751e260a56ab3bc084\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"635820751e260a56ab3bc085\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582074daf9147a881d293c\"}, {\"_id\": \"63582076941b002f4424b1e8\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"63582076941b002f4424b1e9\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"63582076941b002f4424b1ea\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"63582076941b002f4424b1eb\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"6358207647f9eb86e30019e8\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"6358207647f9eb86e30019e9\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"6358207647f9eb86e30019ea\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"6358207647f9eb86e30019eb\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582075941b002f4424b1e5\"}, {\"_id\": \"635820774072210b717d7176\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820774072210b717d7177\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820774072210b717d7178\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820774072210b717d7179\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820773e0ed0491b66b3f0\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820773e0ed0491b66b3f1\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820773e0ed0491b66b3f2\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"635820773e0ed0491b66b3f3\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"635820764072210b717d7173\"}, {\"_id\": \"63582b532dcb5e7b99ff7f65\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582b532dcb5e7b99ff7f62\"}, {\"_id\": \"63582b532dcb5e7b99ff7f66\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582b532dcb5e7b99ff7f62\"}, {\"_id\": \"63582b532dcb5e7b99ff7f67\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582b532dcb5e7b99ff7f62\"}, {\"_id\": \"63582b532dcb5e7b99ff7f68\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582b532dcb5e7b99ff7f62\"}, {\"_id\": \"63582c08ea95ff61fbc81437\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582c07ea95ff61fbc81434\"}, {\"_id\": \"63582c08ea95ff61fbc81438\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582c07ea95ff61fbc81434\"}, {\"_id\": \"63582c08ea95ff61fbc81439\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582c07ea95ff61fbc81434\"}, {\"_id\": \"63582c08ea95ff61fbc8143a\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63582c07ea95ff61fbc81434\"}, {\"_id\": \"63583eb535eaecc64110cf78\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63583eb535eaecc64110cf75\"}, {\"_id\": \"63583eb535eaecc64110cf79\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63583eb535eaecc64110cf75\"}, {\"_id\": \"63583eb535eaecc64110cf7a\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63583eb535eaecc64110cf75\"}, {\"_id\": \"63583eb535eaecc64110cf7b\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63583eb535eaecc64110cf75\"}, {\"_id\": \"63583ef035eaecc64110cf8a\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63583eef35eaecc64110cf87\"}, {\"_id\": \"63583ef035eaecc64110cf8b\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63583eef35eaecc64110cf87\"}, {\"_id\": \"63583ef035eaecc64110cf8c\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63583eef35eaecc64110cf87\"}, {\"_id\": \"63583ef035eaecc64110cf8d\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63583eef35eaecc64110cf87\"}, {\"_id\": \"63583f3635eaecc64110cf9c\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63583f3535eaecc64110cf99\"}, {\"_id\": \"63583f3635eaecc64110cf9d\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63583f3535eaecc64110cf99\"}, {\"_id\": \"63583f3635eaecc64110cf9e\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63583f3535eaecc64110cf99\"}, {\"_id\": \"63583f3635eaecc64110cf9f\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63583f3535eaecc64110cf99\"}, {\"_id\": \"63583f7c35eaecc64110cfae\", \"name\": \"Mayuresh\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"1234\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63583f7b35eaecc64110cfab\"}, {\"_id\": \"63583f7c35eaecc64110cfaf\", \"name\": \"Anmol\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"2345\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63583f7b35eaecc64110cfab\"}, {\"_id\": \"63583f7c35eaecc64110cfb0\", \"name\": \"Hemanth\", \"age\": 20, \"sex\": \"Male\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"3456\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63583f7b35eaecc64110cfab\"}, {\"_id\": \"63583f7c35eaecc64110cfb1\", \"name\": \"Gargi\", \"age\": 20, \"sex\": \"Female\", \"martial_status\": \"U\", \"education\": \"College\", \"schooling_status\": \"3 year\", \"AADHAR_No\": \"4567\", \"has_bank_acc\": true, \"is_computer_literate\": true, \"has_SSP\": true, \"health_prob\": \"None\", \"has_MNREGA\": true, \"SHG\": true, \"occupations\": \"Student\", \"__id\": \"63583f7b35eaecc64110cfab\"}]}\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"#new_dict = {'agri_inputs':data['data']['agri_inputs']}"
],
"metadata": {
"id": "6Fi-gd4_Dxxu"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"#x = json.dumps(new_dict)"
],
"metadata": {
"id": "piRUde5PENLL"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"#pd.read_json(x)"
],
"metadata": {
"id": "LYz1sIiGESQG"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "markdown",
"source": [
"KEY - FAM_INFO"
],
"metadata": {
"id": "cYS65YmjKVsS"
}
},
{
"cell_type": "code",
"source": [
"df = pd.DataFrame(data[\"data\"][\"fam_info\"])\n",
"#df = df.set_index('__id')\n",
"df.head()"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 270
},
"id": "NPc-rxsgEWUD",
"outputId": "ef4e87d4-d671-4858-b932-ac37aa7063c1"
},
"execution_count": null,
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
" _id name age sex martial_status education \\\n",
"0 6353e6c6e10045213e4835a9 Mayuresh 20 Male U College \n",
"1 6353e6c6e10045213e4835aa Anmol 20 Male U College \n",
"2 6353e6c6e10045213e4835ab Hemanth 20 Male U College \n",
"3 6353e6c6e10045213e4835ac Gargi 20 Female U College \n",
"4 6353f4ba5e34323ab1d52692 Mayuresh 20 Male U College \n",
"\n",
" schooling_status AADHAR_No has_bank_acc is_computer_literate has_SSP \\\n",
"0 3 year 1234 True True True \n",
"1 3 year 2345 True True True \n",
"2 3 year 3456 True True True \n",
"3 3 year 4567 True True True \n",
"4 3 year 1234 True True True \n",
"\n",
" health_prob has_MNREGA SHG occupations __id \n",
"0 None True True Student 6353e6c3e10045213e4835a6 \n",
"1 None True True Student 6353e6c3e10045213e4835a6 \n",
"2 None True True Student 6353e6c3e10045213e4835a6 \n",
"3 None True True Student 6353e6c3e10045213e4835a6 \n",
"4 None True True Student 6353f4ba5e34323ab1d5268f "
],
"text/html": [
"\n",
" <div id=\"df-a5d6ae42-8b8f-4de1-a58a-89ac7639b1c5\">\n",
" <div class=\"colab-df-container\">\n",
" <div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>_id</th>\n",
" <th>name</th>\n",
" <th>age</th>\n",
" <th>sex</th>\n",
" <th>martial_status</th>\n",
" <th>education</th>\n",
" <th>schooling_status</th>\n",
" <th>AADHAR_No</th>\n",
" <th>has_bank_acc</th>\n",
" <th>is_computer_literate</th>\n",
" <th>has_SSP</th>\n",
" <th>health_prob</th>\n",
" <th>has_MNREGA</th>\n",
" <th>SHG</th>\n",
" <th>occupations</th>\n",
" <th>__id</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>6353e6c6e10045213e4835a9</td>\n",
" <td>Mayuresh</td>\n",
" <td>20</td>\n",
" <td>Male</td>\n",
" <td>U</td>\n",
" <td>College</td>\n",
" <td>3 year</td>\n",
" <td>1234</td>\n",
" <td>True</td>\n",
" <td>True</td>\n",
" <td>True</td>\n",
" <td>None</td>\n",
" <td>True</td>\n",
" <td>True</td>\n",
" <td>Student</td>\n",
" <td>6353e6c3e10045213e4835a6</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>6353e6c6e10045213e4835aa</td>\n",
" <td>Anmol</td>\n",
" <td>20</td>\n",
" <td>Male</td>\n",
" <td>U</td>\n",
" <td>College</td>\n",
" <td>3 year</td>\n",
" <td>2345</td>\n",
" <td>True</td>\n",
" <td>True</td>\n",
" <td>True</td>\n",
" <td>None</td>\n",
" <td>True</td>\n",
" <td>True</td>\n",
" <td>Student</td>\n",
" <td>6353e6c3e10045213e4835a6</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>6353e6c6e10045213e4835ab</td>\n",
" <td>Hemanth</td>\n",
" <td>20</td>\n",
" <td>Male</td>\n",
" <td>U</td>\n",
" <td>College</td>\n",
" <td>3 year</td>\n",
" <td>3456</td>\n",
" <td>True</td>\n",
" <td>True</td>\n",
" <td>True</td>\n",
" <td>None</td>\n",
" <td>True</td>\n",
" <td>True</td>\n",
" <td>Student</td>\n",
" <td>6353e6c3e10045213e4835a6</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>6353e6c6e10045213e4835ac</td>\n",
" <td>Gargi</td>\n",
" <td>20</td>\n",
" <td>Female</td>\n",
" <td>U</td>\n",
" <td>College</td>\n",
" <td>3 year</td>\n",
" <td>4567</td>\n",
" <td>True</td>\n",
" <td>True</td>\n",
" <td>True</td>\n",
" <td>None</td>\n",
" <td>True</td>\n",
" <td>True</td>\n",
" <td>Student</td>\n",
" <td>6353e6c3e10045213e4835a6</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>6353f4ba5e34323ab1d52692</td>\n",
" <td>Mayuresh</td>\n",
" <td>20</td>\n",
" <td>Male</td>\n",
" <td>U</td>\n",
" <td>College</td>\n",
" <td>3 year</td>\n",
" <td>1234</td>\n",
" <td>True</td>\n",
" <td>True</td>\n",
" <td>True</td>\n",
" <td>None</td>\n",
" <td>True</td>\n",
" <td>True</td>\n",
" <td>Student</td>\n",
" <td>6353f4ba5e34323ab1d5268f</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>\n",
" <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-a5d6ae42-8b8f-4de1-a58a-89ac7639b1c5')\"\n",
" title=\"Convert this dataframe to an interactive table.\"\n",
" style=\"display:none;\">\n",
" \n",
" <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
" width=\"24px\">\n",
" <path d=\"M0 0h24v24H0V0z\" fill=\"none\"/>\n",
" <path d=\"M18.56 5.44l.94 2.06.94-2.06 2.06-.94-2.06-.94-.94-2.06-.94 2.06-2.06.94zm-11 1L8.5 8.5l.94-2.06 2.06-.94-2.06-.94L8.5 2.5l-.94 2.06-2.06.94zm10 10l.94 2.06.94-2.06 2.06-.94-2.06-.94-.94-2.06-.94 2.06-2.06.94z\"/><path d=\"M17.41 7.96l-1.37-1.37c-.4-.4-.92-.59-1.43-.59-.52 0-1.04.2-1.43.59L10.3 9.45l-7.72 7.72c-.78.78-.78 2.05 0 2.83L4 21.41c.39.39.9.59 1.41.59.51 0 1.02-.2 1.41-.59l7.78-7.78 2.81-2.81c.8-.78.8-2.07 0-2.86zM5.41 20L4 18.59l7.72-7.72 1.47 1.35L5.41 20z\"/>\n",
" </svg>\n",
" </button>\n",
" \n",
" <style>\n",
" .colab-df-container {\n",
" display:flex;\n",
" flex-wrap:wrap;\n",
" gap: 12px;\n",
" }\n",
"\n",
" .colab-df-convert {\n",
" background-color: #E8F0FE;\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: #1967D2;\n",
" height: 32px;\n",
" padding: 0 0 0 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-convert:hover {\n",
" background-color: #E2EBFA;\n",
" box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: #174EA6;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert {\n",
" background-color: #3B4455;\n",
" fill: #D2E3FC;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert:hover {\n",
" background-color: #434B5C;\n",
" box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
" filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
" fill: #FFFFFF;\n",
" }\n",
" </style>\n",
"\n",
" <script>\n",
" const buttonEl =\n",
" document.querySelector('#df-a5d6ae42-8b8f-4de1-a58a-89ac7639b1c5 button.colab-df-convert');\n",
" buttonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
"\n",
" async function convertToInteractive(key) {\n",
" const element = document.querySelector('#df-a5d6ae42-8b8f-4de1-a58a-89ac7639b1c5');\n",
" const dataTable =\n",
" await google.colab.kernel.invokeFunction('convertToInteractive',\n",
" [key], {});\n",
" if (!dataTable) return;\n",
"\n",
" const docLinkHtml = 'Like what you see? Visit the ' +\n",
" '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
" + ' to learn more about interactive tables.';\n",
" element.innerHTML = '';\n",
" dataTable['output_type'] = 'display_data';\n",
" await google.colab.output.renderOutput(dataTable, element);\n",
" const docLink = document.createElement('div');\n",
" docLink.innerHTML = docLinkHtml;\n",
" element.appendChild(docLink);\n",
" }\n",
" </script>\n",
" </div>\n",
" </div>\n",
" "
]
},
"metadata": {},
"execution_count": 85
}
]
},
{
"cell_type": "code",
"source": [
"dt = px.data.tips()\n",
"dt.head()"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 206
},
"id": "lRqRu3PEYmd2",
"outputId": "33c9dc7f-7da9-4d0e-a3df-91578e8c6da2"
},
"execution_count": null,
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
" total_bill tip sex smoker day time size\n",
"0 16.99 1.01 Female No Sun Dinner 2\n",
"1 10.34 1.66 Male No Sun Dinner 3\n",
"2 21.01 3.50 Male No Sun Dinner 3\n",
"3 23.68 3.31 Male No Sun Dinner 2\n",
"4 24.59 3.61 Female No Sun Dinner 4"
],
"text/html": [
"\n",
" <div id=\"df-dd5192f9-9031-4f8a-aabf-d0e7fd49cb17\">\n",
" <div class=\"colab-df-container\">\n",
" <div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>total_bill</th>\n",
" <th>tip</th>\n",
" <th>sex</th>\n",
" <th>smoker</th>\n",
" <th>day</th>\n",
" <th>time</th>\n",
" <th>size</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>16.99</td>\n",
" <td>1.01</td>\n",
" <td>Female</td>\n",
" <td>No</td>\n",
" <td>Sun</td>\n",
" <td>Dinner</td>\n",
" <td>2</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>10.34</td>\n",
" <td>1.66</td>\n",
" <td>Male</td>\n",
" <td>No</td>\n",
" <td>Sun</td>\n",
" <td>Dinner</td>\n",
" <td>3</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>21.01</td>\n",
" <td>3.50</td>\n",
" <td>Male</td>\n",
" <td>No</td>\n",
" <td>Sun</td>\n",
" <td>Dinner</td>\n",
" <td>3</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>23.68</td>\n",
" <td>3.31</td>\n",
" <td>Male</td>\n",
" <td>No</td>\n",
" <td>Sun</td>\n",
" <td>Dinner</td>\n",
" <td>2</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>24.59</td>\n",
" <td>3.61</td>\n",
" <td>Female</td>\n",
" <td>No</td>\n",
" <td>Sun</td>\n",
" <td>Dinner</td>\n",
" <td>4</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>\n",
" <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-dd5192f9-9031-4f8a-aabf-d0e7fd49cb17')\"\n",
" title=\"Convert this dataframe to an interactive table.\"\n",
" style=\"display:none;\">\n",
" \n",
" <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
" width=\"24px\">\n",
" <path d=\"M0 0h24v24H0V0z\" fill=\"none\"/>\n",
" <path d=\"M18.56 5.44l.94 2.06.94-2.06 2.06-.94-2.06-.94-.94-2.06-.94 2.06-2.06.94zm-11 1L8.5 8.5l.94-2.06 2.06-.94-2.06-.94L8.5 2.5l-.94 2.06-2.06.94zm10 10l.94 2.06.94-2.06 2.06-.94-2.06-.94-.94-2.06-.94 2.06-2.06.94z\"/><path d=\"M17.41 7.96l-1.37-1.37c-.4-.4-.92-.59-1.43-.59-.52 0-1.04.2-1.43.59L10.3 9.45l-7.72 7.72c-.78.78-.78 2.05 0 2.83L4 21.41c.39.39.9.59 1.41.59.51 0 1.02-.2 1.41-.59l7.78-7.78 2.81-2.81c.8-.78.8-2.07 0-2.86zM5.41 20L4 18.59l7.72-7.72 1.47 1.35L5.41 20z\"/>\n",
" </svg>\n",
" </button>\n",
" \n",
" <style>\n",
" .colab-df-container {\n",
" display:flex;\n",
" flex-wrap:wrap;\n",
" gap: 12px;\n",
" }\n",
"\n",
" .colab-df-convert {\n",
" background-color: #E8F0FE;\n",
" border: none;\n",
" border-radius: 50%;\n",
" cursor: pointer;\n",
" display: none;\n",
" fill: #1967D2;\n",
" height: 32px;\n",
" padding: 0 0 0 0;\n",
" width: 32px;\n",
" }\n",
"\n",
" .colab-df-convert:hover {\n",
" background-color: #E2EBFA;\n",
" box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
" fill: #174EA6;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert {\n",
" background-color: #3B4455;\n",
" fill: #D2E3FC;\n",
" }\n",
"\n",
" [theme=dark] .colab-df-convert:hover {\n",
" background-color: #434B5C;\n",
" box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
" filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
" fill: #FFFFFF;\n",
" }\n",
" </style>\n",
"\n",
" <script>\n",
" const buttonEl =\n",
" document.querySelector('#df-dd5192f9-9031-4f8a-aabf-d0e7fd49cb17 button.colab-df-convert');\n",
" buttonEl.style.display =\n",
" google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
"\n",
" async function convertToInteractive(key) {\n",
" const element = document.querySelector('#df-dd5192f9-9031-4f8a-aabf-d0e7fd49cb17');\n",
" const dataTable =\n",
" await google.colab.kernel.invokeFunction('convertToInteractive',\n",
" [key], {});\n",
" if (!dataTable) return;\n",
"\n",
" const docLinkHtml = 'Like what you see? Visit the ' +\n",
" '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
" + ' to learn more about interactive tables.';\n",
" element.innerHTML = '';\n",
" dataTable['output_type'] = 'display_data';\n",
" await google.colab.output.renderOutput(dataTable, element);\n",
" const docLink = document.createElement('div');\n",
" docLink.innerHTML = docLinkHtml;\n",
" element.appendChild(docLink);\n",
" }\n",
" </script>\n",
" </div>\n",
" </div>\n",
" "
]
},
"metadata": {},
"execution_count": 91
}
]
},
{
"cell_type": "code",
"source": [
"fig = px.pie(dt, values='tip', names='day', color_discrete_sequence=px.colors.sequential.RdBu)\n",
"fig.show()"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 542
},
"id": "ewJ-bU-0Zvv-",
"outputId": "2b50c709-fb73-4d88-f636-a50b847cc638"
},
"execution_count": null,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/html": [
"<html>\n",
"<head><meta charset=\"utf-8\" /></head>\n",
"<body>\n",
" <div> <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script> <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n",
" <script src=\"https://cdn.plot.ly/plotly-2.8.3.min.js\"></script> <div id=\"3033a183-e3e9-45c7-bdc6-559aa06861f3\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"3033a183-e3e9-45c7-bdc6-559aa06861f3\")) { Plotly.newPlot( \"3033a183-e3e9-45c7-bdc6-559aa06861f3\", [{\"domain\":{\"x\":[0.0,1.0],\"y\":[0.0,1.0]},\"hovertemplate\":\"day=%{label}<br>tip=%{value}<extra></extra>\",\"labels\":[\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Fri\",\"Fri\",\"Fri\",\"Fri\",\"Fri\",\"Fri\",\"Fri\",\"Fri\",\"Fri\",\"Fri\",\"Fri\",\"Fri\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Sun\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Thur\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Fri\",\"Fri\",\"Fri\",\"Fri\",\"Fri\",\"Fri\",\"Fri\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Sat\",\"Thur\"],\"legendgroup\":\"\",\"name\":\"\",\"showlegend\":true,\"values\":[1.01,1.66,3.5,3.31,3.61,4.71,2.0,3.12,1.96,3.23,1.71,5.0,1.57,3.0,3.02,3.92,1.67,3.71,3.5,3.35,4.08,2.75,2.23,7.58,3.18,2.34,2.0,2.0,4.3,3.0,1.45,2.5,3.0,2.45,3.27,3.6,2.0,3.07,2.31,5.0,2.24,2.54,3.06,1.32,5.6,3.0,5.0,6.0,2.05,3.0,2.5,2.6,5.2,1.56,4.34,3.51,3.0,1.5,1.76,6.73,3.21,2.0,1.98,3.76,2.64,3.15,2.47,1.0,2.01,2.09,1.97,3.0,3.14,5.0,2.2,1.25,3.08,4.0,3.0,2.71,3.0,3.4,1.83,5.0,2.03,5.17,2.0,4.0,5.85,3.0,3.0,3.5,1.0,4.3,3.25,4.73,4.0,1.5,3.0,1.5,2.5,3.0,2.5,3.48,4.08,1.64,4.06,4.29,3.76,4.0,3.0,1.0,4.0,2.55,4.0,3.5,5.07,1.5,1.8,2.92,2.31,1.68,2.5,2.0,2.52,4.2,1.48,2.0,2.0,2.18,1.5,2.83,1.5,2.0,3.25,1.25,2.0,2.0,2.0,2.75,3.5,6.7,5.0,5.0,2.3,1.5,1.36,1.63,1.73,2.0,2.5,2.0,2.74,2.0,2.0,5.14,5.0,3.75,2.61,2.0,3.5,2.5,2.0,2.0,3.0,3.48,2.24,4.5,1.61,2.0,10.0,3.16,5.15,3.18,4.0,3.11,2.0,2.0,4.0,3.55,3.68,5.65,3.5,6.5,3.0,5.0,3.5,2.0,3.5,4.0,1.5,4.19,2.56,2.02,4.0,1.44,2.0,5.0,2.0,2.0,4.0,2.01,2.0,2.5,4.0,3.23,3.41,3.0,2.03,2.23,2.0,5.16,9.0,2.5,6.5,1.1,3.0,1.5,1.44,3.09,2.2,3.48,1.92,3.0,1.58,2.5,2.0,3.0,2.72,2.88,2.0,3.0,3.39,1.47,3.0,1.25,1.0,1.17,4.67,5.92,2.0,2.0,1.75,3.0],\"type\":\"pie\"}], {\"template\":{\"data\":{\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"choropleth\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"contour\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"contourcarpet\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"heatmap\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"heatmapgl\"}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"histogram2d\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"histogram2dcontour\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatter\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattermapbox\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterpolar\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterpolargl\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]],\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]},\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"bgcolor\":\"#E5ECF6\",\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"ternary\":{\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"bgcolor\":\"#E5ECF6\",\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"zerolinewidth\":2},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"zerolinewidth\":2}}},\"legend\":{\"tracegroupgap\":0},\"margin\":{\"t\":60},\"piecolorway\":[\"rgb(103,0,31)\",\"rgb(178,24,43)\",\"rgb(214,96,77)\",\"rgb(244,165,130)\",\"rgb(253,219,199)\",\"rgb(247,247,247)\",\"rgb(209,229,240)\",\"rgb(146,197,222)\",\"rgb(67,147,195)\",\"rgb(33,102,172)\",\"rgb(5,48,97)\"]}, {\"responsive\": true} ).then(function(){\n",
" \n",
"var gd = document.getElementById('3033a183-e3e9-45c7-bdc6-559aa06861f3');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" }) }; </script> </div>\n",
"</body>\n",
"</html>"
]
},
"metadata": {}
}
]
},
{
"cell_type": "code",
"source": [
"fig = px.pie(df, values='age', names='occupations', color_discrete_sequence=px.colors.sequential.RdBu)\n",
"fig.show()"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 542
},
"id": "v9piqRkda1-9",
"outputId": "898663e6-74d7-4b3f-ba29-5fe53671e1ff"
},
"execution_count": null,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/html": [
"<html>\n",
"<head><meta charset=\"utf-8\" /></head>\n",
"<body>\n",
" <div> <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script> <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n",
" <script src=\"https://cdn.plot.ly/plotly-2.8.3.min.js\"></script> <div id=\"7d2daed4-f01c-49b7-b89e-1cfda2e52ab6\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"7d2daed4-f01c-49b7-b89e-1cfda2e52ab6\")) { Plotly.newPlot( \"7d2daed4-f01c-49b7-b89e-1cfda2e52ab6\", [{\"domain\":{\"x\":[0.0,1.0],\"y\":[0.0,1.0]},\"hovertemplate\":\"occupations=%{label}<br>age=%{value}<extra></extra>\",\"labels\":[\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\",\"Student\"],\"legendgroup\":\"\",\"name\":\"\",\"showlegend\":true,\"values\":[20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20],\"type\":\"pie\"}], {\"template\":{\"data\":{\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"choropleth\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"contour\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"contourcarpet\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"heatmap\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"heatmapgl\"}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"histogram2d\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"histogram2dcontour\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatter\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattermapbox\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterpolar\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterpolargl\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]],\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]},\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"bgcolor\":\"#E5ECF6\",\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"ternary\":{\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"bgcolor\":\"#E5ECF6\",\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"zerolinewidth\":2},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"zerolinewidth\":2}}},\"legend\":{\"tracegroupgap\":0},\"margin\":{\"t\":60},\"piecolorway\":[\"rgb(103,0,31)\",\"rgb(178,24,43)\",\"rgb(214,96,77)\",\"rgb(244,165,130)\",\"rgb(253,219,199)\",\"rgb(247,247,247)\",\"rgb(209,229,240)\",\"rgb(146,197,222)\",\"rgb(67,147,195)\",\"rgb(33,102,172)\",\"rgb(5,48,97)\"]}, {\"responsive\": true} ).then(function(){\n",
" \n",
"var gd = document.getElementById('7d2daed4-f01c-49b7-b89e-1cfda2e52ab6');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" }) }; </script> </div>\n",
"</body>\n",
"</html>"
]
},
"metadata": {}
}
]
},
{
"cell_type": "code",
"source": [
"fig = px.pie(df, values='age', names='education', color_discrete_sequence=px.colors.sequential.RdBu)\n",
"fig.show()"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 542
},
"id": "Ld6359Jtc0so",
"outputId": "dbf395f4-831f-4803-a04a-d6df2cbbcb6e"
},
"execution_count": null,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/html": [
"<html>\n",
"<head><meta charset=\"utf-8\" /></head>\n",
"<body>\n",
" <div> <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script> <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n",
" <script src=\"https://cdn.plot.ly/plotly-2.8.3.min.js\"></script> <div id=\"e5126e57-a2d0-44a6-a91a-68945ddaaed7\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"e5126e57-a2d0-44a6-a91a-68945ddaaed7\")) { Plotly.newPlot( \"e5126e57-a2d0-44a6-a91a-68945ddaaed7\", [{\"domain\":{\"x\":[0.0,1.0],\"y\":[0.0,1.0]},\"hovertemplate\":\"education=%{label}<br>age=%{value}<extra></extra>\",\"labels\":[\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\",\"College\"],\"legendgroup\":\"\",\"name\":\"\",\"showlegend\":true,\"values\":[20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20],\"type\":\"pie\"}], {\"template\":{\"data\":{\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"choropleth\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"choropleth\"}],\"contour\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"contour\"}],\"contourcarpet\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"contourcarpet\"}],\"heatmap\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"heatmap\"}],\"heatmapgl\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"heatmapgl\"}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"histogram2d\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"histogram2d\"}],\"histogram2dcontour\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"histogram2dcontour\"}],\"mesh3d\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"type\":\"mesh3d\"}],\"parcoords\":[{\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"parcoords\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}],\"scatter\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatter\"}],\"scatter3d\":[{\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatter3d\"}],\"scattercarpet\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattercarpet\"}],\"scattergeo\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattergeo\"}],\"scattergl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattergl\"}],\"scattermapbox\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scattermapbox\"}],\"scatterpolar\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterpolar\"}],\"scatterpolargl\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterpolargl\"}],\"scatterternary\":[{\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"type\":\"scatterternary\"}],\"surface\":[{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"type\":\"surface\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}]},\"layout\":{\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"autotypenumbers\":\"strict\",\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]],\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]},\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"geo\":{\"bgcolor\":\"white\",\"lakecolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"showlakes\":true,\"showland\":true,\"subunitcolor\":\"white\"},\"hoverlabel\":{\"align\":\"left\"},\"hovermode\":\"closest\",\"mapbox\":{\"style\":\"light\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"bgcolor\":\"#E5ECF6\",\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"gridwidth\":2,\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\"}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"ternary\":{\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"bgcolor\":\"#E5ECF6\",\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"title\":{\"x\":0.05},\"xaxis\":{\"automargin\":true,\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"zerolinewidth\":2},\"yaxis\":{\"automargin\":true,\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"zerolinewidth\":2}}},\"legend\":{\"tracegroupgap\":0},\"margin\":{\"t\":60},\"piecolorway\":[\"rgb(103,0,31)\",\"rgb(178,24,43)\",\"rgb(214,96,77)\",\"rgb(244,165,130)\",\"rgb(253,219,199)\",\"rgb(247,247,247)\",\"rgb(209,229,240)\",\"rgb(146,197,222)\",\"rgb(67,147,195)\",\"rgb(33,102,172)\",\"rgb(5,48,97)\"]}, {\"responsive\": true} ).then(function(){\n",
" \n",
"var gd = document.getElementById('e5126e57-a2d0-44a6-a91a-68945ddaaed7');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" }) }; </script> </div>\n",
"</body>\n",
"</html>"
]
},
"metadata": {}
}
]
},
{
"cell_type": "code",
"source": [
"#df.loc()['6353e6c3e10045213e4835a6']"
],
"metadata": {
"id": "3Kijb7emVbP7"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"df.info()"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "zv3ymggFGjXR",
"outputId": "4f372ea0-c885-431e-c19f-36e0b4136558"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"<class 'pandas.core.frame.DataFrame'>\n",
"RangeIndex: 252 entries, 0 to 251\n",
"Data columns (total 16 columns):\n",
" # Column Non-Null Count Dtype \n",
"--- ------ -------------- ----- \n",
" 0 _id 252 non-null object\n",
" 1 name 252 non-null object\n",
" 2 age 252 non-null int64 \n",
" 3 sex 252 non-null object\n",
" 4 martial_status 252 non-null object\n",
" 5 education 252 non-null object\n",
" 6 schooling_status 252 non-null object\n",
" 7 AADHAR_No 252 non-null object\n",
" 8 has_bank_acc 252 non-null bool \n",
" 9 is_computer_literate 252 non-null bool \n",
" 10 has_SSP 252 non-null bool \n",
" 11 health_prob 252 non-null object\n",
" 12 has_MNREGA 252 non-null bool \n",
" 13 SHG 252 non-null bool \n",
" 14 occupations 252 non-null object\n",
" 15 __id 252 non-null object\n",
"dtypes: bool(5), int64(1), object(10)\n",
"memory usage: 23.0+ KB\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"df[\"__id\"].nunique()"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "z7tCS0LpG6yi",
"outputId": "78fe5348-27f6-49ee-8dfc-cd984e9f5744"
},
"execution_count": null,
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"58"
]
},
"metadata": {},
"execution_count": 57
}
]
},
{
"cell_type": "code",
"source": [
"df['sex'].value_counts()"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "YYGuZZVbJSVi",
"outputId": "fd3d8cc8-54d9-4f4a-b0e4-184377a50629"
},
"execution_count": null,
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"Male 189\n",
"Female 63\n",
"Name: sex, dtype: int64"
]
},
"metadata": {},
"execution_count": 58
}
]
},
{
"cell_type": "code",
"source": [
"import plotly.express as px\n",
"import matplotlib.pyplot as plt\n",
"import seaborn as sns"
],
"metadata": {
"id": "r86rAzm8KNDK"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"px.histogram(df, x=\"occupations\")"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 542
},
"id": "s0_2Y5BQW-T-",
"outputId": "02c2d973-1c46-4d5e-c584-80c50bb2089e"
},
"execution_count": null,
"outputs": [