-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
926 lines (567 loc) · 43.4 KB
/
index.html
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
<!DOCTYPE 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.6.0/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://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_7ad112d8ca8349f4bf93e8cfb6d033d3 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/leaflet.markercluster.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.Default.css"/>
</head>
<body>
<div class="folium-map" id="map_7ad112d8ca8349f4bf93e8cfb6d033d3" ></div>
</body>
<script>
var map_7ad112d8ca8349f4bf93e8cfb6d033d3 = L.map(
"map_7ad112d8ca8349f4bf93e8cfb6d033d3",
{
center: [51.165691, 10.451526],
crs: L.CRS.EPSG3857,
zoom: 6,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_e70b3f3c8b5c471389e878d7cd377fc0 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 3, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_7ad112d8ca8349f4bf93e8cfb6d033d3);
var marker_cluster_15eadfb6747d442d93503ef45a9a99a7 = L.markerClusterGroup(
{}
);
map_7ad112d8ca8349f4bf93e8cfb6d033d3.addLayer(marker_cluster_15eadfb6747d442d93503ef45a9a99a7);
var marker_576c68faf3444cceac18c58c2ce8367c = L.marker(
[48.15017, 11.5688402],
{}
).addTo(marker_cluster_15eadfb6747d442d93503ef45a9a99a7);
var icon_65701f7c7f814d7886cf8beeb80bc470 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon", "prefox": "fa"}
);
marker_576c68faf3444cceac18c58c2ce8367c.setIcon(icon_65701f7c7f814d7886cf8beeb80bc470);
var popup_565b4a4d87d24423b6d94890b6c3fcd1 = L.popup({"maxWidth": 350});
var html_f5af48c7ccf946e1b896782221b37956 = $(`<div id="html_f5af48c7ccf946e1b896782221b37956" style="width: 100.0%; height: 100.0%;"><h4><b>Tomas Curti Spielmann</b></h4><h5><b>Endereço de e-mail: </b>totospielmann@hotmail.com</h5><h5><b>Tipo de moradia: </b>Apartamento sozinho(a)</h5><h5><b>Telefone: </b>4915237754113</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>TUM</h5><h5><b>Curso: </b>Engenharia Ambiental </h5></div>`)[0];
popup_565b4a4d87d24423b6d94890b6c3fcd1.setContent(html_f5af48c7ccf946e1b896782221b37956);
marker_576c68faf3444cceac18c58c2ce8367c.bindPopup(popup_565b4a4d87d24423b6d94890b6c3fcd1)
;
marker_576c68faf3444cceac18c58c2ce8367c.bindTooltip(
`<div>
Tomas Curti Spielmann
</div>`,
{"sticky": true}
);
var marker_ea5493079b304ba0ad1cee764c29c122 = L.marker(
[52.5091771, 13.328959],
{}
).addTo(marker_cluster_15eadfb6747d442d93503ef45a9a99a7);
var icon_190c0909f02346099973c8de9b614e4c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon", "prefox": "fa"}
);
marker_ea5493079b304ba0ad1cee764c29c122.setIcon(icon_190c0909f02346099973c8de9b614e4c);
var popup_9d7f808ef8104b01b4ca2441af948241 = L.popup({"maxWidth": 350});
var html_5656388680e84c0588ffff4166a8100b = $(`<div id="html_5656388680e84c0588ffff4166a8100b" style="width: 100.0%; height: 100.0%;"><h4><b>Mariana Lahoz</b></h4><h5><b>Endereço de e-mail: </b>mariana.lahoz00@gmail.com</h5><h5><b>Tipo de moradia: </b>Apartamento dividido</h5><h5><b>Telefone: </b>5511945362661</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>Udk</h5><h5><b>Curso: </b>Arquitetura </h5></div>`)[0];
popup_9d7f808ef8104b01b4ca2441af948241.setContent(html_5656388680e84c0588ffff4166a8100b);
marker_ea5493079b304ba0ad1cee764c29c122.bindPopup(popup_9d7f808ef8104b01b4ca2441af948241)
;
marker_ea5493079b304ba0ad1cee764c29c122.bindTooltip(
`<div>
Mariana Lahoz
</div>`,
{"sticky": true}
);
var marker_05a6bacb43b14eb58cb5fffb87a5192f = L.marker(
[-23.5491237, -46.6511477],
{}
).addTo(marker_cluster_15eadfb6747d442d93503ef45a9a99a7);
var icon_b44a8bc0572b474b83d957f819d7b33a = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon", "prefox": "fa"}
);
marker_05a6bacb43b14eb58cb5fffb87a5192f.setIcon(icon_b44a8bc0572b474b83d957f819d7b33a);
var popup_cf4429f10faf41d98d3057904234bf20 = L.popup({"maxWidth": 350});
var html_2687a783127b42daa2ecce32b18e0c57 = $(`<div id="html_2687a783127b42daa2ecce32b18e0c57" style="width: 100.0%; height: 100.0%;"><h4><b>Marina Quartim</b></h4><h5><b>Endereço de e-mail: </b>marinacpqb@uol.com.br</h5><h5><b>Tipo de moradia: </b>Casa dos pais</h5><h5><b>Telefone: </b>+55 (11) 99475-5447</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>Mackenzie</h5><h5><b>Curso: </b>Engenharia de produção </h5></div>`)[0];
popup_cf4429f10faf41d98d3057904234bf20.setContent(html_2687a783127b42daa2ecce32b18e0c57);
marker_05a6bacb43b14eb58cb5fffb87a5192f.bindPopup(popup_cf4429f10faf41d98d3057904234bf20)
;
marker_05a6bacb43b14eb58cb5fffb87a5192f.bindTooltip(
`<div>
Marina Quartim
</div>`,
{"sticky": true}
);
var marker_3c5cf967f6194601913bb0d98e506c94 = L.marker(
[48.14913, 11.5675602],
{}
).addTo(marker_cluster_15eadfb6747d442d93503ef45a9a99a7);
var icon_fd408d9aa75f42dfa3669f834252831d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon", "prefox": "fa"}
);
marker_3c5cf967f6194601913bb0d98e506c94.setIcon(icon_fd408d9aa75f42dfa3669f834252831d);
var popup_be412b5b31c6427596a7abb7af09b071 = L.popup({"maxWidth": 350});
var html_61c9dec1131a46d9a675eaf73edf6e9e = $(`<div id="html_61c9dec1131a46d9a675eaf73edf6e9e" style="width: 100.0%; height: 100.0%;"><h4><b>Gustavo Mançano</b></h4><h5><b>Endereço de e-mail: </b>gumaancano@gmail.com</h5><h5><b>Telefone: </b>+5511996018782</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>TUM</h5><h5><b>Curso: </b>Engenharia Química</h5></div>`)[0];
popup_be412b5b31c6427596a7abb7af09b071.setContent(html_61c9dec1131a46d9a675eaf73edf6e9e);
marker_3c5cf967f6194601913bb0d98e506c94.bindPopup(popup_be412b5b31c6427596a7abb7af09b071)
;
marker_3c5cf967f6194601913bb0d98e506c94.bindTooltip(
`<div>
Gustavo Mançano
</div>`,
{"sticky": true}
);
var marker_f26f8733d4fa4e0dbd103ffb8e2cae21 = L.marker(
[52.5125722, 13.3264146],
{}
).addTo(marker_cluster_15eadfb6747d442d93503ef45a9a99a7);
var icon_6306ef6a0bb04536bef64b0c0cdef989 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon", "prefox": "fa"}
);
marker_f26f8733d4fa4e0dbd103ffb8e2cae21.setIcon(icon_6306ef6a0bb04536bef64b0c0cdef989);
var popup_37cf41a07a1d4a3ebe9c8766da12f283 = L.popup({"maxWidth": 350});
var html_6edc7af3067548d8b7cc6f78c557927e = $(`<div id="html_6edc7af3067548d8b7cc6f78c557927e" style="width: 100.0%; height: 100.0%;"><h4><b>Sabine Tregier</b></h4><h5><b>Endereço de e-mail: </b>sabinetregier@gmail.com</h5><h5><b>Tipo de moradia: </b>Apartamento dividido</h5><h5><b>Telefone: </b>+49 176 75619066</h5><h5><b>Ano do abitur: </b>2018</h5><h5><b>Faculdade: </b>Technische Universität Berlin</h5><h5><b>Curso: </b>Technische Umweltschutz</h5></div>`)[0];
popup_37cf41a07a1d4a3ebe9c8766da12f283.setContent(html_6edc7af3067548d8b7cc6f78c557927e);
marker_f26f8733d4fa4e0dbd103ffb8e2cae21.bindPopup(popup_37cf41a07a1d4a3ebe9c8766da12f283)
;
marker_f26f8733d4fa4e0dbd103ffb8e2cae21.bindTooltip(
`<div>
Sabine Tregier
</div>`,
{"sticky": true}
);
var marker_b5e9014be04f4be38da49962dc969c45 = L.marker(
[52.5124622, 13.3271246],
{}
).addTo(marker_cluster_15eadfb6747d442d93503ef45a9a99a7);
var icon_281a3bd1748d479f8eff0ec7efb9d50a = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon", "prefox": "fa"}
);
marker_b5e9014be04f4be38da49962dc969c45.setIcon(icon_281a3bd1748d479f8eff0ec7efb9d50a);
var popup_0d02a68c4fa54999b401f0a39bc5a141 = L.popup({"maxWidth": 350});
var html_de9d801b37cf43b8912a7d86f94813a6 = $(`<div id="html_de9d801b37cf43b8912a7d86f94813a6" style="width: 100.0%; height: 100.0%;"><h4><b>Caio Paixão</b></h4><h5><b>Endereço de e-mail: </b>caiomartinspaixao@gmail.com</h5><h5><b>Tipo de moradia: </b>Apartamento dividido</h5><h5><b>Telefone: </b>+49 1525 1980844</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>TUB</h5><h5><b>Curso: </b>Wirtschaftsingenieurwesen</h5></div>`)[0];
popup_0d02a68c4fa54999b401f0a39bc5a141.setContent(html_de9d801b37cf43b8912a7d86f94813a6);
marker_b5e9014be04f4be38da49962dc969c45.bindPopup(popup_0d02a68c4fa54999b401f0a39bc5a141)
;
marker_b5e9014be04f4be38da49962dc969c45.bindTooltip(
`<div>
Caio Paixão
</div>`,
{"sticky": true}
);
var marker_11848468e744427fbf6afdd4f2153cf7 = L.marker(
[-23.6478762, -46.5743044],
{}
).addTo(marker_cluster_15eadfb6747d442d93503ef45a9a99a7);
var icon_33cc160f301d4d12bfd5f540bfe0bf51 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon", "prefox": "fa"}
);
marker_11848468e744427fbf6afdd4f2153cf7.setIcon(icon_33cc160f301d4d12bfd5f540bfe0bf51);
var popup_165f786034484d31b26444c24886cc77 = L.popup({"maxWidth": 350});
var html_aed177c1be52413f9bc77b55abb848db = $(`<div id="html_aed177c1be52413f9bc77b55abb848db" style="width: 100.0%; height: 100.0%;"><h4><b>Maíra</b></h4><h5><b>Endereço de e-mail: </b>mairadv29@gmail.com</h5><h5><b>Tipo de moradia: </b>Casa dos pais</h5><h5><b>Telefone: </b>(11) 99662-6255</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>Instituto Mauá de Tecnologia </h5><h5><b>Curso: </b>Engenharia civil </h5></div>`)[0];
popup_165f786034484d31b26444c24886cc77.setContent(html_aed177c1be52413f9bc77b55abb848db);
marker_11848468e744427fbf6afdd4f2153cf7.bindPopup(popup_165f786034484d31b26444c24886cc77)
;
marker_11848468e744427fbf6afdd4f2153cf7.bindTooltip(
`<div>
Maíra
</div>`,
{"sticky": true}
);
var marker_a657e29fc1fa4024890c18f168056ec2 = L.marker(
[48.14966, 11.5678602],
{}
).addTo(marker_cluster_15eadfb6747d442d93503ef45a9a99a7);
var icon_4ce9d661c1a846cebb478a5a4fa34524 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon", "prefox": "fa"}
);
marker_a657e29fc1fa4024890c18f168056ec2.setIcon(icon_4ce9d661c1a846cebb478a5a4fa34524);
var popup_7426c7339ece43909ed95784342573f4 = L.popup({"maxWidth": 350});
var html_43717b913f1144ee9046522d262b4d6e = $(`<div id="html_43717b913f1144ee9046522d262b4d6e" style="width: 100.0%; height: 100.0%;"><h4><b>Renata Beligni</b></h4><h5><b>Endereço de e-mail: </b>renatabeligni02@gmail.com</h5><h5><b>Tipo de moradia: </b>Apartamento dividido</h5><h5><b>Telefone: </b>+49 17661382897</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>T U München </h5><h5><b>Curso: </b>Engenharia Civil </h5></div>`)[0];
popup_7426c7339ece43909ed95784342573f4.setContent(html_43717b913f1144ee9046522d262b4d6e);
marker_a657e29fc1fa4024890c18f168056ec2.bindPopup(popup_7426c7339ece43909ed95784342573f4)
;
marker_a657e29fc1fa4024890c18f168056ec2.bindTooltip(
`<div>
Renata Beligni
</div>`,
{"sticky": true}
);
var marker_cluster_7139d70fb3ed46d3b474cb10f51a1c4b = L.markerClusterGroup(
{}
);
map_7ad112d8ca8349f4bf93e8cfb6d033d3.addLayer(marker_cluster_7139d70fb3ed46d3b474cb10f51a1c4b);
var marker_97cbec0ec8f14086b240dd762f0de817 = L.marker(
[-23.5613991, -46.7307891],
{}
).addTo(marker_cluster_7139d70fb3ed46d3b474cb10f51a1c4b);
var icon_7cd9581c3ea34fb5a60dbc6b5d4e61a2 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon", "prefox": "fa"}
);
marker_97cbec0ec8f14086b240dd762f0de817.setIcon(icon_7cd9581c3ea34fb5a60dbc6b5d4e61a2);
var popup_90094d71c5124684ba5a517feecf563b = L.popup({"maxWidth": 350});
var html_62ca19e796944c34a0c6a93575c9a50a = $(`<div id="html_62ca19e796944c34a0c6a93575c9a50a" style="width: 100.0%; height: 100.0%;"><h4><b>Bruno Abrão</b></h4><h5><b>Endereço de e-mail: </b>10brunoka@gmail.com</h5><h5><b>Tipo de moradia: </b>Casa dos pais</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>USP</h5><h5><b>Curso: </b>Direito</h5></div>`)[0];
popup_90094d71c5124684ba5a517feecf563b.setContent(html_62ca19e796944c34a0c6a93575c9a50a);
marker_97cbec0ec8f14086b240dd762f0de817.bindPopup(popup_90094d71c5124684ba5a517feecf563b)
;
marker_97cbec0ec8f14086b240dd762f0de817.bindTooltip(
`<div>
Bruno Abrão
</div>`,
{"sticky": true}
);
var marker_13209a4ba9d34707ae5232ab7248209e = L.marker(
[-23.5505199, -46.6333094],
{}
).addTo(marker_cluster_7139d70fb3ed46d3b474cb10f51a1c4b);
var icon_a7afb38fc9734cca966f39336d741d85 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon", "prefox": "fa"}
);
marker_13209a4ba9d34707ae5232ab7248209e.setIcon(icon_a7afb38fc9734cca966f39336d741d85);
var popup_5ea6ae277491429e95fc3eb5a5e728a2 = L.popup({"maxWidth": 350});
var html_14d7b3e99f064a84b1e45a2e7e94c064 = $(`<div id="html_14d7b3e99f064a84b1e45a2e7e94c064" style="width: 100.0%; height: 100.0%;"><h4><b>Marie Siemons</b></h4><h5><b>Endereço de e-mail: </b>marie.tess@hotmail.com</h5><h5><b>Tipo de moradia: </b>Casa dos pais</h5><h5><b>Telefone: </b>11998250020</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Curso: </b>Direito</h5></div>`)[0];
popup_5ea6ae277491429e95fc3eb5a5e728a2.setContent(html_14d7b3e99f064a84b1e45a2e7e94c064);
marker_13209a4ba9d34707ae5232ab7248209e.bindPopup(popup_5ea6ae277491429e95fc3eb5a5e728a2)
;
marker_13209a4ba9d34707ae5232ab7248209e.bindTooltip(
`<div>
Marie Siemons
</div>`,
{"sticky": true}
);
var marker_903d7e0af9de49eaaa3996f28990eb95 = L.marker(
[-22.1124951, -51.3768067],
{}
).addTo(marker_cluster_7139d70fb3ed46d3b474cb10f51a1c4b);
var icon_64ee119c9705465a897ee26cc58a59d7 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon", "prefox": "fa"}
);
marker_903d7e0af9de49eaaa3996f28990eb95.setIcon(icon_64ee119c9705465a897ee26cc58a59d7);
var popup_8bd3259e11f941769c5364258e938bd7 = L.popup({"maxWidth": 350});
var html_a15ebd51f0e248b197f1f736abc569b0 = $(`<div id="html_a15ebd51f0e248b197f1f736abc569b0" style="width: 100.0%; height: 100.0%;"><h4><b>Rodrigo De Paris Verza</b></h4><h5><b>Endereço de e-mail: </b>ro.verza@terra.com.br</h5><h5><b>Tipo de moradia: </b>Apartamento sozinho(a)</h5><h5><b>Telefone: </b>+55(11)977196777</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>Toledo Prudente</h5><h5><b>Curso: </b>Direito</h5></div>`)[0];
popup_8bd3259e11f941769c5364258e938bd7.setContent(html_a15ebd51f0e248b197f1f736abc569b0);
marker_903d7e0af9de49eaaa3996f28990eb95.bindPopup(popup_8bd3259e11f941769c5364258e938bd7)
;
marker_903d7e0af9de49eaaa3996f28990eb95.bindTooltip(
`<div>
Rodrigo de Paris Verza
</div>`,
{"sticky": true}
);
var marker_cluster_8b82a132299c4bec9120aa34ebcee325 = L.markerClusterGroup(
{}
);
map_7ad112d8ca8349f4bf93e8cfb6d033d3.addLayer(marker_cluster_8b82a132299c4bec9120aa34ebcee325);
var marker_97d704a43c464a07a2a739b9230e76bf = L.marker(
[52.5117122, 13.3277146],
{}
).addTo(marker_cluster_8b82a132299c4bec9120aa34ebcee325);
var icon_31626e6ea4c04b6ab89b36bd158d7b1b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "green", "prefix": "glyphicon", "prefox": "fa"}
);
marker_97d704a43c464a07a2a739b9230e76bf.setIcon(icon_31626e6ea4c04b6ab89b36bd158d7b1b);
var popup_6496f06783fb4452acd10ca318797b07 = L.popup({"maxWidth": 350});
var html_9d278791505243e4b486786e487ece93 = $(`<div id="html_9d278791505243e4b486786e487ece93" style="width: 100.0%; height: 100.0%;"><h4><b>Lucca Giusti</b></h4><h5><b>Endereço de e-mail: </b>luccagiusti@gmail.com</h5><h5><b>Tipo de moradia: </b>Apartamento dividido</h5><h5><b>Telefone: </b>4917665950083</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>TUB</h5><h5><b>Curso: </b>Technische Informatik</h5></div>`)[0];
popup_6496f06783fb4452acd10ca318797b07.setContent(html_9d278791505243e4b486786e487ece93);
marker_97d704a43c464a07a2a739b9230e76bf.bindPopup(popup_6496f06783fb4452acd10ca318797b07)
;
marker_97d704a43c464a07a2a739b9230e76bf.bindTooltip(
`<div>
Lucca Giusti
</div>`,
{"sticky": true}
);
var marker_cluster_84af20e6c0e84090adb2c2858812d617 = L.markerClusterGroup(
{}
);
map_7ad112d8ca8349f4bf93e8cfb6d033d3.addLayer(marker_cluster_84af20e6c0e84090adb2c2858812d617);
var marker_3d4dd21d543d4b9f9d3e5d3ab89a47a3 = L.marker(
[-21.1637492, -47.8543497],
{}
).addTo(marker_cluster_84af20e6c0e84090adb2c2858812d617);
var icon_9b6d2d16953041058e6054ba1f246f97 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "purple", "prefix": "glyphicon", "prefox": "fa"}
);
marker_3d4dd21d543d4b9f9d3e5d3ab89a47a3.setIcon(icon_9b6d2d16953041058e6054ba1f246f97);
var popup_4256b5cbd9a249699cce2d1d0e021fc3 = L.popup({"maxWidth": 350});
var html_5c7a93052e384608b434f07b55c5a0b4 = $(`<div id="html_5c7a93052e384608b434f07b55c5a0b4" style="width: 100.0%; height: 100.0%;"><h4><b>Bia Staufacar</b></h4><h5><b>Endereço de e-mail: </b>biastaufacar@gmail.com</h5><h5><b>Tipo de moradia: </b>Apartamento sozinho(a)</h5><h5><b>Telefone: </b>+55(11)974449051</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>USP</h5><h5><b>Curso: </b>Química Forense</h5></div>`)[0];
popup_4256b5cbd9a249699cce2d1d0e021fc3.setContent(html_5c7a93052e384608b434f07b55c5a0b4);
marker_3d4dd21d543d4b9f9d3e5d3ab89a47a3.bindPopup(popup_4256b5cbd9a249699cce2d1d0e021fc3)
;
marker_3d4dd21d543d4b9f9d3e5d3ab89a47a3.bindTooltip(
`<div>
Bia Staufacar
</div>`,
{"sticky": true}
);
var marker_a9326b145b244b6d9ea2650bf178088e = L.marker(
[49.2610952, -123.2453238],
{}
).addTo(marker_cluster_84af20e6c0e84090adb2c2858812d617);
var icon_2d285e35ed1d47c7895a1e9def10af8d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "purple", "prefix": "glyphicon", "prefox": "fa"}
);
marker_a9326b145b244b6d9ea2650bf178088e.setIcon(icon_2d285e35ed1d47c7895a1e9def10af8d);
var popup_a72690d19c5943db9b853cb026c7b69f = L.popup({"maxWidth": 350});
var html_e74435a27d5e4452993c4ecd8e6fcfeb = $(`<div id="html_e74435a27d5e4452993c4ecd8e6fcfeb" style="width: 100.0%; height: 100.0%;"><h4><b>Christie Lie Aoki Katayama</b></h4><h5><b>Endereço de e-mail: </b>christie.aoki@gmail.com</h5><h5><b>Tipo de moradia: </b>WG</h5><h5><b>Telefone: </b>+5511986688810</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>University of British Columbia - Vancouver</h5><h5><b>Curso: </b>Major in Biology</h5></div>`)[0];
popup_a72690d19c5943db9b853cb026c7b69f.setContent(html_e74435a27d5e4452993c4ecd8e6fcfeb);
marker_a9326b145b244b6d9ea2650bf178088e.bindPopup(popup_a72690d19c5943db9b853cb026c7b69f)
;
marker_a9326b145b244b6d9ea2650bf178088e.bindTooltip(
`<div>
Christie Lie Aoki Katayama
</div>`,
{"sticky": true}
);
var marker_87e5d59cc80f44e992638e2659ffecb1 = L.marker(
[52.4542845, 13.2933568],
{}
).addTo(marker_cluster_84af20e6c0e84090adb2c2858812d617);
var icon_a9427bc4ff974ba4b0eafc48cd98861b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "purple", "prefix": "glyphicon", "prefox": "fa"}
);
marker_87e5d59cc80f44e992638e2659ffecb1.setIcon(icon_a9427bc4ff974ba4b0eafc48cd98861b);
var popup_e866fbd8ca17415493cdba6227cd65f3 = L.popup({"maxWidth": 350});
var html_7a9e68c4e1e446b9aeb0aea9bb5ca013 = $(`<div id="html_7a9e68c4e1e446b9aeb0aea9bb5ca013" style="width: 100.0%; height: 100.0%;"><h4><b>Letícia Prado</b></h4><h5><b>Endereço de e-mail: </b>leticiacprado@gmail.com</h5><h5><b>Tipo de moradia: </b>Apartamento dividido</h5><h5><b>Telefone: </b>11988385597</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>Freie Universität </h5><h5><b>Curso: </b>Geologische Wissenschaften </h5></div>`)[0];
popup_e866fbd8ca17415493cdba6227cd65f3.setContent(html_7a9e68c4e1e446b9aeb0aea9bb5ca013);
marker_87e5d59cc80f44e992638e2659ffecb1.bindPopup(popup_e866fbd8ca17415493cdba6227cd65f3)
;
marker_87e5d59cc80f44e992638e2659ffecb1.bindTooltip(
`<div>
Letícia Prado
</div>`,
{"sticky": true}
);
var marker_95e844221f2e4b56a7431d53a7be80c0 = L.marker(
[52.4543245, 13.2934768],
{}
).addTo(marker_cluster_84af20e6c0e84090adb2c2858812d617);
var icon_8c28044221da4fe6b39c838f80c95782 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "purple", "prefix": "glyphicon", "prefox": "fa"}
);
marker_95e844221f2e4b56a7431d53a7be80c0.setIcon(icon_8c28044221da4fe6b39c838f80c95782);
var popup_10586047d2754549841cbbe5c11ef6c3 = L.popup({"maxWidth": 350});
var html_52a1f9c08cb047978a7d293b7620a9b6 = $(`<div id="html_52a1f9c08cb047978a7d293b7620a9b6" style="width: 100.0%; height: 100.0%;"><h4><b>Matthias</b></h4><h5><b>Endereço de e-mail: </b>matthias.eggersgorab@gmail.com</h5><h5><b>Tipo de moradia: </b>WG</h5><h5><b>Telefone: </b>Berlin</h5><h5><b>Ano do abitur: </b>2016</h5><h5><b>Faculdade: </b>Freie Universität Berlin</h5><h5><b>Curso: </b>Biologia</h5></div>`)[0];
popup_10586047d2754549841cbbe5c11ef6c3.setContent(html_52a1f9c08cb047978a7d293b7620a9b6);
marker_95e844221f2e4b56a7431d53a7be80c0.bindPopup(popup_10586047d2754549841cbbe5c11ef6c3)
;
marker_95e844221f2e4b56a7431d53a7be80c0.bindTooltip(
`<div>
Matthias
</div>`,
{"sticky": true}
);
var marker_cluster_d55749f0c3e940abb3b9af545890928a = L.markerClusterGroup(
{}
);
map_7ad112d8ca8349f4bf93e8cfb6d033d3.addLayer(marker_cluster_d55749f0c3e940abb3b9af545890928a);
var marker_5e89021ecf794d2fbb2da1a21f8762f4 = L.marker(
[49.0068901, 8.4036527],
{}
).addTo(marker_cluster_d55749f0c3e940abb3b9af545890928a);
var icon_59584060cb554a72bcd809b2e54d5dfc = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "orange", "prefix": "glyphicon", "prefox": "fa"}
);
marker_5e89021ecf794d2fbb2da1a21f8762f4.setIcon(icon_59584060cb554a72bcd809b2e54d5dfc);
var popup_e722e661a9f34f64ab46e820922395f2 = L.popup({"maxWidth": 350});
var html_eb85120089364366913f3aae81e8508b = $(`<div id="html_eb85120089364366913f3aae81e8508b" style="width: 100.0%; height: 100.0%;"><h4><b>Isabela Nogueira</b></h4><h5><b>Endereço de e-mail: </b>isabelanogueiraf.paz@gmail.com</h5><h5><b>Tipo de moradia: </b>Apartamento dividido</h5><h5><b>Telefone: </b>+49 172 7046070</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Curso: </b>Wirtschaftsinformatik </h5></div>`)[0];
popup_e722e661a9f34f64ab46e820922395f2.setContent(html_eb85120089364366913f3aae81e8508b);
marker_5e89021ecf794d2fbb2da1a21f8762f4.bindPopup(popup_e722e661a9f34f64ab46e820922395f2)
;
marker_5e89021ecf794d2fbb2da1a21f8762f4.bindTooltip(
`<div>
Isabela Nogueira
</div>`,
{"sticky": true}
);
var marker_cluster_11bbbf4d22a14646b2c1ceee920edbd5 = L.markerClusterGroup(
{}
);
map_7ad112d8ca8349f4bf93e8cfb6d033d3.addLayer(marker_cluster_11bbbf4d22a14646b2c1ceee920edbd5);
var marker_fa7331f88cf54f74b69a24348c9adeaa = L.marker(
[52.5210975, 13.4009235],
{}
).addTo(marker_cluster_11bbbf4d22a14646b2c1ceee920edbd5);
var icon_3054db1fbb1f4a68bc6f9fe520fa91c2 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "darkred", "prefix": "glyphicon", "prefox": "fa"}
);
marker_fa7331f88cf54f74b69a24348c9adeaa.setIcon(icon_3054db1fbb1f4a68bc6f9fe520fa91c2);
var popup_3d2059fbf6ed4fc98331f8c4ecec4fbd = L.popup({"maxWidth": 350});
var html_a8abf5b0af3743c793d9961da8e63a3d = $(`<div id="html_a8abf5b0af3743c793d9961da8e63a3d" style="width: 100.0%; height: 100.0%;"><h4><b>Ana Carolina Clauss</b></h4><h5><b>Endereço de e-mail: </b>nariosanacarolina@gmail.com</h5><h5><b>Tipo de moradia: </b>Apartamento sozinho(a)</h5><h5><b>Telefone: </b>05511963986359</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>humboldt universität zu berlin</h5><h5><b>Curso: </b>major em história da arte, minor em administração</h5></div>`)[0];
popup_3d2059fbf6ed4fc98331f8c4ecec4fbd.setContent(html_a8abf5b0af3743c793d9961da8e63a3d);
marker_fa7331f88cf54f74b69a24348c9adeaa.bindPopup(popup_3d2059fbf6ed4fc98331f8c4ecec4fbd)
;
marker_fa7331f88cf54f74b69a24348c9adeaa.bindTooltip(
`<div>
Ana Carolina Clauss
</div>`,
{"sticky": true}
);
var marker_cluster_b078bcb1dead47beb177c5f184f8c5d5 = L.markerClusterGroup(
{}
);
map_7ad112d8ca8349f4bf93e8cfb6d033d3.addLayer(marker_cluster_b078bcb1dead47beb177c5f184f8c5d5);
var marker_61e6df5aa7c949d9a35e0acddeb96c57 = L.marker(
[48.1356153, 11.5810405],
{}
).addTo(marker_cluster_b078bcb1dead47beb177c5f184f8c5d5);
var icon_e794dcb937ba42f3836fdf9fc3e9508f = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "lightred", "prefix": "glyphicon", "prefox": "fa"}
);
marker_61e6df5aa7c949d9a35e0acddeb96c57.setIcon(icon_e794dcb937ba42f3836fdf9fc3e9508f);
var popup_d055b98817d14ce297dd0daf60be570f = L.popup({"maxWidth": 350});
var html_4352140418194d369e23df4a230b3fa4 = $(`<div id="html_4352140418194d369e23df4a230b3fa4" style="width: 100.0%; height: 100.0%;"><h4><b>Anna Luiza Lhamby </b></h4><h5><b>Endereço de e-mail: </b>anna.lhamby@gmail.com</h5><h5><b>Telefone: </b>+5511992290072</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>LMU</h5><h5><b>Curso: </b>Kommunikationswissenschaft + Wirtschaftswissenschaften </h5></div>`)[0];
popup_d055b98817d14ce297dd0daf60be570f.setContent(html_4352140418194d369e23df4a230b3fa4);
marker_61e6df5aa7c949d9a35e0acddeb96c57.bindPopup(popup_d055b98817d14ce297dd0daf60be570f)
;
marker_61e6df5aa7c949d9a35e0acddeb96c57.bindTooltip(
`<div>
Anna Luiza Lhamby
</div>`,
{"sticky": true}
);
var marker_cluster_47da5f9679eb4a47bd2305cd6e07edb5 = L.markerClusterGroup(
{}
);
map_7ad112d8ca8349f4bf93e8cfb6d033d3.addLayer(marker_cluster_47da5f9679eb4a47bd2305cd6e07edb5);
var marker_38665e6e6a7d44ac80996d02f06c3737 = L.marker(
[48.1504827, 11.5802362],
{}
).addTo(marker_cluster_47da5f9679eb4a47bd2305cd6e07edb5);
var icon_be5e505e761d4319945edace3796bdd0 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "beige", "prefix": "glyphicon", "prefox": "fa"}
);
marker_38665e6e6a7d44ac80996d02f06c3737.setIcon(icon_be5e505e761d4319945edace3796bdd0);
var popup_06cdcbb43fb64ecc9a4e2e727a979f61 = L.popup({"maxWidth": 350});
var html_d1a7dd4d70a04d48b813c15bdb410441 = $(`<div id="html_d1a7dd4d70a04d48b813c15bdb410441" style="width: 100.0%; height: 100.0%;"><h4><b>Duda Lhamby </b></h4><h5><b>Endereço de e-mail: </b>dudalhamby@gmail.com</h5><h5><b>Telefone: </b>+55 11 99229.0062</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>LMU </h5><h5><b>Curso: </b>Kommunikationswissenschaft HF e Wirtschaftswissenschaften NF</h5></div>`)[0];
popup_06cdcbb43fb64ecc9a4e2e727a979f61.setContent(html_d1a7dd4d70a04d48b813c15bdb410441);
marker_38665e6e6a7d44ac80996d02f06c3737.bindPopup(popup_06cdcbb43fb64ecc9a4e2e727a979f61)
;
marker_38665e6e6a7d44ac80996d02f06c3737.bindTooltip(
`<div>
Duda Lhamby
</div>`,
{"sticky": true}
);
var marker_cluster_fd511df1497445dab9faa02d1c4a4c7c = L.markerClusterGroup(
{}
);
map_7ad112d8ca8349f4bf93e8cfb6d033d3.addLayer(marker_cluster_fd511df1497445dab9faa02d1c4a4c7c);
var marker_8f237bce373b46d89d703ab3c30ed56e = L.marker(
[52.517883, 13.3936551],
{}
).addTo(marker_cluster_fd511df1497445dab9faa02d1c4a4c7c);
var icon_c66806c17c8c4a60a456b22d2d19df64 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "darkblue", "prefix": "glyphicon", "prefox": "fa"}
);
marker_8f237bce373b46d89d703ab3c30ed56e.setIcon(icon_c66806c17c8c4a60a456b22d2d19df64);
var popup_f501efe4d87b40f6bc0c5d38be45f071 = L.popup({"maxWidth": 350});
var html_a80d688fb12c448bb3de95b37095f489 = $(`<div id="html_a80d688fb12c448bb3de95b37095f489" style="width: 100.0%; height: 100.0%;"><h4><b>Carolina Kiatake</b></h4><h5><b>Endereço de e-mail: </b>carolkiatake@gmail.com</h5><h5><b>Tipo de moradia: </b>Apartamento sozinho(a)</h5><h5><b>Telefone: </b>+4917677592400</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>HU berlin</h5><h5><b>Curso: </b>Erziehung e kulturwissenschaft </h5></div>`)[0];
popup_f501efe4d87b40f6bc0c5d38be45f071.setContent(html_a80d688fb12c448bb3de95b37095f489);
marker_8f237bce373b46d89d703ab3c30ed56e.bindPopup(popup_f501efe4d87b40f6bc0c5d38be45f071)
;
marker_8f237bce373b46d89d703ab3c30ed56e.bindTooltip(
`<div>
Carolina Kiatake
</div>`,
{"sticky": true}
);
var marker_cluster_8454652b3375444298a5bf1c85525b7d = L.markerClusterGroup(
{}
);
map_7ad112d8ca8349f4bf93e8cfb6d033d3.addLayer(marker_cluster_8454652b3375444298a5bf1c85525b7d);
var marker_47fe1d118a56438682b70d596d68ecf0 = L.marker(
[52.4010314, 13.0119098],
{}
).addTo(marker_cluster_8454652b3375444298a5bf1c85525b7d);
var icon_69d2d99c513349869d8b99fa5c900cf4 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "darkgreen", "prefix": "glyphicon", "prefox": "fa"}
);
marker_47fe1d118a56438682b70d596d68ecf0.setIcon(icon_69d2d99c513349869d8b99fa5c900cf4);
var popup_cc2ed7fb07a84f8f8bec8eccee7b7b5a = L.popup({"maxWidth": 350});
var html_bb45c77ff8154087bdf9c72d352faaf7 = $(`<div id="html_bb45c77ff8154087bdf9c72d352faaf7" style="width: 100.0%; height: 100.0%;"><h4><b>Luciana Lima</b></h4><h5><b>Endereço de e-mail: </b>lucianalima2211@gmail.com</h5><h5><b>Tipo de moradia: </b>Apartamento dividido</h5><h5><b>Telefone: </b>+4915207355468</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>Universität Potsdam</h5><h5><b>Curso: </b>Comunicação intercultural </h5></div>`)[0];
popup_cc2ed7fb07a84f8f8bec8eccee7b7b5a.setContent(html_bb45c77ff8154087bdf9c72d352faaf7);
marker_47fe1d118a56438682b70d596d68ecf0.bindPopup(popup_cc2ed7fb07a84f8f8bec8eccee7b7b5a)
;
marker_47fe1d118a56438682b70d596d68ecf0.bindTooltip(
`<div>
Luciana Lima
</div>`,
{"sticky": true}
);
var marker_cluster_a902be06af394e4991f7cb39c0e38ff5 = L.markerClusterGroup(
{}
);
map_7ad112d8ca8349f4bf93e8cfb6d033d3.addLayer(marker_cluster_a902be06af394e4991f7cb39c0e38ff5);
var marker_220560106e8145e29bab20603cec8d74 = L.marker(
[37.4279463, -121.9113737],
{}
).addTo(marker_cluster_a902be06af394e4991f7cb39c0e38ff5);
var icon_2827e50ea6ba4610bd94045f2fde1e5c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "user", "iconColor": "white", "markerColor": "cadetblue", "prefix": "glyphicon", "prefox": "fa"}
);
marker_220560106e8145e29bab20603cec8d74.setIcon(icon_2827e50ea6ba4610bd94045f2fde1e5c);
var popup_468f6fd578c14737b4903893e7879104 = L.popup({"maxWidth": 350});
var html_24031082e23948208fe02de834d88eeb = $(`<div id="html_24031082e23948208fe02de834d88eeb" style="width: 100.0%; height: 100.0%;"><h4><b>Mariah Oliveira</b></h4><h5><b>Endereço de e-mail: </b>mahshayla@gmail.com</h5><h5><b>Tipo de moradia: </b>Casa dos pais</h5><h5><b>Telefone: </b>5511941051122</h5><h5><b>Ano do abitur: </b>2019</h5><h5><b>Faculdade: </b>USP</h5><h5><b>Curso: </b>Administração </h5></div>`)[0];
popup_468f6fd578c14737b4903893e7879104.setContent(html_24031082e23948208fe02de834d88eeb);
marker_220560106e8145e29bab20603cec8d74.bindPopup(popup_468f6fd578c14737b4903893e7879104)
;
marker_220560106e8145e29bab20603cec8d74.bindTooltip(
`<div>
Mariah Oliveira
</div>`,
{"sticky": true}
);
var layer_control_1b068290406e400d89be11b71adfab2c = {
base_layers : {
"openstreetmap" : tile_layer_e70b3f3c8b5c471389e878d7cd377fc0,
},
overlays : {
"Engenharia e Arquitetura" : marker_cluster_15eadfb6747d442d93503ef45a9a99a7,
"Direito" : marker_cluster_7139d70fb3ed46d3b474cb10f51a1c4b,
"Informa\u00e7\u00e3o e Tecnologia" : marker_cluster_8b82a132299c4bec9120aa34ebcee325,
"Ci\u00eancias da Natureza" : marker_cluster_84af20e6c0e84090adb2c2858812d617,
"Economia e inform\u00e1tica " : marker_cluster_d55749f0c3e940abb3b9af545890928a,
"Design e Arte" : marker_cluster_11bbbf4d22a14646b2c1ceee920edbd5,
"Comunica\u00e7\u00e3o e Economia " : marker_cluster_b078bcb1dead47beb177c5f184f8c5d5,
"Comunica\u00e7\u00e3o e M\u00eddia" : marker_cluster_47da5f9679eb4a47bd2305cd6e07edb5,
"Educa\u00e7\u00e3o" : marker_cluster_fd511df1497445dab9faa02d1c4a4c7c,
"L\u00ednguas estrangeiras " : marker_cluster_8454652b3375444298a5bf1c85525b7d,
"Administra\u00e7\u00e3o, Economia e Neg\u00f3cios" : marker_cluster_a902be06af394e4991f7cb39c0e38ff5,
},
};
L.control.layers(
layer_control_1b068290406e400d89be11b71adfab2c.base_layers,
layer_control_1b068290406e400d89be11b71adfab2c.overlays,
{"autoZIndex": true, "collapsed": true, "position": "topright"}
).addTo(map_7ad112d8ca8349f4bf93e8cfb6d033d3);
marker_cluster_7139d70fb3ed46d3b474cb10f51a1c4b.remove();
marker_cluster_8b82a132299c4bec9120aa34ebcee325.remove();
marker_cluster_84af20e6c0e84090adb2c2858812d617.remove();
marker_cluster_d55749f0c3e940abb3b9af545890928a.remove();
marker_cluster_11bbbf4d22a14646b2c1ceee920edbd5.remove();
marker_cluster_b078bcb1dead47beb177c5f184f8c5d5.remove();
marker_cluster_47da5f9679eb4a47bd2305cd6e07edb5.remove();
marker_cluster_fd511df1497445dab9faa02d1c4a4c7c.remove();
marker_cluster_8454652b3375444298a5bf1c85525b7d.remove();
marker_cluster_a902be06af394e4991f7cb39c0e38ff5.remove();
</script>