forked from eliranwong/UniqueBible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexlbl.py
1153 lines (1152 loc) · 58.7 KB
/
exlbl.py
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
locations = (
("BL636", "Jerusalem", "31.777444", "35.234935"),
)
allLocations = (
("BL1", "Abana", "33.545097", "36.224661"),
("BL2", "Abarim", "31.761357", "35.746148"),
("BL3", "Abdon", "33.046264", "35.172513"),
("BL4", "Abel", "33.268526", "35.578046"),
("BL5", "Abel-Beth-Maachah", "33.268526", "35.578046"),
("BL7", "Abel-Maim", "33.268526", "35.578046"),
("BL8", "Abel-Meholah/Abelmeholah", "32.356010", "35.536929"),
("BL10", "Abel-Shittim", "31.858262", "35.641566"),
("BL12", "Abilene", "33.587300", "36.091710"),
("BL13", "Ebronah", "29.758043", "35.030601"),
("BL14", "Accad", "33.092016", "44.129248"),
("BL15", "Accho", "32.927583", "35.081555"),
("BL16", "Achaia", "37.983333", "23.733333"),
("BL17", "Achshaph", "32.951820", "35.173826"),
("BL18", "Achzib", "31.700000", "35.000000"),
("BL19", "Achzib", "33.048467", "35.102202"),
("BL20", "Adadah", "31.1858", "34.96745"),
("BL21", "Adam", "32.097720", "35.564690"),
("BL22", "Adamah", "32.7253", "35.4382"),
("BL23", "Adami/Nekeb", "32.610500", "35.542890"),
("BL24", "Adar", "30.9522", "34.7187"),
("BL26", "Adithaim", "31.7001", "34.89532"),
("BL27", "Admah", "31.119422", "35.412530"),
("BL28", "Adoraim", "31.516666", "34.983333"),
("BL29", "Adramyttium", "39.574800", "26.936700"),
("BL30", "Adria", "42.415000", "16.373500"),
("BL31", "Adullam", "31.650000", "35.000000"),
("BL32", "Adummim", "31.817585", "35.361646"),
("BL33", "Aenon", "32.398936", "35.543510"),
("BL34", "Ahava", "33.625197", "42.786647"),
("BL35", "Ahlab", "33.024980", "35.445446"),
("BL36", "Hai/Ai", "31.916978", "35.261226"),
("BL37", "Ai", "31.800520", "35.809018"),
("BL38", "Aiath", "31.916978", "35.261226"),
("BL39", "Aija", "31.916978", "35.261226"),
("BL40", "Ajalon/Aijalon", "31.841173", "35.025379"),
("BL41", "Ain", "34.353071", "36.385705"),
("BL42", "Ain", "31.370835", "34.860665"),
("BL43", "Aceldama", "31.777444", "35.234935"),
("BL44", "Akrabbim/Maaleh-Acrabbim", "30.688292", "35.263182"),
("BL45", "Alemeth", "31.828406", "35.287637"),
("BL46", "Alexandria", "31.227841", "29.956924"),
("BL47", "Alammelech", "32.97829", "35.182915"),
("BL48", "Allon-Bachuth", "31.930539", "35.221032"),
("BL49", "Almon", "31.828406", "35.287637"),
("BL50", "Almon-Diblathaim", "31.496845", "35.782841"),
("BL51", "Alush", "28.770015", "33.400460"),
("BL52", "Amad", "33.019337", "35.173644"),
("BL53", "Amalek", "30.659770", "34.835554"),
("BL54", "Amam", "31.162327", "35.057114"),
("BL55", "Amana", "33.681370", "36.055039"),
("BL57", "Ammah", "31.869005", "35.343177"),
("BL58", "Ammon", "31.950188", "35.924131"),
("BL59", "Amphipolis", "40.823225", "23.838631"),
("BL60", "Anab", "31.403888", "34.944185"),
("BL61", "Anaharath", "32.607039", "35.397389"),
("BL62", "Ananiah", "31.832910", "35.219683"),
("BL63", "Anathoth", "31.812912", "35.263498"),
("BL64", "Anem", "32.463499", "35.303683"),
("BL65", "Aner", "32.517239", "35.216325"),
("BL67", "Anim", "31.373521", "35.074552"),
("BL68", "Antioch", "36.202330", "36.162387"),
("BL69", "Antioch", "38.316430", "31.179486"),
("BL70", "Antipatris", "32.100437", "34.946509"),
("BL71", "Aphek", "34.066067", "35.865801"),
("BL72", "Aphek", "32.104712", "34.931979"),
("BL73", "Aphek", "32.778268", "35.698749"),
("BL74", "Aphekah", "32.104712", "34.931979"),
("BL75", "Aphik", "34.066067", "35.865801"),
("BL76", "Apollonia", "40.587632", "23.353351"),
("BL77", "Ar", "31.449809", "35.593958"),
("BL78", "Arab", "31.450746", "35.045648"),
("BL80", "Arabia", "27.4", "37.7"),
("BL81", "Arad", "31.280981", "35.126365"),
("BL82", "Aram/Syria", "34.85", "39.12"),
("BL83", "Syria-Maachah", "33.2", "36.5"),
("BL84", "Aramnaharaim", "35.1", "42.0"),
("BL85", "Aramzobah", "33.519299", "36.313449"),
("BL86", "Ararat", "39.702892", "44.298180"),
("BL87", "Areopagus/Mars Hill", "37.983333", "23.733333"),
("BL88", "Argob", "33.144", "36.136"),
("BL89", "Ariel", "31.777444", "35.234935"),
("BL90", "Arimathaea", "31.832739", "35.180162"),
("BL91", "Armageddon", "32.584183", "35.182291"),
("BL92", "Arnon", "31.428800", "35.677009"),
("BL93", "Aroer", "31.471095", "35.822003"),
("BL94", "Aroer", "31.9617", "35.9115"),
("BL95", "Aroer", "31.148931", "34.984852"),
("BL96", "Arpad/Arphad", "35.136204", "36.749488"),
("BL97", "Aruboth", "31.681234", "34.976398"),
("BL98", "Arumah", "32.154887", "35.318192"),
("BL99", "Arvad", "34.856082", "35.858485"),
("BL100", "Ashan", "31.8099", "34.9365"),
("BL101", "Ashdod", "31.802999", "34.635114"),
("BL102", "Ashdod", "31.802999", "34.635114"),
("BL103", "Askelon/Ashkelon", "31.662405", "34.547227"),
("BL105", "Ashnah", "31.8099", "34.9365"),
("BL106", "Astaroth/Ashtaroth", "32.833333", "36.016666"),
("BL107", "Karnaim", "32.766666", "36.016666"),
("BL108", "Asia/Achaia", "39.23", "32.73"),
("BL109", "Asshur/Assur", "36.359410", "43.152887"),
("BL110", "Assos", "39.489550", "26.335867"),
("BL111", "Asshur/Assyria/Assur", "36.359410", "43.152887"),
("BL113", "Ataroth", "31.600000", "35.7"),
("BL114", "Ataroth", "31.858917", "35.128313"),
("BL115", "Ataroth-Addar", "31.858917", "35.128313"),
("BL117", "spies", "30.880918", "34.630620"),
("BL118", "Athens", "37.983333", "23.733333"),
("BL119", "Atroth/Shophan", "31.9617", "35.9115"),
("BL120", "Attalia", "36.880825", "30.694565"),
("BL121", "Aven", "31.930539", "35.221032"),
("BL122", "Avith", "30.734691", "35.606250"),
("BL123", "Ava", "34.467725", "41.964955"),
("BL124", "Avim", "31.535773", "35.094099"),
("BL125", "Gaza", "31.524817", "34.433364"),
("BL126", "Azal", "31.778095", "35.247197"),
("BL128", "Azekah", "31.700638", "34.936185"),
("BL129", "Azmaveth", "31.834203", "35.260706"),
("BL130", "Azmon", "30.958506", "34.380500"),
("BL131", "Aznoth-Tabor", "32.686956", "35.390913"),
("BL132", "Azotus", "31.802999", "34.635114"),
("BL133", "Baal", "32.049953", "35.733402"),
("BL134", "Baalah", "31.244952", "34.840888"),
("BL135", "Baalah", "31.771104", "34.993812"),
("BL136", "Baalath", "31.927451", "35.055378"),
("BL137", "Baalath", "31.927451", "35.055378"),
("BL138", "Baalath-Beer", "32.049953", "35.733402"),
("BL139", "Baale", "31.771104", "34.993812"),
("BL140", "Baal-Gad", "33.416159", "35.857256"),
("BL141", "Baal-Hamon", "33.416159", "35.857256"),
("BL142", "Baal-Hazor", "31.979434", "35.279229"),
("BL143", "Baal-Hermon", "33.416159", "35.857256"),
("BL144", "Baal-Meon", "31.679454", "35.734892"),
("BL146", "Baal-Perazim", "31.756332", "35.223059"),
("BL147", "Baal-Shalisha", "32.029737", "35.222604"),
("BL148", "Baal-Tamar", "31.823781", "35.231009"),
("BL149", "Baal-Zephon", "29.938441", "32.395473"),
("BL150", "Babel", "32.536503", "44.420882"),
("BL151", "Babylon/Sheshach", "32.536503", "44.420882"),
("BL152", "Babylon", "32.536503", "44.420882"),
("BL153", "Baharumite", "31.824736", "35.388486"),
("BL154", "Bahurim", "31.824736", "35.388486"),
("BL155", "Balah", "31.244952", "34.840888"),
("BL156", "Bamah", "31.846847", "35.184912"),
("BL157", "Bamoth", "31.765031", "35.718565"),
("BL158", "Bamoth-Baal", "31.765031", "35.718565"),
("BL159", "Bashan", "32.800075", "35.937301"),
("BL160", "Bath-Rabbim", "31.800520", "35.809018"),
("BL161", "Bealoth", "31.162327", "35.057114"),
("BL162", "Aloth", "33.048467", "35.102202"),
("BL164", "Beer", "30.998062", "35.498547"),
("BL165", "Beer", "31.900074", "35.216688"),
("BL166", "Beer-Elim", "30.998062", "35.498547"),
("BL167", "Lahai-Roi", "30.687712", "34.494795"),
("BL168", "Beeroth", "31.900074", "35.216688"),
("BL169", "Beeroth", "30.317396", "35.407152"),
("BL170", "Beer-Sheba", "31.244952", "34.840888"),
("BL171", "Beesh-Terah", "32.833333", "36.016666"),
("BL172", "Bela", "30.926522", "35.419060"),
("BL173", "Bene-Berak", "32.035782", "34.827108"),
("BL174", "Bene-Jaakan", "30.317396", "35.407152"),
("BL175", "Benjamin", "31.777444", "35.234935"),
("BL176", "Beon", "31.679454", "35.734892"),
("BL177", "Berea", "40.5167", "22.2"),
("BL178", "Bered", "30.687712", "34.494795"),
("BL179", "Berothah", "33.931480", "36.152049"),
("BL180", "Berothai", "33.931480", "36.152049"),
("BL181", "Besor", "31.398056", "34.436667"),
("BL182", "Betah", "33.931480", "36.152049"),
("BL183", "Beten", "32.934736", "35.270799"),
("BL184", "Beth-Anath", "33.146864", "35.427134"),
("BL185", "Beth-Anoth", "31.558456", "35.124483"),
("BL186", "Bethany", "31.771665", "35.262122"),
("BL187", "Bethabara", "31.836321", "35.552600"),
("BL188", "Beth-Arabah", "31.843320", "35.506490"),
("BL189", "Beth-Arbel", "32.561011", "35.847829"),
("BL191", "Beth-Aven", "31.895717", "35.253098"),
("BL192", "Beth-Azmaveth", "31.834203", "35.260706"),
("BL193", "Beth-Baal-Meon", "31.679454", "35.734892"),
("BL194", "Beth-Barah", "31.836321", "35.552600"),
("BL195", "Beth-Birei", "31.391668", "34.940502"),
("BL196", "Beth-Car", "31.832739", "35.180162"),
("BL197", "Beth-Dagon", "31.908", "34.775"),
("BL198", "Beth-Dagon", "32.899561", "35.107928"),
("BL199", "Beth-Diblathaim", "31.496845", "35.782841"),
("BL200", "Eden", "33.519299", "36.313449"),
("BL202", "Beth-El", "31.930539", "35.221032"),
("BL203", "Beth-El", "32.049953", "35.733402"),
("BL204", "Beth-Emek", "32.978855", "35.167096"),
("BL205", "Bethesda", "31.777444", "35.234935"),
("BL206", "Beth-Ezel", "31.743719", "34.694006"),
("BL207", "Beth-Gamul", "31.519692", "35.844714"),
("BL208", "Gilgal", "31.863783", "35.518546"),
("BL209", "Beth-Haccerem", "31.665911", "35.241516"),
("BL211", "Beth-Aram", "31.816667", "35.583333"),
("BL212", "Beth-Haran", "31.816667", "35.583333"),
("BL213", "Beth-Hogla/Beth-Hoglah", "31.837062", "35.513151"),
("BL214", "Beth-Horon", "31.878925", "35.123567"),
("BL215", "Beth-Jesimoth/Beth-Jeshimoth", "31.776911", "35.598657"),
("BL216", "Aphrah", "31.953789", "35.299135"),
("BL217", "Beth-Lebaoth", "31.391668", "34.940502"),
("BL218", "Beth-Lehem/Bethlehem", "31.705361", "35.210266"),
("BL219", "Beth-Lehem", "32.735379", "35.189704"),
("BL220", "Ephratah", "31.705361", "35.210266"),
("BL221", "Beth-Maachah", "33.268526", "35.578046"),
("BL222", "Beth-Marcaboth", "31.391668", "34.940502"),
("BL223", "Beth-Meon", "31.679454", "35.734892"),
("BL224", "Millo", "32.213691", "35.281798"),
("BL225", "Beth-Nimrah", "31.900811", "35.625693"),
("BL226", "Beth-Pazzez", "32.463499", "35.303683"),
("BL227", "Beth-Palet/Beth-Phelet", "31.215418", "34.942986"),
("BL228", "Beth-Peor", "31.656099", "35.711870"),
("BL229", "Bethphage", "31.790383", "35.256672"),
("BL230", "Beth-Rehob", "33.219354", "35.544122"),
("BL231", "Bethsaida", "32.907848", "35.626972"),
("BL232", "Beth-Shan", "32.504238", "35.503077"),
("BL233", "Beth-Shean", "32.504238", "35.503077"),
("BL234", "Beth-Shemesh", "31.752748", "34.976609"),
("BL235", "Beth-Shemesh", "32.406430", "35.504628"),
("BL236", "Beth-Shemesh", "33.146864", "35.427134"),
("BL237", "Beth-Shittah", "32.552496", "35.438257"),
("BL238", "Beth-Tappuah", "31.529730", "35.050377"),
("BL239", "Togarmah", "40.065539", "45.036328"),
("BL240", "Bethuel", "32.049953", "35.733402"),
("BL241", "Bethul", "32.049953", "35.733402"),
("BL242", "Beth-Zur", "31.596107", "35.102620"),
("BL243", "Betonim", "32.010500", "35.706297"),
("BL245", "Bezek", "31.898029", "34.952878"),
("BL246", "Bezek", "32.3667", "35.4"),
("BL247", "Bezer", "32.516137", "36.488290"),
("BL248", "Bileam", "32.45", "35.2833"),
("BL249", "Bilhah", "31.244952", "34.840888"),
("BL250", "Bithynia", "40.905503", "30.685778"),
("BL251", "Bizjothjah", "31.244952", "34.840888"),
("BL252", "Bochim", "31.930539", "35.221032"),
("BL253", "Chorashan", "31.8099", "34.9365"),
("BL254", "Bozez", "31.857164", "35.287147"),
("BL255", "Bozkath/Boscath", "31.564850", "34.846725"),
("BL256", "Bozrah", "30.734691", "35.606250"),
("BL257", "Bozrah", "32.516137", "36.488290"),
("BL259", "Egypt/Nile", "31.032047", "33.854957"),
("BL262", "Buz", "26.625139", "37.919663"),
("BL263", "Cabbon", "31.5", "34.7667"),
("BL264", "Cabul", "32.865661", "35.211814"),
("BL265", "Cabul", "32.865661", "35.211814"),
("BL266", "Caesarea", "32.499544", "34.892184"),
("BL267", "Caesarea-Philippi", "33.248059", "35.694637"),
("BL268", "Calah", "36.142884", "43.312178"),
("BL269", "Calneh", "32.127213", "45.229995"),
("BL270", "Calno", "32.127213", "45.229995"),
("BL271", "Cana", "32.747015", "35.338771"),
("BL272", "Canaan/Chanaan", "31.693529", "34.843882"),
("BL273", "Canneh", "32.127213", "45.229995"),
("BL274", "Capernaum", "32.880594", "35.575157"),
("BL275", "Caphtor", "35.171239", "25.007204"),
("BL276", "Cappadocia", "36.731904", "35.486302"),
("BL277", "Carchemish", "36.829281", "38.015760"),
("BL278", "Carmel", "31.433331", "35.133331"),
("BL279", "Casiphia", "35.136204", "36.749488"),
("BL280", "Clauda", "34.843510", "24.091671"),
("BL281", "Cenchrea", "37.884603", "22.993359"),
("BL282", "Chaldeans/Chaldea", "30.962052", "46.103741"),
("BL283", "Chebar", "33.159129", "44.062930"),
("BL285", "Chephirah", "31.836401", "35.095272"),
("BL286", "Cherith", "32.309099", "35.559900"),
("BL287", "Cherub", "32.536503", "44.420882"),
("BL288", "Chesalon", "31.781049", "35.051130"),
("BL289", "Chesil", "32.049953", "35.733402"),
("BL290", "Chesulloth", "32.683231", "35.324694"),
("BL291", "Chezib", "31.700000", "35.000000"),
("BL292", "Chilmad", "36.359410", "43.152887"),
("BL294", "Chinnereth", "32.806775", "35.589360"),
("BL295", "Chinneroth/Cinneroth", "32.806775", "35.589360"),
("BL296", "Chios", "38.444840", "26.063302"),
("BL297", "Chisloth-Tabor", "32.683231", "35.324694"),
("BL298", "Kithlish", "31.823337", "34.777779"),
("BL299", "Chorazin", "32.909091", "35.552923"),
("BL300", "Cilicia", "36.918026", "34.891533"),
("BL301", "Destruction", "30.108086", "31.338220"),
("BL302", "Salt", "31.461525", "35.392411"),
("BL304", "Cnidus", "36.685022", "27.374394"),
("BL305", "Colosse", "37.783333", "29.25"),
("BL306", "Corinth", "37.905957", "22.877881"),
("BL308", "Coos", "36.804670", "27.089940"),
("BL309", "Chozeba", "31.700000", "35.000000"),
("BL310", "Crete", "35.171239", "25.007204"),
("BL311", "Chun", "33.931480", "36.152049"),
("BL312", "Ethiopia/Cush", "21.959788", "31.343557"),
("BL313", "Cushan", "21.959788", "31.343557"),
("BL314", "Cuth", "32.733333", "44.666667"),
("BL315", "Cuthah", "32.733333", "44.666667"),
("BL316", "Chittim/Cyprus", "35.018306", "33.207693"),
("BL317", "Cyrene/Cyrenian", "32.824979", "21.858301"),
("BL318", "Dabbasheth", "33.000000", "35.266682"),
("BL319", "Daberath/Dabareh", "32.691712", "35.371710"),
("BL320", "Dalmanutha", "32.847334", "35.522936"),
("BL321", "Dalmatia", "43.515484", "16.071538"),
("BL322", "Damascus", "33.519299", "36.313449"),
("BL323", "Dan/Dan-Jaan", "33.248659", "35.652483"),
("BL324", "Dannah", "31.561025", "34.975472"),
("BL325", "Debir", "31.416669", "34.966670"),
("BL326", "Debir", "31.816662", "35.349994"),
("BL327", "Debir", "32.662488", "35.783568"),
("BL328", "Decapolis", "33.519299", "36.313449"),
("BL329", "Dedan", "26.625139", "37.919663"),
("BL330", "Derbe", "37.350920", "33.271417"),
("BL331", "Dibon/Dimon", "31.496845", "35.782841"),
("BL332", "Dibon", "31.1858", "34.96745"),
("BL333", "Dibon-Gad", "31.496845", "35.782841"),
("BL334", "Dilean", "31.564850", "34.846725"),
("BL335", "Dimnah", "32.781808", "35.321364"),
("BL336", "Dimonah", "31.1858", "34.96745"),
("BL337", "Dinhabah", "30.336614", "35.529889"),
("BL338", "Meonenim", "32.213691", "35.281798"),
("BL339", "Dizahab", "28.507836", "34.516339"),
("BL340", "Dophkah", "28.770015", "33.400460"),
("BL341", "Dor", "32.613236", "34.918896"),
("BL342", "Dothan", "32.420643", "35.180198"),
("BL344", "Dumah", "31.438270", "34.982762"),
("BL345", "Dumah", "27.4", "37.7"),
("BL347", "Dura", "32.536503", "44.420882"),
("BL350", "Eben-Ezer", "31.832739", "35.180162"),
("BL351", "Abez", "32.261621", "35.328129"),
("BL352", "Hebron", "33.046264", "35.172513"),
("BL353", "Achmetha", "34.798311", "48.514966"),
("BL355", "Edar", "31.705361", "35.210266"),
("BL356", "Eder", "31.1858", "34.96745"),
("BL357", "Edom/Syria/Idumea", "30.734691", "35.606250"),
("BL358", "Edrei", "32.624137", "36.098996"),
("BL359", "Eglaim", "30.998062", "35.498547"),
("BL361", "Eglon", "31.5", "34.7667"),
("BL362", "Egypt/Egyptians/Egyptian", "30.108086", "31.338220"),
("BL364", "Ekron", "31.777614", "34.852145"),
("BL365", "Elam", "32.189191", "48.257886"),
("BL366", "Elath", "29.528502", "35.005732"),
("BL367", "El-Beth-El", "31.930539", "35.221032"),
("BL368", "Elealeh", "31.813796", "35.824275"),
("BL369", "Elim", "29.306194", "32.980924"),
("BL370", "Elishah", "35.018306", "33.207693"),
("BL372", "Ellasar", "37.056944", "40.997222"),
("BL373", "Elon", "31.973818", "35.116531"),
("BL374", "Elon-Beth-Hanan", "31.852593", "35.109078"),
("BL375", "Eloth", "29.528502", "35.005732"),
("BL376", "El-Paran", "29.151667", "33.541944"),
("BL377", "Eltekeh", "31.869521", "35.066880"),
("BL378", "Eltekeh", "31.869521", "35.066880"),
("BL379", "Eltekon", "31.660570", "34.995406"),
("BL380", "Eltolad", "32.049953", "35.733402"),
("BL382", "Emmaus", "31.839450", "34.989529"),
("BL384", "Enam", "32.15", "35.1260"),
("BL385", "En-Dor", "32.625700", "35.385667"),
("BL386", "En-Eglaim", "30.998062", "35.498547"),
("BL387", "En-Gannim", "31.750000", "34.950106"),
("BL388", "En-Gannim", "32.463499", "35.303683"),
("BL389", "En-Gedi", "31.461525", "35.392411"),
("BL390", "En-Haddah", "32.478425", "35.254452"),
("BL391", "En-Hakkore", "31.752748", "34.976609"),
("BL392", "En-Hazor", "33.100000", "35.350000"),
("BL393", "En-Mishpat", "30.687712", "34.494795"),
("BL394", "En-Rimmon", "31.370835", "34.860665"),
("BL395", "En-Rogel", "31.767775", "35.234408"),
("BL396", "En-Shemesh", "31.774020", "35.270231"),
("BL397", "En-Tappuah", "32.116666", "35.233333"),
("BL398", "Ephah", "28.932881", "34.90832"),
("BL399", "Ephes-Dammim", "31.691186", "34.944496"),
("BL400", "Ephesus", "37.953314", "27.367825"),
("BL401", "Ephraim", "31.953789", "35.299135"),
("BL402", "Ephraim", "31.777444", "35.234935"),
("BL403", "Ephrath", "31.705361", "35.210266"),
("BL404", "Ephratah", "31.705361", "35.210266"),
("BL406", "Ephrain", "31.953789", "35.299135"),
("BL407", "Erech", "32.322222", "45.636111"),
("BL408", "Esau", "30.734691", "35.606250"),
("BL409", "Esek", "31.391291", "34.560570"),
("BL410", "Eshean", "31.420175", "35.033537"),
("BL411", "Eshtaol", "31.782429", "35.009012"),
("BL412", "Eshtemoa", "31.373521", "35.074552"),
("BL413", "Eshtemoh", "31.373521", "35.074552"),
("BL414", "Etam", "31.736294", "35.054850"),
("BL415", "Etam", "31.370835", "34.860665"),
("BL416", "Etam", "31.686465", "35.174740"),
("BL417", "Etham", "30.467511", "32.282767"),
("BL418", "Ether", "31.8099", "34.9365"),
("BL419", "Ethiopia", "21.959788", "31.343557"),
("BL420", "Ittah-Kazin", "32.781808", "35.321364"),
("BL421", "Euphrates River", "35.090577", "40.427780"),
("BL422", "Azem/Ezem", "32.049953", "35.733402"),
("BL423", "Ezion-Gaber/Ezion-Geber", "29.758043", "35.030601"),
("BL424", "Havens", "34.921384", "24.731141"),
("BL427", "Appii", "41.468706", "12.993929"),
("BL429", "Gaash", "32.121473", "35.150392"),
("BL430", "Gabbatha", "31.777444", "35.234935"),
("BL431", "Galatia", "37.578134", "32.453182"),
("BL432", "Galeed", "32.565267", "36.005559"),
("BL433", "Gilgal/Galilee", "32.706745", "35.301528"),
("BL434", "Gallim", "31.816667", "35.250000"),
("BL435", "Gammadims", "34.856082", "35.858485"),
("BL436", "Gareb", "31.777444", "35.234935"),
("BL438", "Ephraim", "31.777444", "35.234935"),
("BL442", "Gath", "31.693529", "34.843882"),
("BL443", "Gittah-Hepher/Gath-Hepher", "32.739184", "35.328226"),
("BL444", "Gath-Rimmon", "32.069722", "34.883055"),
("BL445", "Gath-Rimmon", "32.45", "35.2833"),
("BL446", "Gaza/Azzah", "31.524817", "34.433364"),
("BL447", "Gaba/Geba", "31.857878", "35.259755"),
("BL448", "Geba", "31.846847", "35.184912"),
("BL450", "Gebim", "31.800000", "35.250000"),
("BL451", "Geder", "31.633330", "35.083333"),
("BL452", "Gederah", "31.823337", "34.777779"),
("BL453", "Gederoth", "31.823337", "34.777779"),
("BL454", "Gederothaim", "31.823337", "34.777779"),
("BL455", "Gedor", "31.633330", "35.083333"),
("BL456", "Gedor", "31.823337", "34.777779"),
("BL457", "Geliloth", "31.863783", "35.518546"),
("BL458", "Gennesaret", "32.859358", "35.509937"),
("BL459", "Gerar", "31.391291", "34.560570"),
("BL460", "Chimham", "31.705361", "35.210266"),
("BL461", "Geshur", "33.000000", "36.416670"),
("BL462", "Gethsemane", "31.777444", "35.234935"),
("BL463", "Gezer/Gazer", "31.876111", "34.9225"),
("BL464", "Giah", "31.869005", "35.343177"),
("BL465", "Gibbethon", "31.976623", "35.004896"),
("BL466", "Gibeath/Gibeah", "31.823781", "35.231009"),
("BL467", "Gibeah", "31.433331", "35.133331"),
("BL470", "Gibeon", "31.846847", "35.184912"),
("BL471", "Gidom", "31.934660", "35.297063"),
("BL473", "Gihon", "31.773116", "35.237186"),
("BL474", "Gilboa", "32.516667", "35.400000"),
("BL475", "Gilead", "32.042523", "35.724241"),
("BL476", "Gilgal", "31.863783", "35.518546"),
("BL477", "Gilgal", "32.029737", "35.222604"),
("BL479", "Giloh", "31.616667", "35.083333"),
("BL480", "Gimzo", "31.928659", "34.943219"),
("BL481", "Gittaim", "31.963575", "34.952536"),
("BL482", "Goath", "31.777444", "35.234935"),
("BL483", "Gob", "31.876111", "34.9225"),
("BL484", "Gog", "46", "47"),
("BL486", "Golan", "32.800075", "35.937301"),
("BL487", "Golgotha", "31.777444", "35.234935"),
("BL489", "Gomorrah/Gomorrha", "31.157248", "35.473954"),
("BL490", "Goshen", "30.728501", "31.804692"),
("BL491", "Goshen", "31.450000", "34.916667"),
("BL492", "Gozan", "36.840013", "40.068890"),
("BL494", "Zidon", "33.563167", "35.366346"),
("BL495", "Grecia/Greece", "37.983333", "23.733333"),
("BL496", "Gudgodah", "30.358285", "35.190270"),
("BL497", "Gur", "32.45", "35.2833"),
("BL498", "Gurbaal", "30.734691", "35.606250"),
("BL499", "Habor", "36.344972", "40.789333"),
("BL500", "Hachilah", "31.466604", "35.216691"),
("BL501", "Hadadrimmon", "32.524106", "35.205136"),
("BL502", "Hadashah", "31.679512", "34.695903"),
("BL503", "Hadid", "31.963575", "34.952536"),
("BL504", "Hadrach", "33.519299", "36.313449"),
("BL505", "Eleph", "31.792733", "35.196862"),
("BL506", "Pi-Hahiroth", "29.94658", "32.425144"),
("BL508", "Halah", "36.344972", "40.789333"),
("BL509", "Halhul", "31.579549", "35.099103"),
("BL510", "Hali", "32.934736", "35.270799"),
("BL514", "Ham", "31.950188", "35.924131"),
("BL515", "Ham", "30.108086", "31.338220"),
("BL516", "Hamath", "35.136204", "36.749488"),
("BL517", "Hamath-Zobah", "35.136204", "36.749488"),
("BL518", "Hammath/Hemath", "33.125828", "35.165000"),
("BL519", "Hammon", "33.125828", "35.165000"),
("BL520", "Hammoth-Dor", "33.125828", "35.165000"),
("BL521", "Hamonah", "31.496845", "35.782841"),
("BL522", "Hanes", "29.085425", "30.934402"),
("BL523", "Hannathon", "32.916002", "35.426637"),
("BL524", "Haphraim", "32.608682", "35.288264"),
("BL525", "Hara", "36.344972", "40.789333"),
("BL526", "Haradah", "30.317396", "35.407152"),
("BL527", "Haran", "36.863864", "39.032196"),
("BL529", "Harod", "32.549638", "35.355647"),
("BL530", "Harosheth", "32.691177", "35.110039"),
("BL531", "Hashmonah", "30.317396", "35.407152"),
("BL532", "Hauran", "32.800075", "35.937301"),
("BL534", "Havilah", "30.14", "35.22"),
("BL535", "Jair/Havoth-Jair", "32.042523", "35.724241"),
("BL536", "Hazar-Addar", "30.9522", "34.7187"),
("BL537", "Hazar-Enan", "34.229499", "37.240077"),
("BL538", "Hazar-Gaddah", "31.162327", "35.057114"),
("BL539", "Hazar-Shual", "31.215418", "34.942986"),
("BL540", "Hazar-Susah", "31.391668", "34.940502"),
("BL541", "Hazar-Susim", "31.391668", "34.940502"),
("BL542", "Hazezon-Tamar/Hazazon-Tamar", "31.461525", "35.392411"),
("BL543", "Hazar-Hatticon", "35.136204", "36.749488"),
("BL544", "Hazeroth", "28.916667", "34.500000"),
("BL545", "Hazor", "33.017181", "35.568048"),
("BL546", "Hazor", "30.687712", "34.494795"),
("BL547", "Hazor", "31.162327", "35.057114"),
("BL548", "Hazor", "31.833333", "35.20000"),
("BL550", "Hadattah", "31.162327", "35.057114"),
("BL551", "Hebron", "31.535773", "35.094099"),
("BL552", "Helam", "32.184372", "35.702870"),
("BL553", "Helbah", "34.066067", "35.865801"),
("BL554", "Helbon", "33.664912", "36.248576"),
("BL556", "Heleph", "33.134416", "35.332157"),
("BL557", "Beth-Shemesh", "30.108086", "31.338220"),
("BL558", "Helkath", "32.955448", "35.211971"),
("BL559", "Helkath-Hazzurim", "31.880126", "35.280188"),
("BL560", "Hena", "34.467725", "41.964955"),
("BL561", "Hepher", "32.3667", "34.8833"),
("BL563", "Hareth", "31.621492", "35.029273"),
("BL564", "Hermon", "33.416159", "35.857256"),
("BL565", "Heshbon", "31.800520", "35.809018"),
("BL566", "Heshmon", "31.215418", "34.942986"),
("BL567", "Hethlon", "34.737990", "36.340918"),
("BL568", "Hezron", "33.017181", "35.568048"),
("BL569", "Hierapolis", "37.924517", "29.124525"),
("BL570", "Hilen", "31.583333", "34.950000"),
("BL571", "Hobah", "33.500000", "36.466667"),
("BL572", "Holon", "31.583333", "34.950000"),
("BL573", "Holon", "31.501003", "35.920631"),
("BL576", "Horeb", "28.539722", "33.973333"),
("BL577", "Horem", "33.166667", "35.433333"),
("BL579", "Hor-Hagidgad", "30.358285", "35.190270"),
("BL580", "Hormah", "30.880918", "34.630620"),
("BL581", "Horonaim", "31.288056", "35.515000"),
("BL583", "Hosah", "32.178502", "35.227580"),
("BL585", "Lebanon", "31.777444", "35.234935"),
("BL586", "Hukkok", "32.882153", "35.496694"),
("BL587", "Hukok", "32.955448", "35.211971"),
("BL588", "Humtah", "31.535773", "35.094099"),
("BL589", "Ibleam", "32.45", "35.2833"),
("BL590", "Iconium", "37.883530", "32.494262"),
("BL591", "Idalah", "32.733333", "35.166667"),
("BL592", "Idumaea", "30.734691", "35.606250"),
("BL593", "Iim", "32.049953", "35.733402"),
("BL594", "Ijon", "33.328044", "35.611875"),
("BL595", "Illyricum", "43.515484", "16.071538"),
("BL596", "Immer", "36.359410", "43.152887"),
("BL597", "India", "22", "77"),
("BL598", "Jiphtah", "31.8099", "34.9365"),
("BL599", "Irpeel", "31.869343", "35.197712"),
("BL600", "Ir-Shemesh", "31.752748", "34.976609"),
("BL601", "Italy", "41.9", "12.483333"),
("BL602", "Jethlah", "31.823593", "35.075769"),
("BL603", "Ithnan", "31.162327", "35.057114"),
("BL604", "Ituraea", "33.416159", "35.857256"),
("BL605", "Ivah", "34.467725", "41.964955"),
("BL606", "Ije-Abarim", "31.496845", "35.782841"),
("BL607", "Iim", "31.496845", "35.782841"),
("BL609", "Jabbok", "32.193237", "35.676305"),
("BL610", "Jabesh", "32.379821", "35.611587"),
("BL611", "Jabesh-Gilead", "32.379821", "35.611587"),
("BL612", "Jabez", "31.705361", "35.210266"),
("BL613", "Jabneel", "31.865518", "34.746856"),
("BL614", "Jabneel", "32.700000", "35.500000"),
("BL615", "Jabneh", "31.865518", "34.746856"),
("BL616", "Jagur", "31.1858", "34.96745"),
("BL617", "Jahaz", "31.501003", "35.920631"),
("BL618", "Jahzah/Jahazah", "31.501003", "35.920631"),
("BL619", "Jair", "32.042523", "35.724241"),
("BL620", "Janum", "31.516667", "35.166667"),
("BL621", "Janohah", "33.260246", "35.302915"),
("BL622", "Janoah", "32.155895", "35.361606"),
("BL623", "Japhia", "32.691633", "35.274955"),
("BL624", "Jarmuth", "31.709268", "34.969953"),
("BL625", "Jarmuth", "32.555963", "35.330789"),
("BL626", "Jattir", "31.401438", "35.069413"),
("BL627", "Javan", "37.953314", "27.367825"),
("BL628", "Jaazer/Jazer", "31.943529", "35.727769"),
("BL629", "Jebusi/Jebus", "31.777444", "35.234935"),
("BL631", "Jegarsahadutha", "32.565267", "36.005559"),
("BL632", "Jehud", "32.033636", "34.889599"),
("BL633", "Jekabzeel", "31.1858", "34.96745"),
("BL634", "Jericho", "31.870601", "35.443863"),
("BL635", "Jeruel", "31.572903", "35.406346"),
("BL636", "Jerusalem", "31.777444", "35.234935"),
("BL638", "Jeshanah", "31.980029", "35.229709"),
("BL639", "Jeshimon", "31.461525", "35.392411"),
("BL640", "Jeshua", "31.162327", "35.057114"),
("BL641", "Jetur", "33.416159", "35.857256"),
("BL642", "Jezreel", "31.535773", "35.094099"),
("BL643", "Jezreel", "32.555963", "35.330789"),
("BL644", "Jezreel", "32.555963", "35.330789"),
("BL645", "Jogbehah", "32.028743", "35.862887"),
("BL646", "Jokdeam", "31.366667", "35.000000"),
("BL647", "Jokneam", "32.664545", "35.108918"),
("BL648", "Jokmeam", "31.833333", "35.300000"),
("BL649", "Jokneam", "32.664545", "35.108918"),
("BL650", "Joktheel", "31.564850", "34.846725"),
("BL651", "Joktheel", "30.322435", "35.456279"),
("BL652", "Japho/Joppa", "32.053519", "34.750426"),
("BL653", "Jordan", "32.309099", "35.559900"),
("BL654", "Jordan", "32.309099", "35.559900"),
("BL655", "Jotbah", "29.758043", "35.030601"),
("BL656", "Jotbathah/Jotbath", "29.758043", "35.030601"),
("BL657", "Judah/Judaea", "31.777444", "35.234935"),
("BL658", "Judaea", "31.777444", "35.234935"),
("BL659", "Juttah", "31.450000", "35.083333"),
("BL660", "Kabzeel", "31.1858", "34.96745"),
("BL661", "Kadesh", "30.687712", "34.494795"),
("BL662", "Tahtim-Hodshi", "34.558327", "36.522943"),
("BL663", "Kadesh-Barnea", "30.687712", "34.494795"),
("BL665", "Camon", "32.042523", "35.724241"),
("BL666", "Kanah", "32.138219", "35.038971"),
("BL667", "Kanah", "32.747015", "35.338771"),
("BL668", "Karkaa", "30.958506", "34.380500"),
("BL669", "Karkor", "32.184372", "35.702870"),
("BL671", "Kartah", "32.753141", "35.279335"),
("BL672", "Kartan", "33.125828", "35.165000"),
("BL673", "Kattath", "32.753141", "35.279335"),
("BL674", "Kedar", "27.4", "37.7"),
("BL675", "Kedemoth", "31.646073", "35.894537"),
("BL676", "Kedesh", "33.112983", "35.533613"),
("BL677", "Kedesh", "30.687712", "34.494795"),
("BL678", "Kedesh", "32.559061", "35.246206"),
("BL679", "Kedesh-Naphtali", "33.112983", "35.533613"),
("BL680", "Kehelathah", "30.317396", "35.407152"),
("BL681", "Keilah", "31.614175", "35.002752"),
("BL682", "Kenath", "32.756919", "36.616400"),
("BL683", "Kerioth", "31.583333", "35.700000"),
("BL684", "Kerioth/Hezron", "31.162327", "35.057114"),
("BL685", "Kibroth-Hattaavah", "28.916667", "34.500000"),
("BL686", "Kibzaim", "31.833333", "35.300000"),
("BL687", "Kidron", "31.772134", "35.236596"),
("BL688", "Kidron/Cedron", "31.772134", "35.236596"),
("BL689", "Kinah", "31.1858", "34.96745"),
("BL694", "Kir-Haraseth/Kir-Hareseth", "31.181325", "35.702147"),
("BL695", "Kirjathaim/Kiriathaim", "31.583333", "35.700000"),
("BL696", "Kirjathaim", "33.125828", "35.165000"),
("BL697", "Kirjath-Arba/Arbah", "31.535773", "35.094099"),
("BL698", "Kirjath-Arim", "31.771104", "34.993812"),
("BL699", "Kirjath-Baal", "31.771104", "34.993812"),
("BL700", "Kirjath-Huzoth", "31.765031", "35.718565"),
("BL701", "Kirjath-Jearim/Kirjath", "31.771104", "34.993812"),
("BL702", "Kirjath-Sannah", "31.416669", "34.966670"),
("BL703", "Kirjath-Sepher", "31.416669", "34.966670"),
("BL704", "Kishion/Kishon", "32.559061", "35.246206"),
("BL705", "Kishon", "32.761948", "35.064096"),
("BL706", "Kitron", "32.753141", "35.279335"),
("BL707", "Chittim", "35.018306", "33.207693"),
("BL708", "Koa", "34.798311", "48.514966"),
("BL710", "Laban", "31.8099", "34.9365"),
("BL711", "Lachish", "31.564850", "34.846725"),
("BL712", "Lahmam", "31.566667", "34.900000"),
("BL713", "Laish", "33.248659", "35.652483"),
("BL714", "Laish", "31.800000", "35.250000"),
("BL715", "Lakum", "32.686956", "35.390913"),
("BL716", "Laodicea", "37.769867", "29.064501"),
("BL717", "Lasea", "34.934917", "24.809198"),
("BL718", "Lasha", "31.718148", "35.584826"),
("BL719", "Lasharon", "32.725440", "35.467002"),
("BL720", "Lebanon", "33.752479", "35.590804"),
("BL721", "Lebaoth", "31.391668", "34.940502"),
("BL723", "Hamath/Hemath", "35.136204", "36.749488"),
("BL724", "Lebonah", "32.070770", "35.239871"),
("BL725", "Jashubi-Lehem", "31.705361", "35.210266"),
("BL726", "Lehi", "31.752748", "34.976609"),
("BL727", "Leshem", "33.248659", "35.652483"),
("BL728", "Libnah", "31.564850", "34.846725"),
("BL729", "Libnah", "31.8099", "34.9365"),
("BL730", "Libya", "32.824979", "21.858301"),
("BL731", "Lod", "31.951388", "34.895277"),
("BL732", "Lo-Debar", "32.662488", "35.783568"),
("BL733", "Beth-Horon", "31.878925", "35.123567"),
("BL734", "Beth-Horon", "31.878925", "35.123567"),
("BL735", "Lud/Lydians/Lydia", "31.951388", "34.895277"),
("BL736", "Luhith", "31.288056", "35.515000"),
("BL737", "Luz", "31.930539", "35.221032"),
("BL738", "Luz", "37", "36.57"),
("BL739", "Lycaonia", "37.883530", "32.494262"),
("BL740", "Lycia", "36.274717", "29.318637"),
("BL741", "Lydda", "31.951388", "34.895277"),
("BL742", "Lystra", "37.578134", "32.453182"),
("BL743", "Maacah/Maachah", "33.2", "36.5"),
("BL745", "Maarath", "31.621003", "35.102328"),
("BL746", "Gibeah", "31.823781", "35.231009"),
("BL747", "Macedonia", "40.632155", "22.932086"),
("BL748", "Machpelah", "31.524647", "35.110734"),
("BL749", "Madmannah", "31.391668", "34.940502"),
("BL750", "Madmen", "31.496845", "35.782841"),
("BL751", "Madmenah", "31.800000", "35.250000"),
("BL752", "Madon", "32.799879", "35.459506"),
("BL753", "Magdala", "32.847334", "35.522936"),
("BL754", "Magog", "46", "47"),
("BL756", "Mahanaim", "32.214708", "35.632914"),
("BL757", "Dan/Mahaneh-Dan", "31.758315", "34.994252"),
("BL758", "Makaz", "31.870364", "34.981728"),
("BL759", "Makheloth", "30.317396", "35.407152"),
("BL760", "Makkedah", "31.935117", "34.781326"),
("BL761", "Melita", "35.852826", "14.532436"),
("BL762", "Mamre", "31.549098", "35.093560"),
("BL763", "Manahath", "31.752603", "35.181972"),
("BL764", "Maon", "31.416666", "35.116666"),
("BL765", "Marah", "29.350000", "32.933333"),
("BL766", "Maralah", "32.697409", "35.241789"),
("BL767", "Mareshah", "31.603933", "34.902377"),
("BL768", "Maroth", "31.743719", "34.694006"),
("BL769", "Mashal", "33.046264", "35.172513"),
("BL770", "Masrekah", "30.734691", "35.606250"),
("BL771", "Massah", "28.731061", "33.841699"),
("BL772", "Mattanah", "31.718148", "35.584826"),
("BL773", "Mearah", "33.633333", "35.433333"),
("BL774", "Mekonah", "31.370835", "34.860665"),
("BL775", "Medeba", "31.720457", "35.791972"),
("BL776", "Medes/Media", "34.798311", "48.514966"),
("BL777", "Megiddo/Megiddon", "32.584183", "35.182291"),
("BL778", "Me-Jarkon", "32.132898", "34.788144"),
("BL779", "Noph/Memphis", "29.849632", "31.253958"),
("BL780", "Mephaath", "31.850000", "35.933333"),
("BL781", "Merathaim", "32.536503", "44.420882"),
("BL782", "Meribah", "30.687712", "34.494795"),
("BL783", "Meribah", "28.731061", "33.841699"),
("BL784", "Meribah-Kadesh/Kadesh", "30.687712", "34.494795"),
("BL785", "Merom", "33.075269", "35.605480"),
("BL786", "Meroz", "32.686956", "35.390913"),
("BL787", "Mesha", "28.857260", "34.859127"),
("BL788", "Mesech/Meshech", "46", "47"),
("BL789", "Meshech/Tubal", "46", "47"),
("BL790", "Mesopotamia", "32.536503", "44.420882"),
("BL791", "Metheg-Ammah", "31.693529", "34.843882"),
("BL792", "Michmas", "31.870184", "35.279235"),
("BL793", "Michmash", "31.870184", "35.279235"),
("BL794", "Michmethah", "32.183333", "35.283333"),
("BL795", "Middin", "31.743894", "35.401591"),
("BL796", "Midian", "28.932881", "34.90832"),
("BL797", "Migdal-El", "33.232131", "35.362942"),
("BL798", "Migdal-Gad", "31.666667", "34.583333"),
("BL799", "Migdol", "30.020296", "32.372233"),
("BL800", "Migron", "31.823781", "35.231009"),
("BL801", "Miletus/Miletum", "37.5", "27.3"),
("BL802", "Millo", "31.777444", "35.234935"),
("BL803", "Minni", "40.6", "44.6"),
("BL804", "Minnith", "31.750000", "35.850000"),
("BL805", "Misheal/Mishal", "33.046264", "35.172513"),
("BL806", "Misrephoth-Maim", "33.118952", "35.139434"),
("BL807", "Mithcah", "30.317396", "35.407152"),
("BL808", "Mitylene", "39.100335", "26.551804"),
("BL809", "Mizpah/Mizpeh", "32.565267", "36.005559"),
("BL810", "Mizpeh", "33.281770", "35.573371"),
("BL811", "Mizpeh/Mizpah", "31.832739", "35.180162"),
("BL812", "Mizpeh", "31.832739", "35.180162"),
("BL813", "Mizpeh", "31.564850", "34.846725"),
("BL814", "Mizpeh", "31.181325", "35.702147"),
("BL815", "Moab", "31.496845", "35.782841"),
("BL816", "Moladah", "31.162327", "35.057114"),
("BL817", "Moreh", "32.213691", "35.281798"),
("BL818", "Moreh", "32.617730", "35.357376"),
("BL820", "Moresheth-Gath", "31.603933", "34.902377"),
("BL821", "Moriah", "31.777593", "35.235251"),
("BL822", "Maktesh", "31.777444", "35.234935"),
("BL823", "Mosera", "30.317396", "35.407152"),
("BL824", "Moseroth", "30.317396", "35.407152"),
("BL829", "Baal-Hermon", "33.416159", "35.857256"),
("BL830", "Baalah", "31.865518", "34.746856"),
("BL831", "Carmel", "32.729350", "35.049789"),
("BL832", "Ebal", "32.232938", "35.273041"),
("BL833", "Ephraim", "32.232938", "35.273041"),
("BL834", "Ephron", "31.675746", "35.042407"),
("BL835", "Esau", "30.734691", "35.606250"),
("BL836", "Gerizim", "32.199561", "35.272852"),
("BL837", "Gilboa", "32.509840", "35.408434"),
("BL838", "Gilead", "32.509840", "35.408434"),
("BL839", "Halak", "30.916667", "34.833333"),
("BL840", "Heres", "31.752748", "34.976609"),
("BL841", "Hermon", "33.416159", "35.857256"),
("BL842", "Hor", "30.317396", "35.407152"),
("BL843", "Hor", "35.710069", "36.188080"),
("BL844", "Horeb", "28.539722", "33.973333"),
("BL845", "Jearim", "31.781049", "35.051130"),
("BL846", "Lebanon", "33.752479", "35.590804"),
("BL847", "Mizar", "33.416159", "35.857256"),
("BL848", "Moriah", "31.777593", "35.235251"),
("BL849", "Nebo", "31.761357", "35.746148"),
("BL850", "Paran", "29.151667", "33.541944"),
("BL851", "Perazim", "31.756332", "35.223059"),
("BL852", "Seir", "30.734691", "35.606250"),
("BL853", "Seir", "31.783333", "34.994000"),
("BL854", "Shapher", "30.317396", "35.407152"),
("BL855", "Sinai/Sina", "28.539722", "33.973333"),
("BL856", "Sion", "33.416159", "35.857256"),
("BL857", "Tabor", "32.686956", "35.390913"),
("BL858", "Zalmon", "32.232938", "35.273041"),
("BL859", "Zemaraim", "31.910999", "35.457280"),
("BL860", "Zion/Sion", "31.777444", "35.234935"),
("BL861", "Olivet/Olives", "31.778095", "35.247197"),
("BL862", "Mozah", "31.802641", "35.158376"),
("BL863", "Miphkad", "31.777444", "35.234935"),
("BL864", "Myra", "36.230771", "30.011458"),
("BL865", "Mysia", "39.506643", "26.080592"),
("BL866", "Naamah", "31.871782", "34.871894"),
("BL867", "Naarath", "31.949518", "35.458730"),
("BL868", "Naaran", "31.949518", "35.458730"),
("BL869", "Nahallal/Nahalal", "32.722209", "35.352820"),
("BL870", "Nahaliel", "31.718148", "35.584826"),
("BL871", "Nahalol", "32.722209", "35.352820"),
("BL872", "Nain", "32.630833", "35.347826"),
("BL873", "Naioth", "31.832739", "35.180162"),
("BL875", "Dor", "32.613236", "34.918896"),
("BL876", "Nephish", "32.800075", "35.937301"),
("BL877", "Dor", "32.613236", "34.918896"),
("BL878", "Nazareth", "32.706745", "35.301528"),
("BL879", "Neah", "32.894254", "35.221877"),
("BL880", "Neapolis", "40.944131", "24.417679"),
("BL881", "Nebaioth", "30.322435", "35.456279"),
("BL882", "Neballat", "31.992079", "34.957563"),
("BL883", "Nebo", "31.748024", "35.743257"),
("BL884", "Nebo", "31.606256", "35.037417"),
("BL887", "Neiel", "32.894254", "35.221877"),
("BL888", "Nephtoah", "31.683036", "35.167987"),
("BL892", "Nezib", "31.588050", "34.992389"),
("BL893", "Nibshan", "31.461525", "35.392411"),
("BL894", "Nicopolis", "39.024033", "20.735730"),
("BL896", "Nimrah", "31.900811", "35.625693"),
("BL897", "Nimrim", "31.133191", "35.531138"),
("BL898", "Nimrod", "32.536503", "44.420882"),
("BL899", "Nineveh", "36.359410", "43.152887"),
("BL900", "Nob", "31.799605", "35.232980"),
("BL901", "Nobah", "32.756919", "36.616400"),
("BL903", "Nodab", "32.800075", "35.937301"),
("BL905", "Nophah", "32.756919", "36.616400"),
("BL906", "Oboth", "31.496845", "35.782841"),
("BL908", "On/Aven", "30.108086", "31.338220"),
("BL909", "Ono", "32.022222", "34.866666"),
("BL910", "Ophel", "31.777444", "35.234935"),
("BL911", "Ophir", "22", "77"),
("BL912", "Ophni", "31.961989", "35.215483"),
("BL913", "Ophrah", "31.953789", "35.299135"),
("BL914", "Ophrah", "32.608682", "35.288264"),
("BL915", "Padan", "36.863864", "39.032196"),
("BL916", "Padan-Aram", "36.863864", "39.032196"),
("BL917", "Pai", "30.734691", "35.606250"),
("BL918", "Pamphylia", "37.005208", "30.904945"),
("BL919", "Paphos", "34.754105", "32.400162"),
("BL920", "Parah", "31.833333", "35.300000"),
("BL921", "Paran", "29.151667", "33.541944"),
("BL923", "Pas-Dammim", "31.691186", "34.944496"),
("BL924", "Patara", "36.274717", "29.318637"),
("BL925", "Pathros", "28.322364", "30.692312"),
("BL926", "Patmos", "37.307520", "26.548274"),
("BL927", "Pau", "30.734691", "35.606250"),
("BL928", "Pekod", "32.536503", "44.420882"),
("BL929", "Sin", "28.838778", "33.420573"),
("BL930", "Peniel", "32.184372", "35.702870"),
("BL931", "Penuel", "32.184372", "35.702870"),
("BL933", "Peor", "31.765031", "35.718565"),
("BL934", "Perez-Uzza", "31.777444", "35.234935"),
("BL935", "Perez-Uzzah", "31.777444", "35.234935"),
("BL936", "Perga", "37.005208", "30.904945"),
("BL937", "Pergamos", "39.118945", "27.165126"),
("BL938", "Persia", "34.798311", "48.514966"),
("BL939", "Pethor", "36.654616", "38.068879"),
("BL940", "Pharpar", "33.379601", "36.306085"),
("BL941", "Philadelphia", "38.349048", "28.519462"),
("BL942", "Philippi", "41.011959", "24.286190"),
("BL943", "Palestina/Philistia", "33.563167", "35.366346"),
("BL944", "Phenice/Phenicia", "33.563167", "35.366346"),
("BL945", "Phenice", "35.198885", "24.080982"),
("BL946", "Phrygia", "37.769867", "29.064501"),
("BL947", "Pi-Beseth", "30.583333", "31.500000"),
("BL948", "Pi-Hahiroth", "29.94658", "32.425144"),
("BL949", "Pirathon", "32.286022", "35.022944"),
("BL950", "Pisgah", "31.765031", "35.718565"),
("BL952", "Pisidia", "38.316430", "31.179486"),
("BL953", "Pithom", "30.593851", "32.185558"),
("BL956", "Pontus", "40.905222", "37.799969"),
("BL959", "Ptolemais", "32.927583", "35.081555"),
("BL960", "Pul", "32.824979", "21.858301"),
("BL961", "Punon", "31.496845", "35.782841"),
("BL962", "Libyans/Put", "32.824979", "21.858301"),
("BL963", "Puteoli", "40.835630", "14.267743"),
("BL964", "Raamah", "15.68", "42.78"),
("BL965", "Raamses", "30.593851", "32.185558"),
("BL966", "Rabbath/Rabbah", "31.950188", "35.924131"),
("BL967", "Rabbith", "32.391416", "35.377302"),
("BL968", "Rachal", "31.433331", "35.133331"),
("BL969", "Rahab", "30.108086", "31.338220"),
("BL970", "Rakkath", "32.795537", "35.529220"),
("BL971", "Rakkon", "32.132898", "34.788144"),
("BL972", "Ramah/Ramath", "31.896378", "35.201730"),
("BL973", "Ramah", "33.111078", "35.310464"),
("BL974", "Ramah", "32.939010", "35.368123"),
("BL975", "Ramah", "31.832739", "35.180162"),
("BL976", "Ramah", "32.565267", "36.005559"),
("BL977", "Ramathaim-Zophim", "31.832739", "35.180162"),
("BL978", "Ramath-Lehi", "31.752748", "34.976609"),
("BL979", "Ramath-Mizpeh", "32.565267", "36.005559"),
("BL980", "Rameses", "30.799370", "31.834216"),
("BL981", "Ramoth", "32.555963", "35.330789"),
("BL982", "Ramoth", "32.049953", "35.733402"),
("BL983", "Ramoth", "32.565267", "36.005559"),
("BL984", "Ramoth-Gilead", "32.565267", "36.005559"),
("BL985", "Rechah", "31.705361", "35.210266"),
("BL986", "Red/sea", "27.088473", "34.771729"),
("BL987", "Rehob", "33.219354", "35.544122"),
("BL988", "Rehob", "33.125828", "35.165000"),
("BL989", "Rehob", "32.955448", "35.211971"),
("BL990", "Rehoboth", "31.066829", "34.597830"),
("BL991", "Rehoboth", "30.884128", "35.897633"),
("BL992", "Rehoboth", "36.359410", "43.152887"),
("BL993", "Rekem", "31.869343", "35.197712"),
("BL994", "Remeth", "32.555963", "35.330789"),
("BL996", "Rephidim", "28.731061", "33.841699"),
("BL997", "Resen", "36.359410", "43.152887"),
("BL998", "Rezeph", "35.950000", "39.016667"),
("BL999", "Rhegium", "38.111580", "15.643279"),
("BL1000", "Rhodes", "36.441926", "28.226721"),
("BL1001", "Riblah/Diblath", "34.431703", "36.545259"),
("BL1002", "Riblah", "34.353071", "36.385705"),
("BL1003", "Rimmon", "31.934660", "35.297063"),
("BL1004", "Rimmon/Remmon", "34.353071", "36.385705"),
("BL1006", "Rimmon", "32.781808", "35.321364"),
("BL1007", "Rimmon-Parez", "31.8099", "34.9365"),
("BL1008", "Rissah", "30.317396", "35.407152"),
("BL1009", "Rithmah", "31.8099", "34.9365"),
("BL1012", "Rogelim", "32.214708", "35.632914"),
("BL1013", "Rome", "41.9", "12.483333"),
("BL1014", "Rumah", "32.154887", "35.318192"),
("BL1016", "Salamis", "35.177246", "33.907552"),
("BL1017", "Salchah/Salcah", "32.493941", "36.710337"),
("BL1018", "Salem", "31.777444", "35.234935"),
("BL1019", "Salim", "32.399334", "35.526443"),
("BL1020", "Salmone", "35.212297", "26.274491"),
("BL1021", "Salt Ssea", "31.538593", "35.482268"),
("BL1022", "Samaria", "32.280231", "35.197929"),
("BL1023", "Samaria", "32.280231", "35.197929"),
("BL1024", "Samos", "37.715172", "26.934167"),
("BL1025", "Samothracia", "40.467279", "25.486069"),
("BL1026", "Sansannah", "31.391668", "34.940502"),
("BL1027", "Sardis", "38.476826", "28.114131"),
("BL1028", "Sarid", "32.689785", "35.196668"),
("BL1029", "Chinnereth", "32.806775", "35.589360"),
("BL1030", "Chinneroth", "32.806775", "35.589360"),
("BL1032", "Galilee", "32.806775", "35.589360"),
("BL1034", "Tiberias", "32.806775", "35.589360"),
("BL1037", "Seba", "9.022736", "38.746799"),
("BL1038", "Shebam", "31.815283", "35.766738"),
("BL1039", "Secacah", "31.766667", "35.283333"),
("BL1040", "College", "31.777444", "35.234935"),
("BL1041", "Sechu", "31.883333", "35.200000"),
("BL1042", "Seir", "30.734691", "35.606250"),
("BL1043", "Seirath", "31.930539", "35.221032"),
("BL1044", "Sela", "30.322435", "35.456279"),
("BL1045", "Seleucia", "36.111017", "35.926807"),
("BL1046", "Seneh", "31.853094", "35.286169"),
("BL1047", "Shenir/Senir", "33.416159", "35.857256"),
("BL1048", "Sephar", "14.550219", "44.392642"),
("BL1049", "Sepharad", "38.476826", "28.114131"),
("BL1050", "Sepharvaim", "33.789693", "44.459399"),
("BL1051", "Zoheleth", "31.767775", "35.234408"),
("BL1052", "Shaalabbin", "31.870364", "34.981728"),
("BL1053", "Shaalbim", "31.870364", "34.981728"),
("BL1054", "Shalim", "31.846847", "35.184912"),
("BL1055", "Sharaim/Shaaraim", "31.7001", "34.89532"),
("BL1056", "Shaaraim", "31.282222", "34.482500"),
("BL1057", "Shahazimah", "32.406430", "35.504628"),
("BL1058", "Shalisha", "31.846847", "35.184912"),
("BL1059", "Shallecheth", "31.777444", "35.234935"),
("BL1060", "Shamir", "31.416667", "34.933333"),
("BL1061", "Shamir", "32.360470", "35.250054"),
("BL1062", "Saphir", "31.743719", "34.694006"),
("BL1063", "Sharon/Saron", "32.639068", "34.945929"),
("BL1064", "Sharon", "33.416159", "35.857256"),
("BL1065", "Sharuhen", "31.282222", "34.482500"),
("BL1066", "Shaveh/Kiriathaim", "31.583333", "35.700000"),
("BL1067", "Sheba", "9.022736", "38.746799"),
("BL1068", "Shebarim", "31.916978", "35.261226"),
("BL1069", "Sichem/Shechem", "32.213691", "35.281798"),
("BL1071", "Shema", "31.162327", "35.057114"),
("BL1072", "Shen", "31.832739", "35.180162"),
("BL1073", "Shepham", "34.353071", "36.385705"),
("BL1075", "Shebah", "31.244952", "34.840888"),
("BL1076", "Sihor", "31.032047", "33.854957"),
("BL1077", "Shihor-Libnath", "32.538496", "34.907697"),
("BL1078", "Shicron", "31.777614", "34.852145"),
("BL1079", "Shilhim", "31.282222", "34.482500"),
("BL1080", "Shiloah", "31.777444", "35.234935"),
("BL1081", "Shiloh", "32.055700", "35.289528"),
("BL1082", "Shimron", "32.705288", "35.213332"),
("BL1083", "Shimron-Meron", "32.705288", "35.213332"),
("BL1084", "Shinar", "32.536503", "44.420882"),
("BL1085", "Shion", "32.716666", "35.333334"),
("BL1086", "Shittim", "31.858262", "35.641566"),
("BL1087", "Shoa", "34.798311", "48.514966"),
("BL1088", "Shual", "31.953789", "35.299135"),
("BL1089", "Shunem", "32.605631", "35.334305"),
("BL1090", "Shur", "30.2354", "33.247"),
("BL1091", "Shibmah/Sibmah", "31.815283", "35.766738"),
("BL1092", "Sibraim", "35.136204", "36.749488"),
("BL1093", "Sidon/Zidon", "33.563167", "35.366346"),
("BL1094", "Zidon", "33.563167", "35.366346"),
("BL1095", "Silla", "31.777444", "35.234935"),
("BL1096", "Siloam", "31.777444", "35.234935"),
("BL1097", "Sin", "28.838778", "33.420573"),
("BL1098", "Sinai", "28.539722", "33.973333"),
("BL1099", "Siphmoth", "31.373521", "35.074552"),
("BL1100", "Sirah", "31.55", "35.1"),
("BL1101", "Sirion/field", "33.416159", "35.857256"),
("BL1102", "Sitnah", "31.391291", "34.560570"),
("BL1103", "Smyrna", "38.451960", "27.161921"),
("BL1104", "Shoco", "31.681234", "34.976398"),
("BL1105", "Socoh", "31.681234", "34.976398"),