-
Notifications
You must be signed in to change notification settings - Fork 1
/
items.json
executable file
·2555 lines (2555 loc) · 120 KB
/
items.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/ABC Farm House Junction_4"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Ambedkar society circle_29"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Appa_Balwant_Square_30"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Bajaj Statue Square_50"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Blue Diamond Square (Hotel Taj)_10"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/BopadiSquare_65"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Bremen Square_37"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/BRTS Visharant wadi_38"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Chandani Square_25"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Chitale Bandhu Corner_41"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/ChurchKhadakiRailwayStation_36"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Datta Mandir Square_20"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Dr Baba Saheb Ambedkar Sethu Junction_3"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/FursungiKaman_31"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Golf Club Junction_27"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Golibar Square_11"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Goodluck Square_Cafe_23"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Gunjan Square_18"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Hadapsar_Gadital_01"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Jhanshi Rani Square_59"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Karve Statue Square_5"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Kothrud PMPML BusDepot_48"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Lullanagar_Square_14"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Market Yard Junction_2"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Mundhwa Road Junction_51"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Nanded City Entry_42"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Noble Hospital junction_35"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/PMPML_Bus_Depot_Deccan_15"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/PMPML Katraj_Depot_New_26"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Pune Railway Station_28"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Pune_ST_Stand_40"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Rajashri_Shahu_Bus_stand_19"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/RTO Square_8"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Sadanand Hotel Square_39"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Sadhu_Wasvani_Square_24"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Seven Loves Square_16"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Shimla Office Square (Shivaji Nagar Chowk)_33"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Shivaji Nagar ST Stand_45"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Shree Krishna Hotel Square _12"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Sinhgad Road Junction_9"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Susgaon_46"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Vadgaon_Sheri_Square_52"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Vishrantwadi junction_6"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/aqm-bosch-climo/Warje_Square_21"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Uttam Nagar(Indiranagar)"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Tank Road Bridge"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Baba Bhide Bridge"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Kalash"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Indranagar Slum & Maharishi nagar"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Someshwar wadi"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Bhairoba nala-1"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Opp. Dattanagar Baner Balawadi Cross"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Yerawada Indra Nagar Slum Alandi Road"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Vishrantwadi Nala"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Maharishi Shinde Bridge"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Holkar Bridge"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Sangamwadi Bridge"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Sangam Cross Road"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Wakad"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Rajiv Gandhi Bridge Aundh"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Hingne Khurd SR NO 18"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Hadapsar Mundhwa"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Sambhaji Bridge"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Mula Road(Holkar bridge)"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Rajaram Bridge"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Mhatre Bridge"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Hingne Alankar Police station area"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Bopodi-Dapodi"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Katraj Mumbai Highway"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Canal Road (Behind Church)"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Aga Khan Bridge"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Bund Garden Bridge"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Yerwada Shanti nagar tank road"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Pashan Bopodi Nala"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/flood-sensor/Prayega City"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/DHANKAWADI NAVRANG SOCY"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Harihar Giran"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Near Ashtavinyak Ganesh Mandir"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Rajrshi Shahu Society Samor Satara Road"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Dhayari New Bridge1"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/SOMWAR PETH, POLICE LAWNS, INSIDE SAMARTH POLICE CHOWKI"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/GREEN PARK CHOWK, KONDHAWA"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Near Balaji Super Market"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/SAINATH MITRA MANDAL, HANUMAN CHOWK"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Chintamani Dnyanpeeth Pathar, Durvankur Society (front)"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Joshi Wadevale Pound Phata"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Cosmos Bank"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Indian Bank Vadgaon Budruk"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/MUNDHWA SMASHANBHUMI FEEDER, NAGAR HADAPSAR RD., MANGARPATTA RD"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Dhayari New Bridge3"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/POOJA CLINIC, PMC DEPO BACK SIDE"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/BANTER SCHOOL"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/PANCHAVATI SOCIETY"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Karve Road"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/NEAR HIRLEKAR PRECISION ENGINEERING PVT.LTD, MUKUND NAGAR"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Sr No 45 Vithhal Nagar"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/VASUNDHARA SOCIETY, DHANKAWADI"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Bopodi Goathan 2"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Singh Cycle"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/JAWAHARLAL NEHRU STADIUM"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/J K CENTER POOLGATE"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/BHARAT TALKIES"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Takle Hawali"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/PERUMAL HANUMAN MANDIR"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/HOTEL KAVERI"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/HATTI CHOWK, USHA PALACE SOCIETY"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/PUROHIT SWEET"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/LADKAT WADI, MALINA MILAN MANDAL"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/KOTAWLE KISHTER"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/KUMAR PRITHVI TAVAR, SAIBABA NAGAR"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/PANCHSHEL NAGAR"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Rajmudra Society Ganpati Mandir"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Shivshambhu Nagar"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/TRINITY SCHOOL, MALWADI"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Sr No 135 Yashodip Society"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/MEGHANA SOCIETY"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Nirabrig Society Dhankavadi Vasti"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/VAIDUWADI PETROL PUMP"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/SHANTINIKATEN SOCIETY"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Bangai Vasti"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/NEAR HDFC BANK, WARJE BRIGE"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Snehal"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Rohan Nile Society"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Abhiman Society 2"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Ramnagar"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Near Patil Auto Centre, Taware Colony, Walvekar Nagar"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/In front of kalyani nagar steel"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Renuka Swarup"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Late. Baburao Genba Shewale"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Subhedar Talim"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Cast Validity Distribution Office"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/UDAY BAGH"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Sawarkar Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Hindustani Covenant Church"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Late. Sundarabai Ganpat Raut"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/GANESH MALA"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Samartha Ramdas"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Chitt vihar socity, Dhankawadi,Near Gulab nager"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Pragati Udyan"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Dr.gauri Ashirwad House"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Kharadi Bypass Junction"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/SHIVAJI STATUE, SHIVAJI ROAD"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Wanavadi Ramtekdi Ward Office"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Biogas Vahantal,"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Late. Vitthalrao Shivarkar Udyan Jogging Track"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Savali Society"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Siddharth Hospital"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/New Motor Tyres"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Undri Junction"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/HOTEL GANDHARVA"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Puram Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Ambegaon, Dattanagar, Bhuyari marg, Balaji motors"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Warje Police Station"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/NEAR MSEB CIRCLE"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Balaji Chowk"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/DOBAR WADI RD, SOPAN BAG"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Bundgarden Police Station"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/PRAKASH INAMDAR CHOWK, VITTALWADI"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Deccan Police Station"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Dedgoankar"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Khadak Police Station"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/APALA MARUTI"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Shrimant Bhairavsingh Ghorpade Peth"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/LAXMI NAGAR VASTI"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Govind Halvai Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Yerwada Ward office"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Nandadeep"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Saint Kabir Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Yashwant Nagar ,Yervada"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Chhatrapati Shivaji - BOPODI"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/DURGA MATA MANDIR, KALAS GANESH NAGAR"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Anna Hazare Anand Park"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Cannel Road-1"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Viman Nagar"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/RAVI PARK, GANGA VILLAGE"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Dr. GaddaSingh Cheema"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/PARANDE NAGAR DHANORI"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Sant. Rohidas Udyan"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Wadjaimata Mandir"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Karve Statue Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/SANE GURUJI HOSPITAL"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Seven Loves Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/MAHARSHI NAGAR, SANT NAMDEV SCHOOL"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Power House Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Moje Collage Balewadi"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Jijamata Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Badami Chowk Peti"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Koregaon Police Station"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/VIKAS NAGAR"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Kondhwa Police Station"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Nagras Road"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Kantishalaka Aruna Asaf Ali Udyan"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Maji sainik Nagar"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Aundh Ward Office"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/NANA SAHEB DHARMADHIKARI"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Limca Jogging Track"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Rajbhavan Kendria Vidyalay"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Late. Raja Mantri"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/LANE NO 10"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Katraj Sarpodyan"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Valensia Apartment"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Moti Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Saint Joseph Colony"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Tilak Road Ward Office"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Alang Ali"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Kothrud Police Station Junction"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Katraj talab, Near katraj bridge, Jujjr vasti road"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Vimantal Police Station"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Sawant Plaza"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Shanipar Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/NARAYAN ANNAJI SHINDE RD"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Vitthal Patil Tupe Udyan (under construction)"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Wagjai mandir road ambegaon K hurd Katraj"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Kalas Hospital"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/DASGBUJA GANPATI"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Jahangir Hospital Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/KEDAR MANDIR"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Dr. Homi J. Bhabha"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Rajbhavan Gate No 3"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Swargate Police Station"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/MADHA COLONY, MRD COLLAGE, ADITYA GARDEN BACKSIDE"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Late. Sakharam Kundlik Kodre"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Kotari Block, Bibewadi Road"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Symentec Jn"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/SAYYEDNAGAR GALLI-17"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Bolhai Square Collector Office"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Aashvini Society"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Paud Road Junction"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Juna Mumbai pune road"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Wakhar Mahamandal Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/MAHARANA PRATAP RD"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Late. Ramchanra Keshav Taware"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Ganesh Pride Co-op Society"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Jhanshi Rani Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/SAYYED NAGAR GALLI-14"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Chaturshrungi Police Station"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Kelawadi Indra Park"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/NEAR GANESH MANDIR"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Dr. Dalavi"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Near Nirman group Upper hagwane vasti Kondwa"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Late.Vasantrao Eknath Bagul"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/MALLIKA"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Sachin Angre Udyan Paud Road Kothrud"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Indira Hight (Bharat Kunj)"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Lashkar Police Station"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/OFF BANDHAN HOSPITAL,SAI MANDIR, SATARA ROAD"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Mantarwadi Phata Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/TALJAI (BIO GAS)"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Sendatta Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Katraj kondhwa Road, smashan bhumi Javal"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Vadgaon Bridge"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/BHARAT FORGE SOCIETY"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Late. Savitribai Phule"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/tukaram mahavidyalaya balewadi"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Kamalnayan Bajaj"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Gulabnagar chowk, gupta bhel"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Rajiv Gandhi Bridge"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/KONDHWA POLICE STATION"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Nanapeth Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Vaidya Shala,Tendulkar Park"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Pashan Lake Entrance"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Savant Nagari"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Ambedkar Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Vitthal Wadi main rd."
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Shivaji Square - Pashan"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/SHIV SANKAR SABAGRUH"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Hutatma Smarak"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/YADACHA SOCIETY"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Raashtrabhushan Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/MAHARSHI NAGAR PUJARI GARDEN"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Chitale Bandhu Corner"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Doulat Society"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Sahakar Police Station"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Fursungi Kaman"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Bajme Elite Young Circle"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Takle Havli Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Kumbharwada, Keshavnagar Rd., Near Pradnya Arts statue sculpturer"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Late. Marutrao Gaikwad"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/ASHWINI MITRA MANDAL 15 AUGUST CHOWK"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Chafekar Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Renuka Hotel"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Mahatma Gandhi Udyan"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/KALAS SMASHAN BHUMI"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Smart Road"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/SIDDHARTH NAGAR, SALUNTHE VIHAR"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Dattawadi Police Station"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/OMKAR SERVICE CENTER, SALUNKHE VIHAR"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Mundhawa Police Station"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Hero Honda Showroom (BRT)"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Rto Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/SUS ROAD CORNER OPP.DATTAMANDIR"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Jnanshware Paduka Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Shanti Rakshak,Choudhari vasti"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Anandnagar Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Ambasia Resort 1"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Late.Rajiv Gandhi Zoological Park"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Kalyani House"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Datta Mandir Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/SHANI MANDIR-01"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Balewadi Jn"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/DUGGAD SCHOOL, NEAR JAIN MANDIR"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Symbiosis College Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Rajashri Shahu Society"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/NANAI PARK"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Tarkeshwar Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Shatri Nagar Chowk"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Alankar Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Ayukta Mahila Va Balvikas"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/SNDT"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Myanmar garden Siddhartha Babar"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Vishrambag Police Station"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Late. Mukundrao Lele"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Near Vanaz Basketball Ground"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/BHAGWA CHOUK"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Lulla Nagar Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/KAKKA HALWAI"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Pune Bus Stand"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/River Road"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Late.Shivshankar Pote"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Swojas Solitaire Society"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/E-Space IT Park PMC-01"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/NIRMAL BAGH AREA"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Goodluck Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Suvidha Narsing Home, Bhusari Coliny"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Shahir Amar Shaikh Square"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/PINGALE WASTI, BESIDE PASSPORT OFFICE, IN FRONT OF SBI ATM"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Golf Club Junction"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/Shelake Class"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Hutatma Babu Genu"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/VIR BHATT NAGAR BANER ROAD"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Bharatratna Late. Rajiv Gandhi"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/streetlight-feeder-sree/VITTALRAO NAVALE ROAD"
},
{
"id": "rbccps.org/aa9d66a000d94a78895de8d4c0b3a67f3450e531/pudx-resource-server/wifi-hotspot/Tingare Nagar Lane No. 14."
},