Datasets:
Tasks:
Image Classification
Modalities:
Image
Formats:
imagefolder
Size:
1K - 10K
ArXiv:
DOI:
License:
File size: 124,529 Bytes
d9c45bb | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<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>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.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.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.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://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_5c0f6862f4349b6cdcbb2e90721463be {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<div class="folium-map" id="map_5c0f6862f4349b6cdcbb2e90721463be" ></div>
</body>
<script>
var map_5c0f6862f4349b6cdcbb2e90721463be = L.map(
"map_5c0f6862f4349b6cdcbb2e90721463be",
{
center: [-23.47011028, 151.94695993333332],
crs: L.CRS.EPSG3857,
zoom: 12,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_3350c117dca8985b6a3a3dc4c36158ed = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
tile_layer_3350c117dca8985b6a3a3dc4c36158ed.addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_bbaf72c4aea826116e89bb0aeb6ecb35 = L.circleMarker(
[-23.470201666666668, 151.947545],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "green", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_053660d5444d7194731f319877c320ec = L.circleMarker(
[-23.470201666666668, 151.94754],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_28b09dc1ed97e8cbbead9097b2e3dc7c = L.circleMarker(
[-23.4702, 151.947535],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_b1053279aa5f93bf9e2df137f14faf42 = L.circleMarker(
[-23.470198333333332, 151.94753],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_15bf6cc2f9084374d9ebddc2c8861e0b = L.circleMarker(
[-23.4702, 151.947525],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_0732ed5b2cd3d6286df23f0d0bc144e3 = L.circleMarker(
[-23.4702, 151.94752],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_82ce78096ccaad7b1a685631cd3d1f43 = L.circleMarker(
[-23.4702, 151.947515],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_0042f790f832a27ae27acaa9bed7a0bd = L.circleMarker(
[-23.470198333333332, 151.94751],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_8eb1fc9a84f16c655f5b0eb910ed2b0b = L.circleMarker(
[-23.470196666666666, 151.94750333333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_398796d5ac997a09688169dbeabe63e2 = L.circleMarker(
[-23.470196666666666, 151.9475],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_f9f3554d307133a69dd02bb8c9ba652f = L.circleMarker(
[-23.470196666666666, 151.94749333333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_75f977ee951d008c866b9f0112039f34 = L.circleMarker(
[-23.470196666666666, 151.94748833333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_23b919c8679007358a8d01822c8d2955 = L.circleMarker(
[-23.470196666666666, 151.947485],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_8beac741fb9f673614cbe8cbf55481f5 = L.circleMarker(
[-23.470195, 151.94747833333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_a66e86620899a19563cca3bb439ca8fc = L.circleMarker(
[-23.470195, 151.947475],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_b9abaf067385a15ef97fdebc506775c4 = L.circleMarker(
[-23.470195, 151.94746833333335],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_5310cfbde71cb929c93acf936bf31102 = L.circleMarker(
[-23.470195, 151.94746333333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_da88c3b6d4dc733ee7f887c5be7790cd = L.circleMarker(
[-23.470196666666666, 151.94746],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_f03d3d4f85ea7859923cda50d67986b1 = L.circleMarker(
[-23.470196666666666, 151.94745666666665],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_7056b0a9b4fbb8af30a8d057fa75d0ca = L.circleMarker(
[-23.470195, 151.94745333333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_06f26b59c7b2a570a7c065458d38d7d0 = L.circleMarker(
[-23.470193333333334, 151.94744666666668],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_d5764488672f195649c1fd362281a9d7 = L.circleMarker(
[-23.47019166666667, 151.94744166666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_652faafc663070b3a76f5b505e58454e = L.circleMarker(
[-23.47019166666667, 151.947435],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_7e713bed99a3526a3e02695c66a23cba = L.circleMarker(
[-23.47019166666667, 151.94743],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_4169422297c9a5b7c89444a4965eece1 = L.circleMarker(
[-23.47019166666667, 151.94742666666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_dec8a3b948447ff0071f20ceba873e23 = L.circleMarker(
[-23.47019, 151.94742166666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_bb3fb123f585c38782b11ad48512008d = L.circleMarker(
[-23.470188333333333, 151.94741833333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_09358636be6b773282f0a76182d30006 = L.circleMarker(
[-23.470186666666667, 151.947415],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_04b44b1bd7ee152a0e920b6c834a0459 = L.circleMarker(
[-23.470185, 151.94741],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_6bbc0be898363250696bf154327d3121 = L.circleMarker(
[-23.470183333333335, 151.947405],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_f1b4334654e5eab3cdeb02ebb690d53f = L.circleMarker(
[-23.470181666666665, 151.9474],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_f8a26990cf65367efcf7d421555d2dcd = L.circleMarker(
[-23.47018, 151.94739333333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_df7e67b4495874e23e1b7ce6c491d2b8 = L.circleMarker(
[-23.470178333333333, 151.94738833333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_c170be1ab2760b3c025269c82a1c215b = L.circleMarker(
[-23.470178333333333, 151.94738333333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_438e05535a05ff119a4faf1d9161d803 = L.circleMarker(
[-23.470176666666667, 151.94737833333335],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_efaf8b8dae5384c754b39cc8a0e07f62 = L.circleMarker(
[-23.470175, 151.94737333333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_488945364745bfc980e0cf5fb4385329 = L.circleMarker(
[-23.470173333333335, 151.94737],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_6096e7a5ed14c3bf1db78a0172d5dc12 = L.circleMarker(
[-23.470171666666666, 151.947365],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_714364dbb8b909fb485d4f5a678e7c24 = L.circleMarker(
[-23.47017, 151.94736166666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_3bffb6bd1dd62b16c13adcf0e14a1f36 = L.circleMarker(
[-23.470171666666666, 151.94735666666668],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_b356c9eb41c9ab7a96c1e4b46f92fe7d = L.circleMarker(
[-23.47017, 151.94735166666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_990f620652337b4fa4eea788d2eb2384 = L.circleMarker(
[-23.470168333333334, 151.947345],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_36283580d082ac9659aa6265b77aacff = L.circleMarker(
[-23.470166666666668, 151.94734166666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_79f3238eb39126947279c95b796a7dcd = L.circleMarker(
[-23.470163333333332, 151.94733666666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_7d4ba795373f5caeb08df785c0bbba6f = L.circleMarker(
[-23.470161666666666, 151.94733],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_2070d6f04acf83c373c8e8d2cec7bf01 = L.circleMarker(
[-23.47016, 151.94732666666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_6555f96b088243d65cfa0fdb8aa0aa7e = L.circleMarker(
[-23.470158333333334, 151.94732166666665],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_674c897250e257cfea156926daeb2cf5 = L.circleMarker(
[-23.470158333333334, 151.94731833333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_d06dda53ba6d2155cdfe7fd63c5f45f7 = L.circleMarker(
[-23.470156666666668, 151.94731333333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_ac3eb87066841268e83be1bb2cb695ec = L.circleMarker(
[-23.470155, 151.94730833333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_41be9661fcdd3ed1e9f244cabf36ad36 = L.circleMarker(
[-23.470153333333332, 151.947305],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_cc88da07236ca746070662e25c99a16f = L.circleMarker(
[-23.47015, 151.94729833333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_cb8b465e0145ab4bef6f3ad0160cfd85 = L.circleMarker(
[-23.47015, 151.947295],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_106812d2fd059f1020250beafdeb3c22 = L.circleMarker(
[-23.470148333333334, 151.94729],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_d4ad263dd4d03d03f5ebfa9cf3cb53fd = L.circleMarker(
[-23.47014666666667, 151.947285],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_843edeb9172b7969ec71ad3d6fd95c0c = L.circleMarker(
[-23.47014666666667, 151.94728166666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_e634a5f5f121a8fce54f4ca44c62f335 = L.circleMarker(
[-23.47014666666667, 151.94727833333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_ae3e634da3ee7e9990ff415fdf7de051 = L.circleMarker(
[-23.470145, 151.94727333333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_c36faf76856269d800a91ec28e3f893c = L.circleMarker(
[-23.470143333333333, 151.94727],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_139f619bb54212cad6754a866b5ffd50 = L.circleMarker(
[-23.470141666666667, 151.947265],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_5ca1538d9b262830d252243691b5695c = L.circleMarker(
[-23.470141666666667, 151.94726166666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_24b3d24bbcd139ecae5309fa0a79f435 = L.circleMarker(
[-23.470141666666667, 151.94725666666668],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_18b528b3431f88617fe20087dd7bb50f = L.circleMarker(
[-23.47014, 151.94725166666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_e749a1a0cec797b269f435c81dec4f74 = L.circleMarker(
[-23.470138333333335, 151.94724666666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_0ed0b719cf9d86a773b4d61d659d12f9 = L.circleMarker(
[-23.470136666666665, 151.94724333333335],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_c3c6314d6b2e2baaa324e29a2ee91e58 = L.circleMarker(
[-23.470136666666665, 151.94723666666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_ec90251947d84030d0a3a23460a1b31f = L.circleMarker(
[-23.470135, 151.94723166666665],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_0370b5fede3917393ba7aa0947003368 = L.circleMarker(
[-23.470135, 151.94722666666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_6dce4d5850dfa22ba874d0c7606f5eef = L.circleMarker(
[-23.470133333333333, 151.94722166666668],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_84035b829848e5e78286c275ac0fb835 = L.circleMarker(
[-23.470133333333333, 151.94721833333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_91421a83b57407e90a4118821735afd8 = L.circleMarker(
[-23.470131666666667, 151.94721333333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_f499679f0f88925d0f3c315f03bd8fb5 = L.circleMarker(
[-23.47013, 151.94720833333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_c8fc96c4ae13734e9c2bf346db1429bb = L.circleMarker(
[-23.470128333333335, 151.94720166666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_0a5ba4f63526074ad33ca262ee885cbb = L.circleMarker(
[-23.470128333333335, 151.94719833333335],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_efebce1a8fa4d8b3eccaecca2b6488c8 = L.circleMarker(
[-23.470128333333335, 151.94719166666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_ef16da855ed25c2ee5728edf87e70504 = L.circleMarker(
[-23.470128333333335, 151.94718666666665],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_bc0aa213c14fb7f5d45d4f76c149f42f = L.circleMarker(
[-23.470128333333335, 151.94718333333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_2f79156425ab05c4da294f9fe0f2afc2 = L.circleMarker(
[-23.470128333333335, 151.94718],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_ea168c5a57b95a8cb00a841a24518bd8 = L.circleMarker(
[-23.470126666666665, 151.947175],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_0de44512719b7a8225783b77fc7e43f5 = L.circleMarker(
[-23.470126666666665, 151.94717166666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_1206908765ae3eb26e821a6becdf4e4a = L.circleMarker(
[-23.470125, 151.94716666666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_248493594833f411af4d061328a0373e = L.circleMarker(
[-23.470123333333333, 151.94716166666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_9e59cdbe1d982d01c02e05682c837ad8 = L.circleMarker(
[-23.470123333333333, 151.947155],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_85cba4b1845c6942362d21d786704756 = L.circleMarker(
[-23.470121666666667, 151.94715166666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_39b50b5db636bec210111fa3bd75c130 = L.circleMarker(
[-23.470121666666667, 151.94714666666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_adc2c71d402913b347134134cc0b9b4f = L.circleMarker(
[-23.470121666666667, 151.94714166666665],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_e7a1098f0b544c9e7a777a0382b3f96d = L.circleMarker(
[-23.47012, 151.94713666666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_6e47b955c9dce4da37e7746870430e56 = L.circleMarker(
[-23.47012, 151.94713166666668],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_008a919f93435b1b2134612cba64d7b1 = L.circleMarker(
[-23.47012, 151.94712666666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_e11209e95b8eda3039f6ddd5b55f1ab3 = L.circleMarker(
[-23.470118333333332, 151.94712333333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_45bbc096e2c2bea3d5a88045f9e544cd = L.circleMarker(
[-23.470116666666666, 151.94711666666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_2f03c55afc210743750c5497b61ab908 = L.circleMarker(
[-23.470115, 151.94711166666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_56c033dbdcfc322e6222864355fe1392 = L.circleMarker(
[-23.470113333333334, 151.947105],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_0ae8e4e4c7f8462705bbe41ef7c207ff = L.circleMarker(
[-23.470113333333334, 151.9471],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_4244cdbc8adb8fb3985a505160e38634 = L.circleMarker(
[-23.470111666666668, 151.94709666666665],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_2810c14739cd7a7a77439bf919f48cff = L.circleMarker(
[-23.470111666666668, 151.94709166666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_d13ea79598e8cdff550940be86a1e79e = L.circleMarker(
[-23.47011, 151.94708833333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_f4ccf429e338551eb6f013b9f647db31 = L.circleMarker(
[-23.47011, 151.94708166666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_31888e2d5ca780cf70b9de889b97ae6d = L.circleMarker(
[-23.470111666666668, 151.94707666666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_7f19db170853993e52a1c666761f402f = L.circleMarker(
[-23.470111666666668, 151.94707333333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_9a7b618e33e1e09016b9fe1c6a8794cf = L.circleMarker(
[-23.470111666666668, 151.94706833333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_d900e32204b75e2c66b570dd8f99812a = L.circleMarker(
[-23.470111666666668, 151.947065],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_082ea8027d7ac1733d2c8902b358c840 = L.circleMarker(
[-23.47011, 151.94706],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_8f1a0abd159bad1a95793d8ca37b171a = L.circleMarker(
[-23.47011, 151.94705666666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_366afb018a2a2a94976316fb64e5534e = L.circleMarker(
[-23.470111666666668, 151.94705333333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_dbfa36be9fc348e77a83a91d9162efd5 = L.circleMarker(
[-23.470111666666668, 151.94705],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_9035b05be7908b8665a913ca34147a48 = L.circleMarker(
[-23.47011, 151.947045],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_83218143fbb24155f4d447926263b827 = L.circleMarker(
[-23.470108333333332, 151.94704],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_b822be7bcfba08c1160e5cdc03df6d21 = L.circleMarker(
[-23.470108333333332, 151.947035],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_d906bb85fe4e3fc6518764001c33c780 = L.circleMarker(
[-23.470108333333332, 151.94703],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_32584b243b58e8d7d8514eed8d383c9f = L.circleMarker(
[-23.470108333333332, 151.947025],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_541d3395fb616610d9e3f4bc3d30ab68 = L.circleMarker(
[-23.470106666666666, 151.94702],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_4e21689a1dc322039e19fbd4f7310dba = L.circleMarker(
[-23.470105, 151.947015],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_553eeef0167427f78e781121cc367d99 = L.circleMarker(
[-23.470101666666668, 151.94700833333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_60b1b7a6863380dac0e2b105fb7b5a03 = L.circleMarker(
[-23.4701, 151.94700333333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_ed5c65abef87714ee8d40627326272f7 = L.circleMarker(
[-23.4701, 151.94699833333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_90412a95c9d83525db51178e2d21321d = L.circleMarker(
[-23.470098333333333, 151.94699333333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_c80a76bd2571af11941a76b875c34c8e = L.circleMarker(
[-23.470098333333333, 151.94698833333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_a74efc498cea9c1bdd8b5eaca0507861 = L.circleMarker(
[-23.470098333333333, 151.94698333333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_4935814073628b04d8b4bdf4cf8f654f = L.circleMarker(
[-23.470098333333333, 151.94697833333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_4ad6b7edd40c166420b22b2807bca258 = L.circleMarker(
[-23.470096666666667, 151.94697333333335],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_d17116abfc6a14a75febd3e7c7096e96 = L.circleMarker(
[-23.470096666666667, 151.94696833333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_06003cb70e7ff64428f4bb1f51d2418a = L.circleMarker(
[-23.470095, 151.94696333333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_9ecd54abf312747cfc90caa6528125bd = L.circleMarker(
[-23.470095, 151.94695833333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_0adf5df92082c23380f887b902a86f91 = L.circleMarker(
[-23.470095, 151.946955],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_703f6d586791ad64b49db4956ace89ad = L.circleMarker(
[-23.470095, 151.94695],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_99a2a393c80fb9df81d4191566b96f6f = L.circleMarker(
[-23.470095, 151.94694666666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_57c3af4e29496b0d817008d1c051d491 = L.circleMarker(
[-23.470095, 151.94694333333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_a793837b07bff68bd1c29b5bec2524a6 = L.circleMarker(
[-23.470096666666667, 151.94694],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_c82e7baee09039382e01bf6ed694e0de = L.circleMarker(
[-23.470096666666667, 151.94693666666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_cbc0ac20e993e0448130192e91b794d0 = L.circleMarker(
[-23.470096666666667, 151.94693166666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_02d6db6d506e051ced315a5bec580210 = L.circleMarker(
[-23.470096666666667, 151.94692666666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_10328ee2adedc2a42581b54ce0841dc0 = L.circleMarker(
[-23.470096666666667, 151.94692333333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_784962f38b44fd370bad4607486893e5 = L.circleMarker(
[-23.470096666666667, 151.94691833333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_0f677285825e5994af64fd2bbb0161c5 = L.circleMarker(
[-23.470096666666667, 151.94691333333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_c4c86020e5df46b67a3cea4dadaa2ac0 = L.circleMarker(
[-23.470095, 151.94690833333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_943e7dc8cb6aace988afdde6da93d77d = L.circleMarker(
[-23.470093333333335, 151.946905],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_9136d7bb9bb1c78d3ca7e87a6d03af98 = L.circleMarker(
[-23.470091666666665, 151.94689833333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_a7d46e5ae337ce3f22b7b36e97ff033d = L.circleMarker(
[-23.47009, 151.946895],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_03a72b36b9bac7ca5fcc56c982a82e1d = L.circleMarker(
[-23.47009, 151.94689],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_dd63dd8558fd566489969a0395d1f46d = L.circleMarker(
[-23.470088333333333, 151.94688333333335],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_5063335c27bb1bfb93d822ae03a17533 = L.circleMarker(
[-23.470086666666667, 151.94687833333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_3b8bf7516dc75a7b0192ef7655e44f92 = L.circleMarker(
[-23.470085, 151.94687333333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_20fc6de2716c7bc3c5718f2fd6abc824 = L.circleMarker(
[-23.470085, 151.94687],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_ccbca2ba7478ae47c87a9a856e2366a3 = L.circleMarker(
[-23.470083333333335, 151.946865],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_6f1789c1fc284b5f3d4920ffb52a6cf7 = L.circleMarker(
[-23.470083333333335, 151.94686],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_32d6f0ae336932fb6b8ee56d85fbf5a9 = L.circleMarker(
[-23.470083333333335, 151.94685666666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_7b40db176062d2cc662dc53b0cd742bc = L.circleMarker(
[-23.470081666666665, 151.94685],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_91d53bac2fca48c129c7461cc7b4c065 = L.circleMarker(
[-23.470081666666665, 151.94684666666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_153ba026d6293c0cd85e3973744c01a0 = L.circleMarker(
[-23.47008, 151.94684166666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_d53daff6005fc63cd19b33c647b21020 = L.circleMarker(
[-23.470081666666665, 151.94683666666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_d2b4add43deaa94cdc75d412d2564e6c = L.circleMarker(
[-23.470081666666665, 151.94683166666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_584c298bbe7168f8be9fa7bd1de8a5a0 = L.circleMarker(
[-23.470083333333335, 151.94682833333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_29ee444afa5039dd3be08450f444dfb1 = L.circleMarker(
[-23.470083333333335, 151.94682333333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_38f2f98b749783598bdc4a46356a83bf = L.circleMarker(
[-23.470083333333335, 151.94682166666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_2b5712fe0f59464318102d77d0cb35e8 = L.circleMarker(
[-23.470083333333335, 151.94681666666668],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_7691394b56005cc408a53a32cb050daf = L.circleMarker(
[-23.470083333333335, 151.94681333333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_fcfe9959dcf7f0bba8976f9c86cd34fb = L.circleMarker(
[-23.470083333333335, 151.94680833333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_30cc238b7419afdf7daa828c87943b4a = L.circleMarker(
[-23.470085, 151.94680333333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_485ddbbf1d20bbbff9f5efd55f9f28c7 = L.circleMarker(
[-23.470085, 151.94679833333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_4ceef7592db9a3ad262b1e341df0e209 = L.circleMarker(
[-23.470085, 151.946795],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_870c346e085a3ecce40ec9240a002c93 = L.circleMarker(
[-23.470085, 151.94679],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_dd9d9968a49feea74abdac6f91713afa = L.circleMarker(
[-23.470085, 151.946785],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_07f80cd2bbca393b803bd7ac4261a6fe = L.circleMarker(
[-23.470085, 151.94678],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_81014e21cd01a41598c14eab86e3490c = L.circleMarker(
[-23.470085, 151.946775],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_6926f411251b04b55eee9f3cb02c4a9f = L.circleMarker(
[-23.470085, 151.94677],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_318b8bbb321eaf6e6f6014da2e8da762 = L.circleMarker(
[-23.470085, 151.946765],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_585443859c35fa67a27650940ef5a7ad = L.circleMarker(
[-23.470085, 151.94676166666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_ce94bf60b02f2f881aa85585a6878b2e = L.circleMarker(
[-23.470085, 151.94675666666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_2f912bd455e9c0be8a2d013026ec68f5 = L.circleMarker(
[-23.470085, 151.94675166666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_2ce7f29c82fd107042925a517d3ea0e7 = L.circleMarker(
[-23.470085, 151.94674666666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_c23ffab6c80a27e7c4da5310dddf4301 = L.circleMarker(
[-23.470085, 151.94674],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_c35853b3ab7798896ae58cb675eefe9a = L.circleMarker(
[-23.470085, 151.94673666666668],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_87ab899754678370263d16ff8e754e1e = L.circleMarker(
[-23.470085, 151.94673333333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_63aac4ff7d915cc2d3e8751d48251361 = L.circleMarker(
[-23.470086666666667, 151.94673],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_bb4082f2cd7a0ac6b6db6dc011a2818d = L.circleMarker(
[-23.470086666666667, 151.94672666666668],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_f114e561577a4d4d21148c2bae8845b0 = L.circleMarker(
[-23.470088333333333, 151.94672166666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_2897f54817276e62222fb51f137cc317 = L.circleMarker(
[-23.47009, 151.94671833333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_055097cad0a32f57ef07c7c687a78e91 = L.circleMarker(
[-23.47009, 151.94671333333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_233db514877b7cf06f216fbb8930dbd0 = L.circleMarker(
[-23.47009, 151.94670833333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_cd708bd41f93b50e2a1b991fbbb5cda0 = L.circleMarker(
[-23.47009, 151.946705],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_97bab172584422a7d1f3818fa0f10a11 = L.circleMarker(
[-23.470091666666665, 151.9467],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_e954dd38125d9b2e0afc7839024fd8c0 = L.circleMarker(
[-23.470091666666665, 151.94669666666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_a0cb9e18bb202e52aea3610fa06af48f = L.circleMarker(
[-23.470091666666665, 151.94669166666668],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_7179decc4458a94d3d10086e4fe213a4 = L.circleMarker(
[-23.470091666666665, 151.94668833333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_33280e6b23e6e9cdcb3bd0941bc148b5 = L.circleMarker(
[-23.47009, 151.94668333333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_c69f7620aef6e2e4599208668b598227 = L.circleMarker(
[-23.47009, 151.94667833333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_55f9d5d24e530ac587f14e1560d3e623 = L.circleMarker(
[-23.470088333333333, 151.94667333333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_9808942952c13a8f6221991ce34a2497 = L.circleMarker(
[-23.470086666666667, 151.94666833333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_cb6245c7da38c33d46889ac78cc6306e = L.circleMarker(
[-23.470086666666667, 151.94666333333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_5b9b52285cc465faa3699f3a60883c94 = L.circleMarker(
[-23.470086666666667, 151.94665833333335],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_ea884e2707bc66ed51b89202a2d78dff = L.circleMarker(
[-23.470086666666667, 151.946655],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_c08c5e7cdc0ad879c193c746a3373c56 = L.circleMarker(
[-23.470086666666667, 151.94665166666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_df4b453f49108bde4f8f1db538925d47 = L.circleMarker(
[-23.470085, 151.94664666666668],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_20bb2c83287e004b5eefe2d6ef03feea = L.circleMarker(
[-23.470083333333335, 151.94664333333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_57005081c8c79b05b418e7e6889fdf1d = L.circleMarker(
[-23.470083333333335, 151.94663833333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_cc0622f2d3f6168b323564e7a200d0b3 = L.circleMarker(
[-23.470083333333335, 151.94663333333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_f53112d2796b9e8dda4ee170a1c30b97 = L.circleMarker(
[-23.470081666666665, 151.94662833333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_b2f945e45118e82d4b00f7cce52884c8 = L.circleMarker(
[-23.47008, 151.94662333333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_4e0b139475e8a84242d9ecd80e3fb7d7 = L.circleMarker(
[-23.470076666666667, 151.94661833333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_a3ad788fefc9118cbc53197ccf7a97bf = L.circleMarker(
[-23.470075, 151.946615],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_96a3140504162943c345880c6e1147f8 = L.circleMarker(
[-23.470073333333332, 151.94661],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_52c82f0bcd13eddfa111f834474746d5 = L.circleMarker(
[-23.470073333333332, 151.946605],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_e4a984ab04998b9a5843c3d042990244 = L.circleMarker(
[-23.470073333333332, 151.94660166666668],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_e749eb49d9b44d47adf0aae4ae963f60 = L.circleMarker(
[-23.470071666666666, 151.94659666666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_674a5148874040148597392717e7c448 = L.circleMarker(
[-23.47007, 151.94659333333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_0f84d1f29c0df420874d32249c545d34 = L.circleMarker(
[-23.470068333333334, 151.94658833333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_c2911be1b2f72b492c3e81d5b923cd53 = L.circleMarker(
[-23.470068333333334, 151.94658166666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_483acc129d40c784f3bc069667ee6dc2 = L.circleMarker(
[-23.470068333333334, 151.94657833333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_c7277477a56540a303822366dcf7fb2d = L.circleMarker(
[-23.470068333333334, 151.94657333333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_72e6b246d6965c7fd781e049ac8243ca = L.circleMarker(
[-23.470066666666668, 151.94656833333335],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_20d491346f7cdb6fbaa6f136d3ed64e9 = L.circleMarker(
[-23.470065, 151.94656333333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_c9224fd51145b82ce72bcd3e5067ee5c = L.circleMarker(
[-23.470065, 151.94655833333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_9bdb02d770b314d9c17ba169fa0ebb06 = L.circleMarker(
[-23.470065, 151.946555],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_b971427049ff1dfafabf9abb6f683828 = L.circleMarker(
[-23.470065, 151.94655],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_9995d04570852f84c239665f3bf1cf02 = L.circleMarker(
[-23.470063333333332, 151.946545],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_78ebd303024e64ea120190cae60a0371 = L.circleMarker(
[-23.470061666666666, 151.94654166666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_ef48aa2a64f6f7fc52ab67ce38d89c83 = L.circleMarker(
[-23.470061666666666, 151.94653666666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_e5a293da4fe0bf491e13f257cba72cf3 = L.circleMarker(
[-23.470061666666666, 151.94653166666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_536e519caf8f71dc0d09bc14653add19 = L.circleMarker(
[-23.470058333333334, 151.946525],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_c6833da242c479b41680c9cab555d639 = L.circleMarker(
[-23.470056666666668, 151.94652],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_6594983d31357dd921f84a4f897aae99 = L.circleMarker(
[-23.470055, 151.94651333333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_80eaaaa5284ffdf04769b4c523350bd0 = L.circleMarker(
[-23.470055, 151.94650833333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_bda5f2c69c5691b63920d1aa2737de83 = L.circleMarker(
[-23.470055, 151.94650333333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_51f02139b9c8e16a1e215e889bd31155 = L.circleMarker(
[-23.470055, 151.94649833333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_5e122f48323da5d62d4be86b36d70b30 = L.circleMarker(
[-23.470053333333333, 151.946495],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_8060189fe5aaf6027520c8d8cd43a7f6 = L.circleMarker(
[-23.470051666666667, 151.94649],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_923c756ee0164db09c2378a9c714212b = L.circleMarker(
[-23.470051666666667, 151.946485],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_a784f52f0520a1cace6ab860c4f8c094 = L.circleMarker(
[-23.470051666666667, 151.94648166666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_f356f8aba13780175d01d80690edce7f = L.circleMarker(
[-23.470051666666667, 151.946475],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_32f069a5fd277728854ccf2eb462d28c = L.circleMarker(
[-23.470051666666667, 151.94647166666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_d1a408cabbc03d9b38ea2fdf0fa2db80 = L.circleMarker(
[-23.470051666666667, 151.94646833333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_e239526d567a6594512fe24dac1ee03d = L.circleMarker(
[-23.47005, 151.946465],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_4c56395fc30be6695f24eeaa4b00ec0f = L.circleMarker(
[-23.47005, 151.94646],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_4d295c143368d919076ebf4009ae62c3 = L.circleMarker(
[-23.470048333333335, 151.946455],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_061679777ffaefd329b7482aa5bee888 = L.circleMarker(
[-23.470048333333335, 151.94645],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_12933b5b2d9037d086310bf05829f8e8 = L.circleMarker(
[-23.470046666666665, 151.94644666666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_6cbfe444044e3f2344f68909acdc4d06 = L.circleMarker(
[-23.470046666666665, 151.94644166666666],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_daec113ace74caac6708488621a09790 = L.circleMarker(
[-23.470046666666665, 151.94643833333333],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_59d39ced3b2be550d0f34b84c61f4e72 = L.circleMarker(
[-23.470046666666665, 151.94643333333335],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_8406bd0a57099cf8b55f3eda6aa67085 = L.circleMarker(
[-23.470045, 151.94643],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_5b94e3f48246a0bdea9b4c20bbf1395a = L.circleMarker(
[-23.470045, 151.946425],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_7a5d76212fde6caedc7c54c730fd9c2c = L.circleMarker(
[-23.470041666666667, 151.94642],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_0f8e4c932031bd5b1c38398a6d52e424 = L.circleMarker(
[-23.47004, 151.946415],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_43d4a7bae7da1356c2c60b8c229814a9 = L.circleMarker(
[-23.470038333333335, 151.94640833333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_d4bf75a557f4fc7f3bc939e882f0ec49 = L.circleMarker(
[-23.470038333333335, 151.94640333333334],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_d913761c3a8a9d61713b0d2607b03044 = L.circleMarker(
[-23.470036666666665, 151.94639833333332],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_d0dc8bc6bca12ce20dc6e8c154fd3f84 = L.circleMarker(
[-23.470031666666667, 151.94639166666667],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_9424c321dd35268a0b2aae10af399ee5 = L.circleMarker(
[-23.47003, 151.94638666666665],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
var circle_marker_54b24a282606f2bb3a2889587e3c0d3d = L.circleMarker(
[-23.470026666666666, 151.94638],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "blue", "fillOpacity": 0.6, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 3, "stroke": true, "weight": 3}
).addTo(map_5c0f6862f4349b6cdcbb2e90721463be);
</script>
</html> |