-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWigleWifi_20171201110209_KML.kml
1444 lines (1444 loc) · 73.5 KB
/
WigleWifi_20171201110209_KML.kml
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
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<Style id="red">
<IconStyle>
<Icon><href>http://maps.google.com/mapfiles/ms/icons/red-dot.png</href></Icon>
</IconStyle>
</Style>
<Style id="yellow"><IconStyle><Icon><href>http://maps.google.com/mapfiles/ms/icons/yellow-dot.png</href></Icon></IconStyle></Style><Style id="green"><IconStyle><Icon><href>http://maps.google.com/mapfiles/ms/icons/green-dot.png</href></Icon></IconStyle></Style>
<Folder>
<name>WigleWifi_20171201110209.csv</name>
<Placemark>
<name>My_Internet</name>
<description>Name: <b>My_Internet</b><br/>Timestamp (UTC): <b>1512118691000</b><br/>Date: <b>2017-12-01 08:58:11 </b><br/>BSSID: <b>fc:75:16:2e:5a:47</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:11Z</when></TimeStamp>
<Point>
<coordinates>34.813595071211296,32.17061830172761,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Candan</name>
<description>Name: <b>Candan</b><br/>Timestamp (UTC): <b>1512118622000</b><br/>Date: <b>2017-12-01 08:57:02 </b><br/>BSSID: <b>c0:ff:d4:7b:82:30</b><br/>Capabilities: <b>[ESS][BLE]</b><br/>AccuracyMeters: <b>2</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:57:02Z</when></TimeStamp>
<Point>
<coordinates>34.81061687133246,32.16878253500298,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>HOTBOX-651B</name>
<description>Name: <b>HOTBOX-651B</b><br/>Timestamp (UTC): <b>1512118799000</b><br/>Date: <b>2017-12-01 08:59:59 </b><br/>BSSID: <b>54:64:d9:5f:59:83</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:59:59Z</when></TimeStamp>
<Point>
<coordinates>34.81191817927795,32.169027594463216,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>HOTBOX111</name>
<description>Name: <b>HOTBOX111</b><br/>Timestamp (UTC): <b>1512118631000</b><br/>Date: <b>2017-12-01 08:57:11 </b><br/>BSSID: <b>c0:ac:54:f6:ae:5e</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:57:11Z</when></TimeStamp>
<Point>
<coordinates>34.81129910090613,32.16875525343879,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Partner</name>
<description>Name: <b>Partner</b><br/>Timestamp (UTC): <b>1512118832000</b><br/>Date: <b>2017-12-01 09:00:32 </b><br/>BSSID: <b>42501_13111_7943940</b><br/>Capabilities: <b>UNKNOWN;il</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T09:00:32Z</when></TimeStamp>
<Point>
<coordinates>34.812397786519114,32.17005164614875,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>DIR-825-4f83</name>
<description>Name: <b>DIR-825-4f83</b><br/>Timestamp (UTC): <b>1512118871000</b><br/>Date: <b>2017-12-01 09:01:11 </b><br/>BSSID: <b>80:26:89:0d:4f:84</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T09:01:11Z</when></TimeStamp>
<Point>
<coordinates>34.81314408162315,32.17246213445027,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Bezeq Free T00C36</name>
<description>Name: <b>Bezeq Free T00C36</b><br/>Timestamp (UTC): <b>1512118268000</b><br/>Date: <b>2017-12-01 08:51:08 </b><br/>BSSID: <b>5a:0c:c8:0f:21:90</b><br/>Capabilities: <b>[ESS][BLE]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:51:08Z</when></TimeStamp>
<Point>
<coordinates>34.81077184677352,32.169491346626565,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>DIR-825-4f83</name>
<description>Name: <b>DIR-825-4f83</b><br/>Timestamp (UTC): <b>1512118205000</b><br/>Date: <b>2017-12-01 08:50:05 </b><br/>BSSID: <b>80:26:89:0d:4f:84</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:50:05Z</when></TimeStamp>
<Point>
<coordinates>34.81291470608912,32.17244003231061,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Ben Ami_2.4</name>
<description>Name: <b>Ben Ami_2.4</b><br/>Timestamp (UTC): <b>1512118229000</b><br/>Date: <b>2017-12-01 08:50:29 </b><br/>BSSID: <b>c4:04:15:60:6a:b5</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS][BLE]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:50:29Z</when></TimeStamp>
<Point>
<coordinates>34.8118405837912,32.171728186062275,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>BezeqNGN_001489_2.4GHz_1</name>
<description>Name: <b>BezeqNGN_001489_2.4GHz_1</b><br/>Timestamp (UTC): <b>1512118463000</b><br/>Date: <b>2017-12-01 08:54:23 </b><br/>BSSID: <b>c0:a0:bb:cb:59:5b</b><br/>Capabilities: <b>[ESS][BLE]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:54:23Z</when></TimeStamp>
<Point>
<coordinates>34.81072496254775,32.16935940800852,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>HP-Print-AF-Officejet Pro 6830</name>
<description>Name: <b>HP-Print-AF-Officejet Pro 6830</b><br/>Timestamp (UTC): <b>1512118847000</b><br/>Date: <b>2017-12-01 09:00:47 </b><br/>BSSID: <b>28:80:23:40:5f:af</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T09:00:47Z</when></TimeStamp>
<Point>
<coordinates>34.81282029540289,32.17095455549593,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Oded 2.4Ghz</name>
<description>Name: <b>Oded 2.4Ghz</b><br/>Timestamp (UTC): <b>1512118718000</b><br/>Date: <b>2017-12-01 08:58:38 </b><br/>BSSID: <b>00:12:2a:e1:6c:48</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:38Z</when></TimeStamp>
<Point>
<coordinates>34.81268528377859,32.17070417266147,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Partner</name>
<description>Name: <b>Partner</b><br/>Timestamp (UTC): <b>1512118244000</b><br/>Date: <b>2017-12-01 08:50:44 </b><br/>BSSID: <b>42501_13111_7943940</b><br/>Capabilities: <b>UNKNOWN;il</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:50:44Z</when></TimeStamp>
<Point>
<coordinates>34.811406143585245,32.17079804250259,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Mevohot_1</name>
<description>Name: <b>Mevohot_1</b><br/>Timestamp (UTC): <b>1512118196000</b><br/>Date: <b>2017-12-01 08:49:56 </b><br/>BSSID: <b>20:0c:c8:1b:a2:48</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:49:56Z</when></TimeStamp>
<Point>
<coordinates>34.81336124587249,32.172382685741084,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>HP-Print-C1-Deskjet 4640 series</name>
<description>Name: <b>HP-Print-C1-Deskjet 4640 series</b><br/>Timestamp (UTC): <b>1512118615000</b><br/>Date: <b>2017-12-01 08:56:55 </b><br/>BSSID: <b>28:80:23:f6:e0:c1</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:56:55Z</when></TimeStamp>
<Point>
<coordinates>34.810619520712386,32.169012321650136,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Bezeq Free 672B84</name>
<description>Name: <b>Bezeq Free 672B84</b><br/>Timestamp (UTC): <b>1512118772000</b><br/>Date: <b>2017-12-01 08:59:32 </b><br/>BSSID: <b>62:b2:55:67:2b:86</b><br/>Capabilities: <b>[ESS]</b><br/>AccuracyMeters: <b>2</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:59:32Z</when></TimeStamp>
<Point>
<coordinates>34.81275918581424,32.17092410916535,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Lahav</name>
<description>Name: <b>Lahav</b><br/>Timestamp (UTC): <b>1512118880000</b><br/>Date: <b>2017-12-01 09:01:20 </b><br/>BSSID: <b>08:3e:5d:5c:72:5e</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T09:01:20Z</when></TimeStamp>
<Point>
<coordinates>34.81383247774181,32.172359339129684,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Partner</name>
<description>Name: <b>Partner</b><br/>Timestamp (UTC): <b>1512118709000</b><br/>Date: <b>2017-12-01 08:58:29 </b><br/>BSSID: <b>42501_13111_7943940</b><br/>Capabilities: <b>UNKNOWN;il</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:58:29Z</when></TimeStamp>
<Point>
<coordinates>34.81293937528084,32.171111089076454,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Yotam_Shir</name>
<description>Name: <b>Yotam_Shir</b><br/>Timestamp (UTC): <b>1512118760000</b><br/>Date: <b>2017-12-01 08:59:20 </b><br/>BSSID: <b>00:26:5a:24:f4:f0</b><br/>Capabilities: <b>[WPS][WEP][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#yellow</styleUrl>
<TimeStamp><when>2017-12-01T08:59:20Z</when></TimeStamp>
<Point>
<coordinates>34.81334830357392,32.1711226542225,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>BezeqFree</name>
<description>Name: <b>BezeqFree</b><br/>Timestamp (UTC): <b>1512118784000</b><br/>Date: <b>2017-12-01 08:59:44 </b><br/>BSSID: <b>5a:ab:1b:62:0d:fd</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:59:44Z</when></TimeStamp>
<Point>
<coordinates>34.8123924291015,32.17009177038523,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>NIPPON_3687</name>
<description>Name: <b>NIPPON_3687</b><br/>Timestamp (UTC): <b>1512118208000</b><br/>Date: <b>2017-12-01 08:50:08 </b><br/>BSSID: <b>08:97:58:32:d2:98</b><br/>Capabilities: <b>[WPA-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>2</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:50:08Z</when></TimeStamp>
<Point>
<coordinates>34.812693847413286,32.17248382374769,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Neeman2.4</name>
<description>Name: <b>Neeman2.4</b><br/>Timestamp (UTC): <b>1512118259000</b><br/>Date: <b>2017-12-01 08:50:59 </b><br/>BSSID: <b>20:0c:c8:1d:c8:2b</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS][BLE]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:50:59Z</when></TimeStamp>
<Point>
<coordinates>34.81092582224991,32.16988410573102,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>LRWN</name>
<description>Name: <b>LRWN</b><br/>Timestamp (UTC): <b>1512118634000</b><br/>Date: <b>2017-12-01 08:57:14 </b><br/>BSSID: <b>ec:8c:a2:09:dd:48</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:57:14Z</when></TimeStamp>
<Point>
<coordinates>34.81154567298425,32.16878953124043,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>oved-main</name>
<description>Name: <b>oved-main</b><br/>Timestamp (UTC): <b>1512118481000</b><br/>Date: <b>2017-12-01 08:54:41 </b><br/>BSSID: <b>74:da:39:54:b8:1d</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:54:41Z</when></TimeStamp>
<Point>
<coordinates>34.81072496254775,32.16935940800852,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>044870715</name>
<description>Name: <b>044870715</b><br/>Timestamp (UTC): <b>1512118706000</b><br/>Date: <b>2017-12-01 08:58:26 </b><br/>BSSID: <b>14:ae:db:b7:ab:ad</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:26Z</when></TimeStamp>
<Point>
<coordinates>34.813083395926654,32.17110086640514,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>TUCHLER</name>
<description>Name: <b>TUCHLER</b><br/>Timestamp (UTC): <b>1512118841000</b><br/>Date: <b>2017-12-01 09:00:41 </b><br/>BSSID: <b>00:26:5a:69:94:e3</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T09:00:41Z</when></TimeStamp>
<Point>
<coordinates>34.81268553093009,32.170654027529686,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Candan</name>
<description>Name: <b>Candan</b><br/>Timestamp (UTC): <b>1512118676000</b><br/>Date: <b>2017-12-01 08:57:56 </b><br/>BSSID: <b>c0:ff:d4:7b:82:30</b><br/>Capabilities: <b>[ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:57:56Z</when></TimeStamp>
<Point>
<coordinates>34.81347187978352,32.1697212488476,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Liliup</name>
<description>Name: <b>Liliup</b><br/>Timestamp (UTC): <b>1512118268000</b><br/>Date: <b>2017-12-01 08:51:08 </b><br/>BSSID: <b>74:da:38:c3:12:45</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:51:08Z</when></TimeStamp>
<Point>
<coordinates>34.81077184677352,32.169491346626565,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Partner</name>
<description>Name: <b>Partner</b><br/>Timestamp (UTC): <b>1512118850000</b><br/>Date: <b>2017-12-01 09:00:50 </b><br/>BSSID: <b>42501_13111_7943940</b><br/>Capabilities: <b>UNKNOWN;il</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T09:00:50Z</when></TimeStamp>
<Point>
<coordinates>34.81287279562144,32.17113625414073,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>edimax_5G_A9241C</name>
<description>Name: <b>edimax_5G_A9241C</b><br/>Timestamp (UTC): <b>1512118274000</b><br/>Date: <b>2017-12-01 08:51:14 </b><br/>BSSID: <b>74:da:38:a9:24:1c</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:51:14Z</when></TimeStamp>
<Point>
<coordinates>34.81072496254775,32.16935940800852,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>spielman</name>
<description>Name: <b>spielman</b><br/>Timestamp (UTC): <b>1512118280000</b><br/>Date: <b>2017-12-01 08:51:20 </b><br/>BSSID: <b>7c:b7:33:2b:c4:52</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS][BLE]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:51:20Z</when></TimeStamp>
<Point>
<coordinates>34.81072496254775,32.16935940800852,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Bezeq Free GA32E3</name>
<description>Name: <b>Bezeq Free GA32E3</b><br/>Timestamp (UTC): <b>1512118880000</b><br/>Date: <b>2017-12-01 09:01:20 </b><br/>BSSID: <b>52:b0:ce:ac:32:98</b><br/>Capabilities: <b>[ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T09:01:20Z</when></TimeStamp>
<Point>
<coordinates>34.81383247774181,32.172359339129684,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>varda</name>
<description>Name: <b>varda</b><br/>Timestamp (UTC): <b>1512118214000</b><br/>Date: <b>2017-12-01 08:50:14 </b><br/>BSSID: <b>c4:12:f5:85:27:c2</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:50:14Z</when></TimeStamp>
<Point>
<coordinates>34.81226897382831,32.17254564957508,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>HOTBOX-F028</name>
<description>Name: <b>HOTBOX-F028</b><br/>Timestamp (UTC): <b>1512118688000</b><br/>Date: <b>2017-12-01 08:58:08 </b><br/>BSSID: <b>18:1e:78:86:03:15</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:08Z</when></TimeStamp>
<Point>
<coordinates>34.81356387819144,32.17042884309843,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Partner</name>
<description>Name: <b>Partner</b><br/>Timestamp (UTC): <b>1512118682000</b><br/>Date: <b>2017-12-01 08:58:02 </b><br/>BSSID: <b>42501_13111_7943940</b><br/>Capabilities: <b>UNKNOWN;il</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:58:02Z</when></TimeStamp>
<Point>
<coordinates>34.813514176763185,32.17010132675571,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>frank</name>
<description>Name: <b>frank</b><br/>Timestamp (UTC): <b>1512118730000</b><br/>Date: <b>2017-12-01 08:58:50 </b><br/>BSSID: <b>e8:94:f6:e2:6e:4b</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:50Z</when></TimeStamp>
<Point>
<coordinates>34.81278321992516,32.17026748685567,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>mika1</name>
<description>Name: <b>mika1</b><br/>Timestamp (UTC): <b>1512118238000</b><br/>Date: <b>2017-12-01 08:50:38 </b><br/>BSSID: <b>c4:12:f5:fb:c0:3e</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:50:38Z</when></TimeStamp>
<Point>
<coordinates>34.811600945951724,32.17117720998362,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>love</name>
<description>Name: <b>love</b><br/>Timestamp (UTC): <b>1512118169000</b><br/>Date: <b>2017-12-01 08:49:29 </b><br/>BSSID: <b>14:ae:db:58:73:75</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:49:29Z</when></TimeStamp>
<Point>
<coordinates>34.81436692415887,32.172250875103074,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>ronkla2_5</name>
<description>Name: <b>ronkla2_5</b><br/>Timestamp (UTC): <b>1512118235000</b><br/>Date: <b>2017-12-01 08:50:35 </b><br/>BSSID: <b>3c:1e:04:07:2a:ff</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>6</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:50:35Z</when></TimeStamp>
<Point>
<coordinates>34.81168874408503,32.17135803478369,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Partner</name>
<description>Name: <b>Partner</b><br/>Timestamp (UTC): <b>1512118262000</b><br/>Date: <b>2017-12-01 08:51:02 </b><br/>BSSID: <b>42501_13111_7943940</b><br/>Capabilities: <b>UNKNOWN;il</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:51:02Z</when></TimeStamp>
<Point>
<coordinates>34.810858045280845,32.169728418133815,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>stephane</name>
<description>Name: <b>stephane</b><br/>Timestamp (UTC): <b>1512118253000</b><br/>Date: <b>2017-12-01 08:50:53 </b><br/>BSSID: <b>00:24:2b:cf:13:21</b><br/>Capabilities: <b>[ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:50:53Z</when></TimeStamp>
<Point>
<coordinates>34.811098338566204,32.17023774400125,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>nurit</name>
<description>Name: <b>nurit</b><br/>Timestamp (UTC): <b>1512118706000</b><br/>Date: <b>2017-12-01 08:58:26 </b><br/>BSSID: <b>a0:4f:d4:45:1f:a1</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:26Z</when></TimeStamp>
<Point>
<coordinates>34.813083395926654,32.17110086640514,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>DIRECT-29-HP OfficeJet Pro 8710</name>
<description>Name: <b>DIRECT-29-HP OfficeJet Pro 8710</b><br/>Timestamp (UTC): <b>1512118673000</b><br/>Date: <b>2017-12-01 08:57:53 </b><br/>BSSID: <b>ec:8e:b5:05:57:19</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:57:53Z</when></TimeStamp>
<Point>
<coordinates>34.813408321637986,32.1695720901851,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Partner</name>
<description>Name: <b>Partner</b><br/>Timestamp (UTC): <b>1512118883000</b><br/>Date: <b>2017-12-01 09:01:23 </b><br/>BSSID: <b>42501_13111_7943940</b><br/>Capabilities: <b>UNKNOWN;il</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T09:01:23Z</when></TimeStamp>
<Point>
<coordinates>34.81407112131554,32.17232233794856,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>nina</name>
<description>Name: <b>nina</b><br/>Timestamp (UTC): <b>1512118790000</b><br/>Date: <b>2017-12-01 08:59:50 </b><br/>BSSID: <b>20:0c:c8:2b:2a:14</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:59:50Z</when></TimeStamp>
<Point>
<coordinates>34.812198841457004,32.16964553962474,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Partner</name>
<description>Name: <b>Partner</b><br/>Timestamp (UTC): <b>1512118688000</b><br/>Date: <b>2017-12-01 08:58:08 </b><br/>BSSID: <b>42501_13111_7943948</b><br/>Capabilities: <b>UNKNOWN;il</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:58:08Z</when></TimeStamp>
<Point>
<coordinates>34.81356387819144,32.17042884309843,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>ter123</name>
<description>Name: <b>ter123</b><br/>Timestamp (UTC): <b>1512118781000</b><br/>Date: <b>2017-12-01 08:59:41 </b><br/>BSSID: <b>70:4d:7b:0c:89:50</b><br/>Capabilities: <b>[WPA-PSK-CCMP][WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:59:41Z</when></TimeStamp>
<Point>
<coordinates>34.81249258786661,32.170302961492325,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>love</name>
<description>Name: <b>love</b><br/>Timestamp (UTC): <b>1512118886000</b><br/>Date: <b>2017-12-01 09:01:26 </b><br/>BSSID: <b>14:ae:db:58:73:75</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T09:01:26Z</when></TimeStamp>
<Point>
<coordinates>34.814265874458584,32.17229583572982,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>ELCHARAR_2.4</name>
<description>Name: <b>ELCHARAR_2.4</b><br/>Timestamp (UTC): <b>1512118649000</b><br/>Date: <b>2017-12-01 08:57:29 </b><br/>BSSID: <b>20:0c:c8:0f:21:93</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:57:29Z</when></TimeStamp>
<Point>
<coordinates>34.81208525807686,32.16943682725201,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Volvo247</name>
<description>Name: <b>Volvo247</b><br/>Timestamp (UTC): <b>1512118154000</b><br/>Date: <b>2017-12-01 08:49:14 </b><br/>BSSID: <b>08:97:58:32:69:c6</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>8</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:49:14Z</when></TimeStamp>
<Point>
<coordinates>34.814448298318844,32.172209259560766,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>HOTBOX-651B</name>
<description>Name: <b>HOTBOX-651B</b><br/>Timestamp (UTC): <b>1512118832000</b><br/>Date: <b>2017-12-01 09:00:32 </b><br/>BSSID: <b>54:64:d9:5f:59:83</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T09:00:32Z</when></TimeStamp>
<Point>
<coordinates>34.812397786519114,32.17005164614875,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>tal</name>
<description>Name: <b>tal</b><br/>Timestamp (UTC): <b>1512118703000</b><br/>Date: <b>2017-12-01 08:58:23 </b><br/>BSSID: <b>90:8d:78:54:22:a2</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:23Z</when></TimeStamp>
<Point>
<coordinates>34.81330158971711,32.17107862941617,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>KaymeraDev</name>
<description>Name: <b>KaymeraDev</b><br/>Timestamp (UTC): <b>1512118424000</b><br/>Date: <b>2017-12-01 08:53:44 </b><br/>BSSID: <b>00:f6:63:15:58:81</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:53:44Z</when></TimeStamp>
<Point>
<coordinates>34.81072496254775,32.16935940800852,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Is</name>
<description>Name: <b>Is</b><br/>Timestamp (UTC): <b>1512118691000</b><br/>Date: <b>2017-12-01 08:58:11 </b><br/>BSSID: <b>16:0c:c3:ee:27:39</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][WPS][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:11Z</when></TimeStamp>
<Point>
<coordinates>34.813595071211296,32.17061830172761,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Partner</name>
<description>Name: <b>Partner</b><br/>Timestamp (UTC): <b>1512118643000</b><br/>Date: <b>2017-12-01 08:57:23 </b><br/>BSSID: <b>42501_13111_7943940</b><br/>Capabilities: <b>UNKNOWN;il</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:57:23Z</when></TimeStamp>
<Point>
<coordinates>34.81193255078027,32.16909112707448,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Helen.</name>
<description>Name: <b>Helen.</b><br/>Timestamp (UTC): <b>1512118220000</b><br/>Date: <b>2017-12-01 08:50:20 </b><br/>BSSID: <b>a0:ab:1b:57:cd:42</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:50:20Z</when></TimeStamp>
<Point>
<coordinates>34.812042356198646,32.17229408710547,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>HOTBOX111</name>
<description>Name: <b>HOTBOX111</b><br/>Timestamp (UTC): <b>1512118697000</b><br/>Date: <b>2017-12-01 08:58:17 </b><br/>BSSID: <b>c0:ac:54:f7:3c:c2</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:17Z</when></TimeStamp>
<Point>
<coordinates>34.81362985551846,32.17098714928447,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Alpha125</name>
<description>Name: <b>Alpha125</b><br/>Timestamp (UTC): <b>1512118268000</b><br/>Date: <b>2017-12-01 08:51:08 </b><br/>BSSID: <b>10:fe:ed:74:fc:46</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][WPS][ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:51:08Z</when></TimeStamp>
<Point>
<coordinates>34.81077184677352,32.169491346626565,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>tal</name>
<description>Name: <b>tal</b><br/>Timestamp (UTC): <b>1512118706000</b><br/>Date: <b>2017-12-01 08:58:26 </b><br/>BSSID: <b>90:8d:78:54:22:a2</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:26Z</when></TimeStamp>
<Point>
<coordinates>34.813083395926654,32.17110086640514,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Oded 5Ghz</name>
<description>Name: <b>Oded 5Ghz</b><br/>Timestamp (UTC): <b>1512118712000</b><br/>Date: <b>2017-12-01 08:58:32 </b><br/>BSSID: <b>00:12:2a:e1:6c:4c</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:32Z</when></TimeStamp>
<Point>
<coordinates>34.812838021973164,32.17104344764023,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Jamcanup</name>
<description>Name: <b>Jamcanup</b><br/>Timestamp (UTC): <b>1512118550000</b><br/>Date: <b>2017-12-01 08:55:50 </b><br/>BSSID: <b>74:da:38:c3:0d:6b</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:55:50Z</when></TimeStamp>
<Point>
<coordinates>34.8106650271149,32.16917019230133,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Partner</name>
<description>Name: <b>Partner</b><br/>Timestamp (UTC): <b>1512118784000</b><br/>Date: <b>2017-12-01 08:59:44 </b><br/>BSSID: <b>42501_13111_7943940</b><br/>Capabilities: <b>UNKNOWN;il</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:59:44Z</when></TimeStamp>
<Point>
<coordinates>34.8123924291015,32.17009177038523,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Mheta_AP</name>
<description>Name: <b>Mheta_AP</b><br/>Timestamp (UTC): <b>1512118646000</b><br/>Date: <b>2017-12-01 08:57:26 </b><br/>BSSID: <b>86:2a:a8:eb:a9:60</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:57:26Z</when></TimeStamp>
<Point>
<coordinates>34.81201044802282,32.16927107246911,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>yotam17</name>
<description>Name: <b>yotam17</b><br/>Timestamp (UTC): <b>1512118760000</b><br/>Date: <b>2017-12-01 08:59:20 </b><br/>BSSID: <b>f8:ab:05:e9:6d:3d</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:59:20Z</when></TimeStamp>
<Point>
<coordinates>34.81334830357392,32.1711226542225,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>claire</name>
<description>Name: <b>claire</b><br/>Timestamp (UTC): <b>1512118772000</b><br/>Date: <b>2017-12-01 08:59:32 </b><br/>BSSID: <b>cc:b2:55:67:2b:85</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS]</b><br/>AccuracyMeters: <b>2</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:59:32Z</when></TimeStamp>
<Point>
<coordinates>34.81275918581424,32.17092410916535,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>HOTBOX-4D4E</name>
<description>Name: <b>HOTBOX-4D4E</b><br/>Timestamp (UTC): <b>1512118256000</b><br/>Date: <b>2017-12-01 08:50:56 </b><br/>BSSID: <b>00:78:9e:fb:1e:09</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:50:56Z</when></TimeStamp>
<Point>
<coordinates>34.81099874038432,32.170053389171805,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>sirocco_2.4o</name>
<description>Name: <b>sirocco_2.4o</b><br/>Timestamp (UTC): <b>1512118706000</b><br/>Date: <b>2017-12-01 08:58:26 </b><br/>BSSID: <b>14:cc:20:09:3c:b9</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:26Z</when></TimeStamp>
<Point>
<coordinates>34.813083395926654,32.17110086640514,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Partner</name>
<description>Name: <b>Partner</b><br/>Timestamp (UTC): <b>1512118865000</b><br/>Date: <b>2017-12-01 09:01:05 </b><br/>BSSID: <b>42501_13111_7943940</b><br/>Capabilities: <b>UNKNOWN;il</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T09:01:05Z</when></TimeStamp>
<Point>
<coordinates>34.813008839731566,32.17221891605429,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Fuck Off ext</name>
<description>Name: <b>Fuck Off ext</b><br/>Timestamp (UTC): <b>1512118646000</b><br/>Date: <b>2017-12-01 08:57:26 </b><br/>BSSID: <b>a4:2b:b0:e0:3a:01</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][WPS][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:57:26Z</when></TimeStamp>
<Point>
<coordinates>34.81201044802282,32.16927107246911,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>DIRECT-75-HP DeskJet 4670 series</name>
<description>Name: <b>DIRECT-75-HP DeskJet 4670 series</b><br/>Timestamp (UTC): <b>1512118706000</b><br/>Date: <b>2017-12-01 08:58:26 </b><br/>BSSID: <b>b0:5a:da:fa:44:76</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:26Z</when></TimeStamp>
<Point>
<coordinates>34.813083395926654,32.17110086640514,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>DIR-825-4f83</name>
<description>Name: <b>DIR-825-4f83</b><br/>Timestamp (UTC): <b>1512118712000</b><br/>Date: <b>2017-12-01 08:58:32 </b><br/>BSSID: <b>80:26:89:0d:4f:84</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:32Z</when></TimeStamp>
<Point>
<coordinates>34.812838021973164,32.17104344764023,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>edimax_2.4G_ruty</name>
<description>Name: <b>edimax_2.4G_ruty</b><br/>Timestamp (UTC): <b>1512118556000</b><br/>Date: <b>2017-12-01 08:55:56 </b><br/>BSSID: <b>74:da:38:d3:bb:81</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:55:56Z</when></TimeStamp>
<Point>
<coordinates>34.8106650271149,32.16917019230133,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Fuck Off Yourself</name>
<description>Name: <b>Fuck Off Yourself</b><br/>Timestamp (UTC): <b>1512118646000</b><br/>Date: <b>2017-12-01 08:57:26 </b><br/>BSSID: <b>16:ae:db:c1:ae:55</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:57:26Z</when></TimeStamp>
<Point>
<coordinates>34.81201044802282,32.16927107246911,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Baruch_2.4</name>
<description>Name: <b>Baruch_2.4</b><br/>Timestamp (UTC): <b>1512118754000</b><br/>Date: <b>2017-12-01 08:59:14 </b><br/>BSSID: <b>10:5a:f7:08:27:71</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:59:14Z</when></TimeStamp>
<Point>
<coordinates>34.81367243117691,32.17094894909989,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Partner</name>
<description>Name: <b>Partner</b><br/>Timestamp (UTC): <b>1512118799000</b><br/>Date: <b>2017-12-01 08:59:59 </b><br/>BSSID: <b>42501_13111_7943940</b><br/>Capabilities: <b>UNKNOWN;il</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:59:59Z</when></TimeStamp>
<Point>
<coordinates>34.81191817927795,32.169027594463216,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>nina</name>
<description>Name: <b>nina</b><br/>Timestamp (UTC): <b>1512118826000</b><br/>Date: <b>2017-12-01 09:00:26 </b><br/>BSSID: <b>20:0c:c8:2b:2a:14</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T09:00:26Z</when></TimeStamp>
<Point>
<coordinates>34.812206661227876,32.16956688989755,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>LRWN</name>
<description>Name: <b>LRWN</b><br/>Timestamp (UTC): <b>1512118639000</b><br/>Date: <b>2017-12-01 08:57:19 </b><br/>BSSID: <b>0c:f4:d5:29:a2:9c</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:57:19Z</when></TimeStamp>
<Point>
<coordinates>34.81183319930766,32.16889805537721,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>yotam17</name>
<description>Name: <b>yotam17</b><br/>Timestamp (UTC): <b>1512118748000</b><br/>Date: <b>2017-12-01 08:59:08 </b><br/>BSSID: <b>b0:b2:8f:36:a2:b3</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:59:08Z</when></TimeStamp>
<Point>
<coordinates>34.813608312741444,32.17050412989869,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Partner</name>
<description>Name: <b>Partner</b><br/>Timestamp (UTC): <b>1512118226000</b><br/>Date: <b>2017-12-01 08:50:26 </b><br/>BSSID: <b>42501_13111_7943940</b><br/>Capabilities: <b>UNKNOWN;il</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:50:26Z</when></TimeStamp>
<Point>
<coordinates>34.811904195497384,32.17191742911665,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>HP-Print-C1-Deskjet 4640 series</name>
<description>Name: <b>HP-Print-C1-Deskjet 4640 series</b><br/>Timestamp (UTC): <b>1512118556000</b><br/>Date: <b>2017-12-01 08:55:56 </b><br/>BSSID: <b>28:80:23:f6:e0:c1</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:55:56Z</when></TimeStamp>
<Point>
<coordinates>34.8106650271149,32.16917019230133,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Beni</name>
<description>Name: <b>Beni</b><br/>Timestamp (UTC): <b>1512118691000</b><br/>Date: <b>2017-12-01 08:58:11 </b><br/>BSSID: <b>c4:12:f5:f4:82:42</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:11Z</when></TimeStamp>
<Point>
<coordinates>34.813595071211296,32.17061830172761,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Chakir</name>
<description>Name: <b>Chakir</b><br/>Timestamp (UTC): <b>1512118184000</b><br/>Date: <b>2017-12-01 08:49:44 </b><br/>BSSID: <b>00:12:2a:35:c8:7c</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:49:44Z</when></TimeStamp>
<Point>
<coordinates>34.814036899369874,32.17228483399432,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name> InnovationEndeavors</name>
<description>Name: <b> InnovationEndeavors</b><br/>Timestamp (UTC): <b>1512118637000</b><br/>Date: <b>2017-12-01 08:57:17 </b><br/>BSSID: <b>74:da:38:a9:1c:df</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:57:17Z</when></TimeStamp>
<Point>
<coordinates>34.81174537287164,32.16883769901991,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Yotam _ work _ room</name>
<description>Name: <b>Yotam _ work _ room</b><br/>Timestamp (UTC): <b>1512118703000</b><br/>Date: <b>2017-12-01 08:58:23 </b><br/>BSSID: <b>d8:5d:4c:d1:4d:b0</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP-preauth][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:23Z</when></TimeStamp>
<Point>
<coordinates>34.81330158971711,32.17107862941617,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>TP-LINK_E3CA</name>
<description>Name: <b>TP-LINK_E3CA</b><br/>Timestamp (UTC): <b>1512118730000</b><br/>Date: <b>2017-12-01 08:58:50 </b><br/>BSSID: <b>84:16:f9:e4:e3:ca</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:50Z</when></TimeStamp>
<Point>
<coordinates>34.81278321992516,32.17026748685567,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Partner</name>
<description>Name: <b>Partner</b><br/>Timestamp (UTC): <b>1512118667000</b><br/>Date: <b>2017-12-01 08:57:47 </b><br/>BSSID: <b>42501_13111_7943940</b><br/>Capabilities: <b>UNKNOWN;il</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:57:47Z</when></TimeStamp>
<Point>
<coordinates>34.8130339454378,32.16957319918231,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>WR</name>
<description>Name: <b>WR</b><br/>Timestamp (UTC): <b>1512118796000</b><br/>Date: <b>2017-12-01 08:59:56 </b><br/>BSSID: <b>00:30:4f:82:7b:30</b><br/>Capabilities: <b>[WPA2-PSK-CCMP-preauth][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:59:56Z</when></TimeStamp>
<Point>
<coordinates>34.8119993015223,32.16921657591955,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Beni</name>
<description>Name: <b>Beni</b><br/>Timestamp (UTC): <b>1512118754000</b><br/>Date: <b>2017-12-01 08:59:14 </b><br/>BSSID: <b>c4:12:f5:f4:82:42</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:59:14Z</when></TimeStamp>
<Point>
<coordinates>34.81367243117691,32.17094894909989,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>LRWN</name>
<description>Name: <b>LRWN</b><br/>Timestamp (UTC): <b>1512118832000</b><br/>Date: <b>2017-12-01 09:00:32 </b><br/>BSSID: <b>0c:f4:d5:29:a2:9c</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T09:00:32Z</when></TimeStamp>
<Point>
<coordinates>34.812397786519114,32.17005164614875,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>LRWN</name>
<description>Name: <b>LRWN</b><br/>Timestamp (UTC): <b>1512118625000</b><br/>Date: <b>2017-12-01 08:57:05 </b><br/>BSSID: <b>ec:8c:a2:09:dd:48</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>2</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:57:05Z</when></TimeStamp>
<Point>
<coordinates>34.81078259065756,32.168750227662805,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>tal2</name>
<description>Name: <b>tal2</b><br/>Timestamp (UTC): <b>1512118706000</b><br/>Date: <b>2017-12-01 08:58:26 </b><br/>BSSID: <b>90:8d:78:54:22:a1</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:26Z</when></TimeStamp>
<Point>
<coordinates>34.813083395926654,32.17110086640514,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Gana7_2GExt</name>
<description>Name: <b>Gana7_2GExt</b><br/>Timestamp (UTC): <b>1512118247000</b><br/>Date: <b>2017-12-01 08:50:47 </b><br/>BSSID: <b>64:d9:54:e4:95:37</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:50:47Z</when></TimeStamp>
<Point>
<coordinates>34.81130191879183,32.17061250500982,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>UFI_UF230_B3F</name>
<description>Name: <b>UFI_UF230_B3F</b><br/>Timestamp (UTC): <b>1512118793000</b><br/>Date: <b>2017-12-01 08:59:53 </b><br/>BSSID: <b>00:0b:6c:4d:1b:3f</b><br/>Capabilities: <b>[WPA-PSK-CCMP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:59:53Z</when></TimeStamp>
<Point>
<coordinates>34.81210224701049,32.169423702689954,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>klaiman</name>
<description>Name: <b>klaiman</b><br/>Timestamp (UTC): <b>1512118796000</b><br/>Date: <b>2017-12-01 08:59:56 </b><br/>BSSID: <b>a0:ab:1b:62:0d:fc</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:59:56Z</when></TimeStamp>
<Point>
<coordinates>34.8119993015223,32.16921657591955,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Partner</name>
<description>Name: <b>Partner</b><br/>Timestamp (UTC): <b>1512118202000</b><br/>Date: <b>2017-12-01 08:50:02 </b><br/>BSSID: <b>42501_13111_7943940</b><br/>Capabilities: <b>UNKNOWN;il</b><br/>AccuracyMeters: <b>2</b><br/></description>
<styleUrl>#green</styleUrl>
<TimeStamp><when>2017-12-01T08:50:02Z</when></TimeStamp>
<Point>
<coordinates>34.81308167653217,32.1724135732166,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Oded 5Ghz</name>
<description>Name: <b>Oded 5Ghz</b><br/>Timestamp (UTC): <b>1512118718000</b><br/>Date: <b>2017-12-01 08:58:38 </b><br/>BSSID: <b>00:12:2a:e1:6c:4c</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:38Z</when></TimeStamp>
<Point>
<coordinates>34.81268528377859,32.17070417266147,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>ter123</name>
<description>Name: <b>ter123</b><br/>Timestamp (UTC): <b>1512118838000</b><br/>Date: <b>2017-12-01 09:00:38 </b><br/>BSSID: <b>70:4d:7b:0c:89:50</b><br/>Capabilities: <b>[WPA-PSK-CCMP][WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T09:00:38Z</when></TimeStamp>
<Point>
<coordinates>34.812577158369976,32.1704760444708,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>dlink-A09C</name>
<description>Name: <b>dlink-A09C</b><br/>Timestamp (UTC): <b>1512118271000</b><br/>Date: <b>2017-12-01 08:51:11 </b><br/>BSSID: <b>ac:f1:df:76:a0:9c</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][WPS][ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:51:11Z</when></TimeStamp>
<Point>
<coordinates>34.81074036189685,32.16939849690679,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>frank</name>
<description>Name: <b>frank</b><br/>Timestamp (UTC): <b>1512118834000</b><br/>Date: <b>2017-12-01 09:00:34 </b><br/>BSSID: <b>e8:94:f6:e2:6e:4b</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T09:00:34Z</when></TimeStamp>
<Point>
<coordinates>34.81245570309557,32.17019624834832,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Talfamily</name>
<description>Name: <b>Talfamily</b><br/>Timestamp (UTC): <b>1512118639000</b><br/>Date: <b>2017-12-01 08:57:19 </b><br/>BSSID: <b>e0:ce:c3:86:a7:9e</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS][BLE]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:57:19Z</when></TimeStamp>
<Point>
<coordinates>34.81183319930766,32.16889805537721,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>landau</name>
<description>Name: <b>landau</b><br/>Timestamp (UTC): <b>1512118829000</b><br/>Date: <b>2017-12-01 09:00:29 </b><br/>BSSID: <b>74:da:38:14:4b:88</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T09:00:29Z</when></TimeStamp>
<Point>
<coordinates>34.81230905410695,32.169817000218366,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Guymic</name>
<description>Name: <b>Guymic</b><br/>Timestamp (UTC): <b>1512118250000</b><br/>Date: <b>2017-12-01 08:50:50 </b><br/>BSSID: <b>14:ae:db:b7:99:2d</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:50:50Z</when></TimeStamp>
<Point>
<coordinates>34.811205413681165,32.1704220061369,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>varda</name>
<description>Name: <b>varda</b><br/>Timestamp (UTC): <b>1512118232000</b><br/>Date: <b>2017-12-01 08:50:32 </b><br/>BSSID: <b>c4:12:f5:85:27:c2</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS][BLE]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:50:32Z</when></TimeStamp>
<Point>
<coordinates>34.811768201385796,32.17154067297358,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>HOTBOX</name>
<description>Name: <b>HOTBOX</b><br/>Timestamp (UTC): <b>1512118694000</b><br/>Date: <b>2017-12-01 08:58:14 </b><br/>BSSID: <b>c0:ac:54:f7:42:60</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:58:14Z</when></TimeStamp>
<Point>
<coordinates>34.81363414318978,32.17081392063111,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>ter123</name>
<description>Name: <b>ter123</b><br/>Timestamp (UTC): <b>1512118742000</b><br/>Date: <b>2017-12-01 08:59:02 </b><br/>BSSID: <b>70:4d:7b:0c:89:50</b><br/>Capabilities: <b>[WPA-PSK-CCMP][WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:59:02Z</when></TimeStamp>
<Point>
<coordinates>34.813533118254576,32.17024204862788,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>orange</name>
<description>Name: <b>orange</b><br/>Timestamp (UTC): <b>1512118685000</b><br/>Date: <b>2017-12-01 08:58:05 </b><br/>BSSID: <b>00:21:04:e7:95:da</b><br/>Capabilities: <b>[WEP][ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#yellow</styleUrl>
<TimeStamp><when>2017-12-01T08:58:05Z</when></TimeStamp>
<Point>
<coordinates>34.813537076757704,32.17025406565039,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>Hotbox</name>
<description>Name: <b>Hotbox</b><br/>Timestamp (UTC): <b>1512118211000</b><br/>Date: <b>2017-12-01 08:50:11 </b><br/>BSSID: <b>00:78:9e:f9:e8:58</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>6</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:50:11Z</when></TimeStamp>
<Point>
<coordinates>34.81247911919242,32.1725225188478,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>evanson</name>
<description>Name: <b>evanson</b><br/>Timestamp (UTC): <b>1512118451000</b><br/>Date: <b>2017-12-01 08:54:11 </b><br/>BSSID: <b>7c:03:4c:fe:f6:68</b><br/>Capabilities: <b>[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS]</b><br/>AccuracyMeters: <b>6</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:54:11Z</when></TimeStamp>
<Point>
<coordinates>34.81072496254775,32.16935940800852,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>devolo-0f4</name>
<description>Name: <b>devolo-0f4</b><br/>Timestamp (UTC): <b>1512118256000</b><br/>Date: <b>2017-12-01 08:50:56 </b><br/>BSSID: <b>30:d3:2d:37:20:f4</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][WPS][ESS]</b><br/>AccuracyMeters: <b>4</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:50:56Z</when></TimeStamp>
<Point>
<coordinates>34.81099874038432,32.170053389171805,0 </coordinates>
</Point>
</Placemark>
<Placemark>
<name>hilda</name>
<description>Name: <b>hilda</b><br/>Timestamp (UTC): <b>1512118673000</b><br/>Date: <b>2017-12-01 08:57:53 </b><br/>BSSID: <b>00:30:4f:91:36:07</b><br/>Capabilities: <b>[WPA2-PSK-CCMP][ESS]</b><br/>AccuracyMeters: <b>3</b><br/></description>
<styleUrl>#red</styleUrl>
<TimeStamp><when>2017-12-01T08:57:53Z</when></TimeStamp>
<Point>
<coordinates>34.813408321637986,32.1695720901851,0 </coordinates>
</Point>