-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2450 lines (1755 loc) · 130 KB
/
index.html
File metadata and controls
2450 lines (1755 loc) · 130 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://rawcdn.githack.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css"/>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_aa58d4517063482ba01c99fb87f0b224 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
<script src="https://leaflet.github.io/Leaflet.heat/dist/leaflet-heat.js"></script>
</head>
<body>
<div class="folium-map" id="map_aa58d4517063482ba01c99fb87f0b224" ></div>
</body>
<script>
var map_aa58d4517063482ba01c99fb87f0b224 = L.map(
"map_aa58d4517063482ba01c99fb87f0b224",
{
center: [-16.6799, -49.255],
crs: L.CRS.EPSG3857,
zoom: 12,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_2ba64cce44324e63ab61d42acf18a603 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
var heat_map_1b9b8d54f7064238a21dde83451cdbe5 = L.heatLayer(
[[-16.700325, -49.276841999999995, 512.0], [-16.684905, -49.270975, 316.0], [-16.620383, -49.217509, 306.0], [-16.679596, -49.219026, 288.0], [-16.725873, -49.281696000000004, 223.0], [-16.693869, -49.238934, 211.0], [-16.713488, -49.255165999999996, 209.0], [-16.676794, -49.245412, 179.0], [-16.67745, -49.411757, 166.0], [-16.671254, -49.256428, 139.0], [-16.604596, -49.337494, 137.0], [-16.645160999999998, -49.327834, 130.0], [-16.69971, -49.261403, 121.0], [-16.600813, -49.202748, 121.0], [-16.669216, -49.266712, 107.0], [-16.671121, -49.311693, 104.0], [-16.616021, -49.29808, 104.0], [-16.623619, -49.3172, 102.0], [-16.645509, -49.186044, 102.0], [-16.69245, -49.29803, 102.0], [-16.619466, -49.333603000000004, 99.0], [-16.664624, -49.247096, 99.0], [-16.745003, -49.196981, 96.0], [-16.655189, -49.242191, 95.0], [-16.634872, -49.263179, 95.0], [-16.714636, -49.260588, 94.0], [-16.661102, -49.293008, 93.0], [-16.615384, -49.322477, 91.0], [-16.689819, -49.251296, 83.0], [-16.708676999999998, -49.325604999999996, 81.0], [-16.706851999999998, -49.282225, 73.0], [-16.657001, -49.321906, 67.0], [-16.602626, -49.307503000000004, 66.0], [-16.654511, -49.346821000000006, 66.0], [-16.707060000000002, -49.316269, 65.0], [-16.591801, -49.321931, 65.0], [-16.638233, -49.236084999999996, 64.0], [-16.732978, -49.292609999999996, 64.0], [-16.715348000000002, -49.238775, 62.0], [-16.627308, -49.251107, 61.0], [-16.74213, -49.320175, 60.0], [-16.682948, -49.287426, 57.0], [-16.61293, -49.214299, 56.0], [-16.654304, -49.273189, 54.0], [-16.657571, -49.303492999999996, 54.0], [-16.700532, -49.297084000000005, 53.0], [-16.643062, -49.229726, 52.0], [-16.784813, -49.369482, 52.0], [-16.647375, -49.260636, 51.0], [-16.66931, -49.280654999999996, 50.0], [-16.685306, -49.354597, 50.0], [-16.682599, -49.330376, 49.0], [-16.655042, -49.31327, 49.0], [-16.735588, -49.201628, 48.0], [-16.71634, -49.328945000000004, 47.0], [-16.721435, -49.299531, 47.0], [-16.721852, -49.246401, 46.0], [-16.61286, -49.190425, 46.0], [-16.657376, -49.282749, 45.0], [-16.6946, -49.332358, 44.0], [-16.666507, -49.333511, 44.0], [-16.719074, -49.315053999999996, 44.0], [-16.655879000000002, -49.194414, 42.0], [-16.618398000000003, -49.355232, 41.0], [-16.611498, -49.219518, 40.0], [-16.603145, -49.346418, 40.0], [-16.596463, -49.308283, 39.0], [-16.65618, -49.265260999999995, 38.0], [-16.58515, -49.331645, 38.0], [-16.603223, -49.255478000000004, 37.0], [-16.650131, -49.194121, 37.0], [-16.616628, -49.246501, 37.0], [-16.657882999999998, -49.178517, 35.0], [-16.714645, -49.202382, 34.0], [-16.61487, -49.346340000000005, 33.0], [-16.650139000000003, -49.327490000000004, 33.0], [-16.649198000000002, -49.267514, 33.0], [-16.735411, -49.337946, 32.0], [-16.715977, -49.305951, 32.0], [-16.728412, -49.318537, 31.0], [-16.551835, -49.270312, 31.0], [-16.628785, -49.364191, 31.0], [-16.662884, -49.184915999999994, 30.0], [-16.661838, -49.351524, 30.0], [-16.650063, -49.286516, 29.0]],
{"blur": 15, "max": 1.0, "maxZoom": 18, "minOpacity": 0.5, "radius": 25}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
var circle_6418b67933c94704af2163dcae4d5f9c = L.circle(
[-16.700325, -49.276841999999995],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 955.4257833336914, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_6418b67933c94704af2163dcae4d5f9c.bindTooltip(
`<div>
<li><bold> Bairro:Setor Bueno<li><bold> Casos: 512
</div>`,
{"sticky": true}
);
var circle_721d891a836e4aa4a7a3a0c3e2e5f2b0 = L.circle(
[-16.684905, -49.270975],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 561.8958064589934, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_721d891a836e4aa4a7a3a0c3e2e5f2b0.bindTooltip(
`<div>
<li><bold> Bairro:Setor Oeste<li><bold> Casos: 316
</div>`,
{"sticky": true}
);
var circle_2f73ae3f6f5e4099a7bd6d270b9c8068 = L.circle(
[-16.620383, -49.217509],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 542.3673894631811, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_2f73ae3f6f5e4099a7bd6d270b9c8068.bindTooltip(
`<div>
<li><bold> Bairro:Jd. Guanabara<li><bold> Casos: 306
</div>`,
{"sticky": true}
);
var circle_60092031eecf45a9bd60b6a5c063d264 = L.circle(
[-16.679596, -49.219026],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 507.3781218831488, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_60092031eecf45a9bd60b6a5c063d264.bindTooltip(
`<div>
<li><bold> Bairro:Jd. Novo Mundo<li><bold> Casos: 288
</div>`,
{"sticky": true}
);
var circle_45d1f2b8dff74d308bc5e6fb0f735122 = L.circle(
[-16.725873, -49.281696000000004],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 382.94407054404513, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_45d1f2b8dff74d308bc5e6fb0f735122.bindTooltip(
`<div>
<li><bold> Bairro:Parque Amazonia<li><bold> Casos: 223
</div>`,
{"sticky": true}
);
var circle_f179a207b1cc4695aefe7cc06602bfa3 = L.circle(
[-16.693869, -49.238934],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 360.33852860366346, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_f179a207b1cc4695aefe7cc06602bfa3.bindTooltip(
`<div>
<li><bold> Bairro:Jd.Goias<li><bold> Casos: 211
</div>`,
{"sticky": true}
);
var circle_a1edebaa0f044fcc91cf23d5debfc1e9 = L.circle(
[-16.713488, -49.255165999999996],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 356.5832301140537, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_a1edebaa0f044fcc91cf23d5debfc1e9.bindTooltip(
`<div>
<li><bold> Bairro:Setor Pedro Ludovico<li><bold> Casos: 209
</div>`,
{"sticky": true}
);
var circle_751542c8df6945a0aa2a6eb0feb1f6cf = L.circle(
[-16.676794, -49.245412],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 300.70339685579165, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_751542c8df6945a0aa2a6eb0feb1f6cf.bindTooltip(
`<div>
<li><bold> Bairro:Setor Leste Universit rio<li><bold> Casos: 179
</div>`,
{"sticky": true}
);
var circle_4a76721c5931412faee096dc2936a35d = L.circle(
[-16.67745, -49.411757],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 276.76992550052086, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_4a76721c5931412faee096dc2936a35d.bindTooltip(
`<div>
<li><bold> Bairro:Conjunto Vera Cruz<li><bold> Casos: 166
</div>`,
{"sticky": true}
);
var circle_76c428b853464e5abf0d1c4639627b6c = L.circle(
[-16.671254, -49.256428],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 227.6754901824984, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_76c428b853464e5abf0d1c4639627b6c.bindTooltip(
`<div>
<li><bold> Bairro:Setor Central<li><bold> Casos: 139
</div>`,
{"sticky": true}
);
var circle_1212806e6233472da7910302799935fc = L.circle(
[-16.604596, -49.337494],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 224.07459692697287, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_1212806e6233472da7910302799935fc.bindTooltip(
`<div>
<li><bold> Bairro:Jd.Curitiba<li><bold> Casos: 137
</div>`,
{"sticky": true}
);
var circle_1ebefa43daee4b0980fe7a9c4ab23e5d = L.circle(
[-16.645160999999998, -49.327834],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 211.5133031369914, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_1ebefa43daee4b0980fe7a9c4ab23e5d.bindTooltip(
`<div>
<li><bold> Bairro:Jd. Nova Esperanca<li><bold> Casos: 130
</div>`,
{"sticky": true}
);
var circle_f4c774fbf90742148b78ce08a67a7836 = L.circle(
[-16.69971, -49.261403],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 195.4627062104636, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_f4c774fbf90742148b78ce08a67a7836.bindTooltip(
`<div>
<li><bold> Bairro:Setor Marista<li><bold> Casos: 121
</div>`,
{"sticky": true}
);
var circle_1ef4460324444f25af2c2800f0244677 = L.circle(
[-16.600813, -49.202748],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 195.4627062104636, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_1ef4460324444f25af2c2800f0244677.bindTooltip(
`<div>
<li><bold> Bairro:Res. Vale dos Sonhos I<li><bold> Casos: 121
</div>`,
{"sticky": true}
);
var circle_aa2e7019b237442cad4d16ec4afe2389 = L.circle(
[-16.669216, -49.266712],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 170.73484139522105, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_aa2e7019b237442cad4d16ec4afe2389.bindTooltip(
`<div>
<li><bold> Bairro:Setor Aeroporto<li><bold> Casos: 107
</div>`,
{"sticky": true}
);
var circle_36aa08e6cbd14c7eb0cd485c0f5179bf = L.circle(
[-16.671121, -49.311693],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 165.47663209633416, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_36aa08e6cbd14c7eb0cd485c0f5179bf.bindTooltip(
`<div>
<li><bold> Bairro:Cidade Jardim<li><bold> Casos: 104
</div>`,
{"sticky": true}
);
var circle_da2e29fdf9184988aae6a3bd84744f1a = L.circle(
[-16.616021, -49.29808],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 165.47663209633416, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_da2e29fdf9184988aae6a3bd84744f1a.bindTooltip(
`<div>
<li><bold> Bairro:Jd. Balneario Meia Ponte<li><bold> Casos: 104
</div>`,
{"sticky": true}
);
var circle_d5487fd355244f1fa3a41e4d19dbf0fe = L.circle(
[-16.623619, -49.3172],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 161.97955031042886, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_d5487fd355244f1fa3a41e4d19dbf0fe.bindTooltip(
`<div>
<li><bold> Bairro:Vila Finsocial<li><bold> Casos: 102
</div>`,
{"sticky": true}
);
var circle_f63a8afa1d9040729107723e73cad07e = L.circle(
[-16.645509, -49.186044],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 161.97955031042886, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_f63a8afa1d9040729107723e73cad07e.bindTooltip(
`<div>
<li><bold> Bairro:Setor Recanto das Minas Gerais<li><bold> Casos: 102
</div>`,
{"sticky": true}
);
var circle_b892c867fcdc43f8bb4a3f9aa07f0fb7 = L.circle(
[-16.69245, -49.29803],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 161.97955031042886, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_b892c867fcdc43f8bb4a3f9aa07f0fb7.bindTooltip(
`<div>
<li><bold> Bairro:Setor Sudoeste<li><bold> Casos: 102
</div>`,
{"sticky": true}
);
var circle_0bee0aa241264e389752d41d93bddfea = L.circle(
[-16.619466, -49.333603000000004],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 156.74681105322793, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_0bee0aa241264e389752d41d93bddfea.bindTooltip(
`<div>
<li><bold> Bairro:Setor Parque Tremendao<li><bold> Casos: 99
</div>`,
{"sticky": true}
);
var circle_f9f214c95c774331b3c671fc805fa69e = L.circle(
[-16.664624, -49.247096],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 156.74681105322793, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_f9f214c95c774331b3c671fc805fa69e.bindTooltip(
`<div>
<li><bold> Bairro:Setor Leste Vila Nova<li><bold> Casos: 99
</div>`,
{"sticky": true}
);
var circle_d154f99dd8ba45eda8ec18af0509a725 = L.circle(
[-16.745003, -49.196981],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 151.52990687977484, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_d154f99dd8ba45eda8ec18af0509a725.bindTooltip(
`<div>
<li><bold> Bairro:Parque Atheneu<li><bold> Casos: 96
</div>`,
{"sticky": true}
);
var circle_d77fb5c213eb4585a19ad462a14491ee = L.circle(
[-16.655189, -49.242191],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 149.79453384941735, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_d77fb5c213eb4585a19ad462a14491ee.bindTooltip(
`<div>
<li><bold> Bairro:Setor Negrao de Lima<li><bold> Casos: 95
</div>`,
{"sticky": true}
);
var circle_96c98d0b982e4ebcb8eccd0ebc8733bc = L.circle(
[-16.634872, -49.263179],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 149.79453384941735, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_96c98d0b982e4ebcb8eccd0ebc8733bc.bindTooltip(
`<div>
<li><bold> Bairro:Setor Urias Magalhaes<li><bold> Casos: 95
</div>`,
{"sticky": true}
);
var circle_c9116ea7c2af4e02b0cb5e497e8ea9d7 = L.circle(
[-16.714636, -49.260588],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 148.06098659843977, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_c9116ea7c2af4e02b0cb5e497e8ea9d7.bindTooltip(
`<div>
<li><bold> Bairro:Setor Bela vista<li><bold> Casos: 94
</div>`,
{"sticky": true}
);
var circle_06feaa26cf444d75b657bcecdd4c9aef = L.circle(
[-16.661102, -49.293008],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 146.32928259906882, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_06feaa26cf444d75b657bcecdd4c9aef.bindTooltip(
`<div>
<li><bold> Bairro:Setor Campinas<li><bold> Casos: 93
</div>`,
{"sticky": true}
);
var circle_7e9e954eaa224ca5898acd27f67070fc = L.circle(
[-16.615384, -49.322477],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 142.87147603923682, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_7e9e954eaa224ca5898acd27f67070fc.bindTooltip(
`<div>
<li><bold> Bairro:Setor Morada do Sol<li><bold> Casos: 91
</div>`,
{"sticky": true}
);
var circle_36c496ac73b741758cba7e7e715f6a3a = L.circle(
[-16.689819, -49.251296],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 129.11773577858514, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_36c496ac73b741758cba7e7e715f6a3a.bindTooltip(
`<div>
<li><bold> Bairro:Setor Sul<li><bold> Casos: 83
</div>`,
{"sticky": true}
);
var circle_146aa58ff8e846c9b18f10ce7d4a020b = L.circle(
[-16.708676999999998, -49.325604999999996],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 125.69949148714419, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_146aa58ff8e846c9b18f10ce7d4a020b.bindTooltip(
`<div>
<li><bold> Bairro:Res.Eldorado<li><bold> Casos: 81
</div>`,
{"sticky": true}
);
var circle_ee2e5422f02c4bedb32c0a40844dcbb0 = L.circle(
[-16.706851999999998, -49.282225],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 112.11278631541047, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_ee2e5422f02c4bedb32c0a40844dcbb0.bindTooltip(
`<div>
<li><bold> Bairro:Nova Suica<li><bold> Casos: 73
</div>`,
{"sticky": true}
);
var circle_8d1070351e4a47a7ba515ae4715ae939 = L.circle(
[-16.657001, -49.321906],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 102.0192867638687, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_8d1070351e4a47a7ba515ae4715ae939.bindTooltip(
`<div>
<li><bold> Bairro:Capuava<li><bold> Casos: 67
</div>`,
{"sticky": true}
);
var circle_3d96b414d811498d9f27261b43dc25e2 = L.circle(
[-16.602626, -49.307503000000004],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 100.34559884453336, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_3d96b414d811498d9f27261b43dc25e2.bindTooltip(
`<div>
<li><bold> Bairro:Res. Recanto do Bosque<li><bold> Casos: 66
</div>`,
{"sticky": true}
);
var circle_1ee5acfbe77c41148ba57a020338c703 = L.circle(
[-16.654511, -49.346821000000006],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 100.34559884453336, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_1ee5acfbe77c41148ba57a020338c703.bindTooltip(
`<div>
<li><bold> Bairro:Setor Santos Dumont<li><bold> Casos: 66
</div>`,
{"sticky": true}
);
var circle_f8009d18ddc44baf872eab10e9b1a32d = L.circle(
[-16.707060000000002, -49.316269],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 98.67444498786934, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_f8009d18ddc44baf872eab10e9b1a32d.bindTooltip(
`<div>
<li><bold> Bairro:Jd. Europa<li><bold> Casos: 65
</div>`,
{"sticky": true}
);
var circle_9cf130c4ec184443bd43546759f39971 = L.circle(
[-16.591801, -49.321931],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 98.67444498786934, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_9cf130c4ec184443bd43546759f39971.bindTooltip(
`<div>
<li><bold> Bairro:Setor Estrela Dalva<li><bold> Casos: 65
</div>`,
{"sticky": true}
);
var circle_ba783aadad8c4897b28d64e40aab4700 = L.circle(
[-16.638233, -49.236084999999996],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 97.00586025666551, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_ba783aadad8c4897b28d64e40aab4700.bindTooltip(
`<div>
<li><bold> Bairro:Santa Genoveva<li><bold> Casos: 64
</div>`,
{"sticky": true}
);
var circle_ee7df91463e54721b4170a8791b8b2d5 = L.circle(
[-16.732978, -49.292609999999996],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 97.00586025666551, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_ee7df91463e54721b4170a8791b8b2d5.bindTooltip(
`<div>
<li><bold> Bairro:Jd. Atlantico<li><bold> Casos: 64
</div>`,
{"sticky": true}
);
var circle_ee09bf45e28641db98aedbe724a4515a = L.circle(
[-16.715348000000002, -49.238775],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 93.67654367085214, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_ee09bf45e28641db98aedbe724a4515a.bindTooltip(
`<div>
<li><bold> Bairro:Alto da Gloria<li><bold> Casos: 62
</div>`,
{"sticky": true}
);
var circle_5dddbe6f8e9b4b5eaaea66dae030a332 = L.circle(
[-16.627308, -49.251107],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 92.01588733744936, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_5dddbe6f8e9b4b5eaaea66dae030a332.bindTooltip(
`<div>
<li><bold> Bairro:Goiania 2<li><bold> Casos: 61
</div>`,
{"sticky": true}
);
var circle_137e407e71984f5e9639f5f8d8c5839b = L.circle(
[-16.74213, -49.320175],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 90.35795127689539, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_137e407e71984f5e9639f5f8d8c5839b.bindTooltip(
`<div>
<li><bold> Bairro:Faicalville<li><bold> Casos: 60
</div>`,
{"sticky": true}
);
var circle_a648d80d885e434a9592e31342a0f1b0 = L.circle(
[-16.682948, -49.287426],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 85.40087909704994, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_a648d80d885e434a9592e31342a0f1b0.bindTooltip(
`<div>
<li><bold> Bairro:Setor Coimbra<li><bold> Casos: 57
</div>`,
{"sticky": true}
);
var circle_c1565d60ff574647b2922252b06363a3 = L.circle(
[-16.61293, -49.214299],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 83.754245320012, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_c1565d60ff574647b2922252b06363a3.bindTooltip(
`<div>
<li><bold> Bairro:Jd. Guanabara II<li><bold> Casos: 56
</div>`,
{"sticky": true}
);
var circle_4eceb9dbdb054f6c881e7e717e85fcce = L.circle(
[-16.654304, -49.273189],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 80.46983962849211, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_4eceb9dbdb054f6c881e7e717e85fcce.bindTooltip(
`<div>
<li><bold> Bairro:Setor Centro Oeste<li><bold> Casos: 54
</div>`,
{"sticky": true}
);
var circle_6a64621f2e614ace8a298e3d5130763d = L.circle(
[-16.657571, -49.303492999999996],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 80.46983962849211, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_6a64621f2e614ace8a298e3d5130763d.bindTooltip(
`<div>
<li><bold> Bairro:Setor Sao Jose‚<li><bold> Casos: 54
</div>`,
{"sticky": true}
);
var circle_5a0b763ffd314128a069521c85ae1eaf = L.circle(
[-16.700532, -49.297084000000005],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 78.83216547687636, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_5a0b763ffd314128a069521c85ae1eaf.bindTooltip(
`<div>
<li><bold> Bairro:Vila Alpes<li><bold> Casos: 53
</div>`,
{"sticky": true}
);
var circle_3077a1fc0c4d47f19501b7267801e7ac = L.circle(
[-16.643062, -49.229726],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 77.19757853713917, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_3077a1fc0c4d47f19501b7267801e7ac.bindTooltip(
`<div>
<li><bold> Bairro:Setor Jao<li><bold> Casos: 52
</div>`,
{"sticky": true}
);
var circle_e56b12edbc0c45c9b0119a744bc48fbc = L.circle(
[-16.784813, -49.369482],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 77.19757853713917, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_e56b12edbc0c45c9b0119a744bc48fbc.bindTooltip(
`<div>
<li><bold> Bairro:Res. Itaipu<li><bold> Casos: 52
</div>`,
{"sticky": true}
);
var circle_ded6a42121da405cbbe2bf85517b7918 = L.circle(
[-16.647375, -49.260636],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 75.56613219696311, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_ded6a42121da405cbbe2bf85517b7918.bindTooltip(
`<div>
<li><bold> Bairro:Setor Crimeia Leste<li><bold> Casos: 51
</div>`,
{"sticky": true}
);
var circle_1dff135af5a74a89b2cfbb63ee10e9eb = L.circle(
[-16.66931, -49.280654999999996],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 73.93788183141571, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_1dff135af5a74a89b2cfbb63ee10e9eb.bindTooltip(
`<div>
<li><bold> Bairro:Setor dos funcionarios<li><bold> Casos: 50
</div>`,
{"sticky": true}
);
var circle_859475cc6203413185fb47130b6b2638 = L.circle(
[-16.685306, -49.354597],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 73.93788183141571, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_859475cc6203413185fb47130b6b2638.bindTooltip(
`<div>
<li><bold> Bairro:Parque Industrial Joao Braz<li><bold> Casos: 50
</div>`,
{"sticky": true}
);
var circle_fbdf8018d0754328b7dc49e4c90f7d76 = L.circle(
[-16.682599, -49.330376],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 72.31288491813308, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_fbdf8018d0754328b7dc49e4c90f7d76.bindTooltip(
`<div>
<li><bold> Bairro:Goia<li><bold> Casos: 49
</div>`,
{"sticky": true}
);
var circle_3422835110a74cffa3c8cdce0b90082b = L.circle(
[-16.655042, -49.31327],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 72.31288491813308, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_3422835110a74cffa3c8cdce0b90082b.bindTooltip(
`<div>
<li><bold> Bairro:Vila Joao Vaz<li><bold> Casos: 49
</div>`,
{"sticky": true}
);
var circle_d5c840e5081a4b90abf14875f8946dbc = L.circle(
[-16.735588, -49.201628],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 70.69120116166508, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_d5c840e5081a4b90abf14875f8946dbc.bindTooltip(
`<div>
<li><bold> Bairro:Jd. Mariliza<li><bold> Casos: 48
</div>`,
{"sticky": true}
);
var circle_7de63b9dcba14ec2976a927aa684c5eb = L.circle(
[-16.71634, -49.328945000000004],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 69.0728926279167, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_7de63b9dcba14ec2976a927aa684c5eb.bindTooltip(
`<div>
<li><bold> Bairro:Res. Granville<li><bold> Casos: 47
</div>`,
{"sticky": true}
);
var circle_453f8039733c440c978e558bb47fde26 = L.circle(
[-16.721435, -49.299531],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 69.0728926279167, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_453f8039733c440c978e558bb47fde26.bindTooltip(
`<div>
<li><bold> Bairro:Parque Anhaguera<li><bold> Casos: 47
</div>`,
{"sticky": true}
);
var circle_24f949c0ad02468eb1820fefb56db39f = L.circle(
[-16.721852, -49.246401],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 67.45802388973735, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_24f949c0ad02468eb1820fefb56db39f.bindTooltip(
`<div>
<li><bold> Bairro:Vila Redencao<li><bold> Casos: 46
</div>`,
{"sticky": true}
);
var circle_73ce90613a894a3eaf81723a407d6ef4 = L.circle(
[-16.61286, -49.190425],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 67.45802388973735, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_73ce90613a894a3eaf81723a407d6ef4.bindTooltip(
`<div>
<li><bold> Bairro:Res. Aldeia do Vale<li><bold> Casos: 46
</div>`,
{"sticky": true}
);
var circle_f3cb2d801b044b52aeb2e38fbe561f10 = L.circle(
[-16.657376, -49.282749],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 65.84666218484509, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_f3cb2d801b044b52aeb2e38fbe561f10.bindTooltip(
`<div>
<li><bold> Bairro:Vila Santa Helena<li><bold> Casos: 45
</div>`,
{"sticky": true}
);
var circle_a128447989764ae98a99b694cec6d579 = L.circle(
[-16.6946, -49.332358],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 64.238877587428, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_a128447989764ae98a99b694cec6d579.bindTooltip(
`<div>
<li><bold> Bairro:Parque Oeste Industrial<li><bold> Casos: 44
</div>`,
{"sticky": true}
);
var circle_620250daaa674335a832a09807f630fa = L.circle(
[-16.666507, -49.333511],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 64.238877587428, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_620250daaa674335a832a09807f630fa.bindTooltip(
`<div>
<li><bold> Bairro:Sao Francisco<li><bold> Casos: 44
</div>`,
{"sticky": true}
);
var circle_2420f7f361b44ba9937793424b4e5392 = L.circle(
[-16.719074, -49.315053999999996],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 64.238877587428, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_2420f7f361b44ba9937793424b4e5392.bindTooltip(
`<div>
<li><bold> Bairro:Setor Novo Horizonte<li><bold> Casos: 44
</div>`,
{"sticky": true}
);
var circle_5501041e21b842febf75dd52a079c872 = L.circle(
[-16.655879000000002, -49.194414],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 61.03433533185527, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_5501041e21b842febf75dd52a079c872.bindTooltip(
`<div>
<li><bold> Bairro:Parque das Amendoeiras<li><bold> Casos: 42
</div>`,
{"sticky": true}
);
var circle_cc971c26444443f9b4d70251f049301c = L.circle(
[-16.618398000000003, -49.355232],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 59.437733772256124, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_cc971c26444443f9b4d70251f049301c.bindTooltip(
`<div>
<li><bold> Bairro:Vila Mutirao I<li><bold> Casos: 41
</div>`,
{"sticky": true}
);
var circle_fad87a64615c47e4b5163e5cb0ee4536 = L.circle(
[-16.611498, -49.219518],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 57.84502198367701, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_fad87a64615c47e4b5163e5cb0ee4536.bindTooltip(
`<div>
<li><bold> Bairro:Jd. Guanabara III<li><bold> Casos: 40
</div>`,
{"sticky": true}
);
var circle_2e463801f8a24b05ab58f59a4d752f43 = L.circle(
[-16.603145, -49.346418],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 57.84502198367701, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);
circle_2e463801f8a24b05ab58f59a4d752f43.bindTooltip(
`<div>
<li><bold> Bairro:da Vitoria<li><bold> Casos: 40
</div>`,
{"sticky": true}
);
var circle_0b616e2237374afb89265f28d4611bae = L.circle(
[-16.596463, -49.308283],
{"bubblingMouseEvents": true, "color": "#00FF69", "dashArray": null, "dashOffset": null, "fill": "#00A1B3", "fillColor": "#00FF69", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 56.25628739463053, "stroke": true, "weight": 3}
).addTo(map_aa58d4517063482ba01c99fb87f0b224);